Programming Quotes · JSON Structure

Programming Quotes Auth Request Structure

Credentials for the auth/token exchange.

Type: object Properties: 2 Required: 2
PersonalityPublic APIsOpen SourceQuotesProgrammingDeveloper Tools

AuthRequest is a JSON Structure definition published by Programming Quotes, 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/programming-quotes/refs/heads/main/json-structure/programming-quotes-auth-request-structure.json",
  "name": "AuthRequest",
  "description": "Credentials for the auth/token exchange.",
  "type": "object",
  "properties": {
    "email": { "type": "string", "description": "Account email address." },
    "password": { "type": "string", "description": "Account password." }
  },
  "required": ["email", "password"]
}