{
"type": "object",
"additionalProperties": false,
"properties": {
"query": {
"type": "string",
"minLength": 2,
"maxLength": 300
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 8,
"default": 5
}
},
"required": [
"query"
]
}{
"type": "object",
"additionalProperties": false,
"properties": {
"need": {
"type": "string",
"minLength": 2,
"maxLength": 300
},
"navigate": {
"type": "boolean",
"default": false
}
},
"required": [
"need"
]
}{
"type": "object",
"additionalProperties": false,
"properties": {
"items": {
"type": "array",
"minItems": 1,
"maxItems": 30,
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"sku_id": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"quantity": {
"type": "integer",
"minimum": 1,
"maximum": 10000
}
},
"required": [
"sku_id",
"quantity"
]
}
},
"billing_term": {
"type": "string",
"enum": [
"annual",
"monthly"
],
"default": "annual"
},
"open_calculator": {
"type": "boolean",
"default": true
}
},
"required": [
"items"
]
}{
"type": "object",
"additionalProperties": false,
"properties": {
"text": {
"type": "string",
"minLength": 1,
"maxLength": 10000
},
"mode": {
"type": "string",
"enum": [
"defang",
"refang"
],
"default": "defang"
}
},
"required": [
"text"
]
}{
"type": "object",
"additionalProperties": false,
"properties": {
"public_key": {
"type": "string",
"minLength": 1,
"maxLength": 12000
}
},
"required": [
"public_key"
]
}