ReqRes · JSON Structure

Reqres Auth Request Structure

AuthRequest schema from ReqRes API

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

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

Properties

email password

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-auth-request-structure.json",
  "name": "AuthRequest",
  "description": "AuthRequest schema from ReqRes API",
  "type": "object",
  "properties": {
    "email": {
      "type": "string"
    },
    "password": {
      "type": "string"
    }
  },
  "required": [
    "email",
    "password"
  ]
}