ReqRes · Schema

LegacyUnknownListResponse

LegacyUnknownListResponse schema from ReqRes API

DevelopmentTestingPrototypingFake APIRESTAgent Sandbox

Properties

Name Type Description
page integer
per_page integer
total integer
total_pages integer
data array
support object
View JSON Schema on GitHub

JSON Schema

reqres-legacy-unknown-list-response-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-legacy-unknown-list-response-schema.json",
  "title": "LegacyUnknownListResponse",
  "description": "LegacyUnknownListResponse schema from ReqRes API",
  "type": "object",
  "properties": {
    "page": {
      "type": "integer"
    },
    "per_page": {
      "type": "integer"
    },
    "total": {
      "type": "integer"
    },
    "total_pages": {
      "type": "integer"
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "year": {
            "type": "integer"
          },
          "color": {
            "type": "string"
          },
          "pantone_value": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "name",
          "year",
          "color",
          "pantone_value"
        ]
      }
    },
    "support": {
      "type": "object",
      "additionalProperties": true
    }
  },
  "required": [
    "page",
    "per_page",
    "total",
    "total_pages",
    "data"
  ],
  "additionalProperties": true
}