{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"prompt": {
"type": "string"
},
"schema": {
"additionalProperties": {
"anyOf": [
{
"const": "string",
"type": "string"
},
{
"const": "boolean",
"type": "string"
},
{
"const": "number",
"type": "string"
},
{
"type": "array"
},
{
"additionalProperties": {},
"type": "object"
}
]
},
"type": "object"
},
"urls": {
"items": {
"format": "uri",
"type": "string"
},
"type": "array"
}
},
"required": [
"urls",
"prompt",
"schema"
],
"type": "object"
}