{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ItemSelector",
"description": "Used to select a specific item.",
"$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-item-selector-schema.json",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Identifier of the item.",
"example": "06ef2722-cbf2-11ec-9d64-0242ac120002"
},
"isModifier": {
"type": "boolean",
"description": "True, if the item is used as a modifier.",
"example": true
}
},
"required": [
"id"
]
}