{ "type": "object", "properties": { "haltOnError": { "type": "boolean", "example": true }, "batchRequests": { "type": "array", "description": "", "example": [], "items": { "type": "object", "properties": { "method": { "type": "string", "example": "example_value" }, "url": { "type": "string", "example": "https://www.example.com" } }, "required": [ "method", "url" ] } } }, "required": [ "haltOnError", "batchRequests" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CompositeBatchRequest" }