{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-templates-response-schema.json", "title": "TemplatesResponse", "description": "TemplatesResponse schema from ReqRes API", "type": "object", "properties": { "templates": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "description": { "type": "string" }, "category": { "type": "string" }, "icon": { "type": "string" }, "is_featured": { "type": "boolean" }, "config": { "type": "object", "additionalProperties": true }, "endpoints": { "type": "array", "items": { "type": "object", "additionalProperties": true } } }, "required": [ "id", "name", "description" ], "additionalProperties": true } }, "pagination": { "type": "object", "properties": { "total": { "type": "integer" }, "limit": { "type": "integer" }, "offset": { "type": "integer" }, "pages": { "type": "integer" } }, "additionalProperties": true } }, "additionalProperties": true }