{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": ["status", "headers", "body"],
"properties": {
"status": {"type": "integer", "minimum": 100, "maximum": 599},
"headers": {
"type": "array",
"items": {
"type": "object",
"required": ["name", "value"],
"properties": {
"name": {"type": "string", "minLength": 1},
"value": {"type": "string"}
},
"additionalProperties": false
}
},
"body": {"type": "string", "format": "byte"}
},
"additionalProperties": false
}