runner-ai-intelligence / schemas /prompt_templates.schema.json
avfranco's picture
HF Space deploy snapshot (minimal allow-list)
d64fd55
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PromptTemplatesConfig",
"type": "object",
"properties": {
"templates": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"category": {
"type": "string"
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"templateBody": {
"type": "string"
},
"example": {
"type": "string"
}
},
"required": [
"id",
"category",
"label",
"templateBody"
],
"additionalProperties": false
}
}
},
"required": [
"templates"
],
"additionalProperties": false
}