ReqRes · Schema
Template
Template schema from ReqRes API
DevelopmentTestingPrototypingFake APIRESTAgent Sandbox
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| description | string | |
| category | string | |
| icon | string | |
| is_featured | boolean | |
| config | object | |
| endpoints | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-template-schema.json",
"title": "Template",
"description": "Template schema from ReqRes API",
"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
}