Files
jambonz-node/lib/schema/app-schema.json
2025-08-17 09:45:00 +07:00

38 lines
741 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"description": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["string", "number", "boolean"]
},
"required": {
"type": "boolean"
},
"default": {
"oneOf": [
{ "type": "string" },
{ "type": "number" },
{ "type": "boolean" }
]
},
"enum": {
"type": "array"
},
"obscure": {
"type": "boolean"
},
"uiHint": {
"type": "string",
"enum": ["input", "textarea", "filepicker"]
},
"jambonzResource": {
"type": "string",
"enum": ["carriers"]
}
},
"required": ["type", "description"]
}