diff --git a/post.schema.json b/post.schema.json index f819569..93dc532 100644 --- a/post.schema.json +++ b/post.schema.json @@ -9,11 +9,23 @@ "description":"base schema for notes", "$ref":"https://schemas.ndumas.com/note.schema.json" }, + "draft": { + "description": "publishing status", + "type":"boolean" + }, + "showFullContent": { + "description": "when summarizing content, use description instead of full text", + "type":"boolean" + }, "date": { "description": "publishing date", "type":"string", "format":"date" }, + "author": { + "description": "author name", + "type":"string" + }, "series": { "description": "an array of names given to groups of related posts", "type": "array", @@ -23,5 +35,5 @@ } } }, - "required": ["title","aliases", "date", "series"] + "required": ["title","aliases", "date", "series", "draft", "showFullContent", "author"] }