{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ListOperand",
"title": "ListOperand",
"description": "An operand that is a list of values.",
"properties": {
"encodedOperand": {
"description": "Encoded operand, which can be used directly in a JQL query.",
"type": "string"
},
"values": {
"description": "The list of operand values.",
"items": {
"$ref": "#/components/schemas/JqlQueryUnitaryOperand"
},
"minLength": 1,
"type": "array"
}
},
"required": [
"values"
],
"type": "object"
}