ReqRes · JSON Structure

Reqres App User Login Request Structure

AppUserLoginRequest schema from ReqRes API

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

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

Properties

email project_id 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-login-request-structure.json",
  "name": "AppUserLoginRequest",
  "description": "AppUserLoginRequest schema from ReqRes API",
  "type": "object",
  "properties": {
    "email": {
      "type": "string"
    },
    "project_id": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "int32"
        }
      ]
    },
    "metadata": {
      "type": "object",
      "additionalProperties": true
    }
  },
  "required": [
    "email"
  ],
  "additionalProperties": true
}