site-library/.astro/collections/helpcenter.schema.json
2025-03-08 21:04:49 +01:00

25 lines
471 B
JSON

{
"$ref": "#/definitions/helpcenter",
"definitions": {
"helpcenter": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"intro": {
"type": "string"
},
"$schema": {
"type": "string"
}
},
"required": [
"title",
"intro"
],
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}