site-library/.astro/collections/resources.schema.json
2025-12-29 21:16:24 +01:00

69 lines
1.5 KiB
JSON

{
"$ref": "#/definitions/resources",
"definitions": {
"resources": {
"type": "object",
"properties": {
"title": {
"type": "string",
"default": "Untitled"
},
"pubDate": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "string",
"format": "date"
},
{
"type": "integer",
"format": "unix-time"
}
],
"default": "2025-12-29T19:38:48.202Z"
},
"description": {
"type": "string",
"default": "No description provided"
},
"author": {
"type": "string",
"default": "Anonymous"
},
"image": {
"type": "object",
"properties": {
"url": {
"type": "string",
"default": ""
},
"alt": {
"type": "string",
"default": ""
}
},
"additionalProperties": false,
"default": {
"url": "",
"alt": ""
}
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"$schema": {
"type": "string"
}
},
"additionalProperties": true
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}