Files
openai--openai-cookbook/.github/registry_schema.json
T
wehub-resource-sync 327604cc89
Rebuild Cookbook Website / deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:41:49 +08:00

49 lines
905 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"path": {
"type": "string"
},
"slug": {
"type": "string"
},
"description": {
"type": "string"
},
"redirects": {
"type": "array",
"items": {
"type": "string"
}
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"authors": {
"type": "array",
"items": {
"type": "string"
}
},
"date": {
"type": "string",
"format": "date"
},
"archived": {
"type": "boolean"
}
},
"required": ["title", "path", "slug", "tags", "authors"],
"additionalProperties": false
}
}