{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/numberItem", "title": "numberItem", "type": "object", "required": [ "locationId", "numbers" ], "properties": { "locationId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OLzUyMjNiYmVkLTQyYzktNDU0ZC1hMWYzLTdmYWQ1Y2M3ZTZlMw", "description": "The source location of the numbers on which to execute the operation." }, "numbers": { "type": "array", "items": { "type": "string" }, "description": "The numbers on which to execute the operation." } } }