{
"title": "functions.expression.StringInputSchema",
"description": "Schema for a string input.",
"type": "object",
"properties": {
"description": {
"description": "Human-readable description of the string.",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"omitempty": true
},
"enum": {
"description": "If provided, the string must be one of these values.",
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"omitempty": true
},
"type": {
"$ref": "functions.expression.StringInputSchemaType"
}
}
}