{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ValidateNumbersResponse", "title": "ValidateNumbersResponse", "type": "object", "required": [ "status", "numbers" ], "properties": { "status": { "$ref": "#/components/schemas/Status", "description": "The status of the numbers." }, "numbers": { "type": "array", "items": { "$ref": "#/components/schemas/Number" }, "description": "An array of number objects with number details." } } }