ReqRes · Schema

AppUserCreateRequest

AppUserCreateRequest schema from ReqRes API

DevelopmentTestingPrototypingFake APIRESTAgent Sandbox

Properties

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

JSON Schema

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