ReqRes · Schema

AppUserLoginRequest

AppUserLoginRequest schema from ReqRes API

DevelopmentTestingPrototypingFake APIRESTAgent Sandbox

Properties

Name Type Description
email string
project_id object
metadata object
View JSON Schema on GitHub

JSON Schema

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