website-astro/.astro/collections/fragments.schema.json

61 lines
1.1 KiB
JSON
Raw Normal View History

2024-12-29 12:33:22 +01:00
{
"$ref": "#/definitions/fragments",
"definitions": {
"fragments": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"subtitle": {
"type": "string"
},
"lang": {
"type": "string",
"enum": [
"fr",
"en"
]
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"type": {
"type": "string"
},
2024-12-29 14:49:35 +01:00
"slug": {
2024-12-29 12:33:22 +01:00
"type": "string"
},
"createdAt": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"code": {
"type": "boolean"
},
"draft": {
"type": "boolean"
},
"$schema": {
"type": "string"
}
},
"required": [
"title",
"subtitle",
"lang",
"tags",
"type",
2024-12-29 14:49:35 +01:00
"slug",
2024-12-29 12:33:22 +01:00
"createdAt"
],
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}