adding draft schemas
commit
06f15c711c
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
|
"$id": "https://ndumas.com/schemas/note.json",
|
||||||
|
"title":"note",
|
||||||
|
"description":"properties all notes must have",
|
||||||
|
"type":"object",
|
||||||
|
"properties": {
|
||||||
|
"title": {
|
||||||
|
"description":"Title of the note",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"aliases": {
|
||||||
|
"description":"alternate names for the notes",
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type":"string",
|
||||||
|
"uniqueItems": true,
|
||||||
|
"minItems": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["title","aliases"]
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
|
"$id": "https://ndumas.com/schemas/post.json",
|
||||||
|
"title":"post",
|
||||||
|
"description":"Hugo blog posts",
|
||||||
|
"type":"object",
|
||||||
|
"properties": {
|
||||||
|
"note": {
|
||||||
|
"description":"base schema for notes",
|
||||||
|
"$ref":"https://ndumas.com/schemas/note.json"
|
||||||
|
},
|
||||||
|
"date": {
|
||||||
|
"description": "publishing date",
|
||||||
|
"type":"string",
|
||||||
|
"format":"date"
|
||||||
|
},
|
||||||
|
"series": {
|
||||||
|
"description": "an array of names given to groups of related posts",
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type":"string",
|
||||||
|
"uniqueItems": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["title","aliases"]
|
||||||
|
}
|
Loading…
Reference in New Issue