Quote Garden · JSON Structure

Quote Garden Quote Structure

Structural layout of the Quote resource served by the Quote Garden API.

Type: object Properties: 5 Required: 4
QuotesInspirationOpen SourceFree APINode.jsMongoDBExpressPersonalityPublic APIs

Quote Garden Quote Structure is a JSON Structure definition published by Quote Garden, describing 5 properties, of which 4 are required. It conforms to the https://json-structure.org/draft/0.1/schema meta-schema.

Properties

_id quoteText quoteAuthor quoteGenre __v

Meta-schema: https://json-structure.org/draft/0.1/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/0.1/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/quote-garden/refs/heads/main/json-structure/quote-garden-quote-structure.json",
  "title": "Quote",
  "type": "object",
  "description": "Structural layout of the Quote resource served by the Quote Garden API.",
  "properties": {
    "_id": {
      "type": "string",
      "description": "MongoDB ObjectId (24-char hex string)."
    },
    "quoteText": {
      "type": "string",
      "description": "The quote text."
    },
    "quoteAuthor": {
      "type": "string",
      "description": "Quote author."
    },
    "quoteGenre": {
      "type": "string",
      "description": "Genre tag."
    },
    "__v": {
      "type": "integer",
      "description": "Mongoose schema version."
    }
  },
  "required": ["_id", "quoteText", "quoteAuthor", "quoteGenre"]
}