26 lines
677 B
JSON
26 lines
677 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "article.schema.json",
|
|
"title": "Article",
|
|
"description": "An article for reading",
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"description": "The article's name",
|
|
"type": "string"
|
|
},
|
|
"author": {
|
|
"description": "The author(s) of the article",
|
|
"type": "string"
|
|
},
|
|
"date": {
|
|
"description": "The date the article was published in ISO-8601 date or date/time format",
|
|
"type": "string"
|
|
},
|
|
"readingTime": {
|
|
"description": "The expected time to read the article in seconds",
|
|
"type": "number"
|
|
}
|
|
},
|
|
"required": ["name"]
|
|
}
|