2024-04-12 22:43:17 -07:00
|
|
|
{
|
2024-05-05 10:59:14 -07:00
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"title": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"manifest": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"date": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "date-time"
|
|
|
|
},
|
|
|
|
"blurb": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"description": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"type": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"authors": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"tags": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"primary": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"secondary": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["primary", "secondary"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["date", "blurb", "description", "type", "authors", "tags"]
|
|
|
|
},
|
|
|
|
"cover": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"src": {
|
|
|
|
"type": "string",
|
|
|
|
"format": "uri"
|
|
|
|
},
|
|
|
|
"alt": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"caption": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["src", "alt", "caption"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["title", "manifest", "cover"],
|
|
|
|
"optional": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"deps": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"external": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"styles": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-12 22:43:17 -07:00
|
|
|
}
|