This commit is contained in:
2026-04-30 11:34:09 -04:00
parent 9ac6efc55a
commit 7d76d2bb03
6 changed files with 605 additions and 785 deletions
+22 -28
View File
@@ -1,32 +1,26 @@
{
"$ref": "#/definitions/blog",
"definitions": {
"blog": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"pubDate": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"$schema": {
"type": "string"
}
},
"required": [
"title",
"pubDate",
"tags"
],
"additionalProperties": false
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"pubDate": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"$schema": {
"type": "string"
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
"required": [
"title",
"pubDate",
"tags"
]
}