landing-page/.astro/collections/showcase.schema.json
2026-01-09 15:13:09 -08:00

35 lines
674 B
JSON

{
"$ref": "#/definitions/showcase",
"definitions": {
"showcase": {
"type": "object",
"properties": {
"title": {
"type": "string",
"minLength": 1
},
"image": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
},
"featured": {
"type": "number",
"minimum": 1
},
"$schema": {
"type": "string"
}
},
"required": [
"title",
"image",
"url"
],
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}