{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BatchResponse", "title": "BatchResponse", "type": "object", "properties": { "hasErrors": { "type": "boolean" }, "results": { "type": "array", "items": { "type": "object", "properties": { "statusCode": { "type": "integer" }, "result": { "description": "The response body" } } } } } }