mirror of
https://github.com/jambonz/jambonz-node.git
synced 2025-12-19 05:17:49 +00:00
38 lines
741 B
JSON
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"]
|
|
} |