article.schema.json (677B)
1 { 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "$id": "article.schema.json", 4 "title": "Article", 5 "description": "An article for reading", 6 "type": "object", 7 "properties": { 8 "name": { 9 "description": "The article's name", 10 "type": "string" 11 }, 12 "author": { 13 "description": "The author(s) of the article", 14 "type": "string" 15 }, 16 "date": { 17 "description": "The date the article was published in ISO-8601 date or date/time format", 18 "type": "string" 19 }, 20 "readingTime": { 21 "description": "The expected time to read the article in seconds", 22 "type": "number" 23 } 24 }, 25 "required": ["name"] 26 }