Programming Quotes · Schema

AuthRequest

Credentials for the auth/token exchange.

PersonalityPublic APIsOpen SourceQuotesProgrammingDeveloper Tools

Properties

Name Type Description
email string Account email address.
password string Account password.
View JSON Schema on GitHub

JSON Schema

programming-quotes-auth-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/programming-quotes/refs/heads/main/json-schema/programming-quotes-auth-request-schema.json",
  "title": "AuthRequest",
  "description": "Credentials for the auth/token exchange.",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "description": "Account email address.",
      "example": "[email protected]"
    },
    "password": {
      "type": "string",
      "format": "password",
      "description": "Account password.",
      "example": "s3cret-correct-horse-battery"
    }
  },
  "required": ["email", "password"]
}