manifest
Version:
The backend for AI code editors
22 lines (21 loc) • 766 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.manifest.build/definitions/property-options/choice-options-schema.json",
"title": "Choice Options Schema",
"description": "Specific options for the \"Choice\" property type. Doc: https://manifest.build/docs/properties#choice",
"type": "object",
"properties": {
"values": {
"type": "array",
"items": {
"type": "string"
},
"description": "An array of strings representing the available choices."
},
"sequential": {
"type": "boolean",
"description": "Specifies if the values are ordered in a logical sense."
}
},
"required": ["values"]
}