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
View JSON Schema on GitHub

JSON Schema

reqres-template-schema.json Raw ↑
{
  "$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
}