ReqRes · JSON Structure

Reqres Collection Structure

Collection schema from ReqRes API

Type: object Properties: 9 Required: 3
DevelopmentTestingPrototypingFake APIRESTAgent Sandbox

Collection is a JSON Structure definition published by ReqRes, describing 9 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id project_id user_id name slug schema visibility created_at updated_at

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-structure/reqres-collection-structure.json",
  "name": "Collection",
  "description": "Collection schema from ReqRes API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "project_id": {
      "type": "string"
    },
    "user_id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "slug": {
      "type": "string"
    },
    "schema": {
      "type": "object",
      "additionalProperties": true
    },
    "visibility": {
      "type": "string"
    },
    "created_at": {
      "type": "datetime"
    },
    "updated_at": {
      "type": "datetime"
    }
  },
  "required": [
    "id",
    "name",
    "slug"
  ],
  "additionalProperties": true
}