Programming Quotes · JSON Structure

Programming Quotes Auth Response Structure

JWT bearer token response.

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

AuthResponse is a JSON Structure definition published by Programming Quotes, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

token

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-response-structure.json",
  "name": "AuthResponse",
  "description": "JWT bearer token response.",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "description": "JWT bearer token. Use as `Authorization: Bearer <token>`."
    }
  },
  "required": ["token"]
}