ReqRes · JSON Structure

Reqres App User Structure

AppUser schema from ReqRes API

Type: object Properties: 6 Required: 2
DevelopmentTestingPrototypingFake APIRESTAgent Sandbox

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

Properties

id email status last_login_at created_at metadata

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-app-user-structure.json",
  "name": "AppUser",
  "description": "AppUser schema from ReqRes API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "last_login_at": {
      "type": "datetime"
    },
    "created_at": {
      "type": "datetime"
    },
    "metadata": {
      "type": "object",
      "additionalProperties": true
    }
  },
  "required": [
    "id",
    "email"
  ],
  "additionalProperties": true
}