Programming Quotes · JSON Structure

Programming Quotes Quote Input Structure

Payload for creating a new quote.

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

QuoteInput is a JSON Structure definition published by Programming Quotes, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

author text source

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-quote-input-structure.json",
  "name": "QuoteInput",
  "description": "Payload for creating a new quote.",
  "type": "object",
  "properties": {
    "author": { "type": "string", "description": "Quote author's name." },
    "text": { "type": "string", "description": "Quote text." },
    "source": { "type": "string", "description": "Optional citation." }
  },
  "required": ["author", "text"]
}