Tronald Dump · JSON Structure

Tronald Dump Author List Response Structure

HAL response wrapper for the author listing.

Type: object Properties: 4
CommunityGames And ComicsOpen SourcePoliticsPublic APIsQuotesTrump

AuthorListResponse is a JSON Structure definition published by Tronald Dump, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

count total _embedded _links

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/tronald-dump/refs/heads/main/json-structure/tronald-dump-author-list-response-structure.json",
  "name": "AuthorListResponse",
  "description": "HAL response wrapper for the author listing.",
  "type": "object",
  "properties": {
    "count": {
      "type": "int32",
      "description": "Number of authors returned on this page.",
      "example": 1
    },
    "total": {
      "type": "int32",
      "description": "Total number of authors in the system.",
      "example": 1
    },
    "_embedded": {
      "type": "object",
      "properties": {
        "authors": {
          "type": "array",
          "items": {
            "type": "object",
            "description": "An author record (e.g. Donald Trump) attached to one or more quotes.",
            "properties": {
              "author_id": {
                "type": "string",
                "description": "Unique URL-safe identifier for the author.",
                "example": "86xX9JdJSlqIo86xJoiqAA"
              },
              "name": {
                "type": "string",
                "description": "Display name of the author.",
                "example": "Donald Trump"
              },
              "slug": {
                "type": "string",
                "description": "URL-friendly slug for the author.",
                "example": "donald-trump"
              },
              "bio": {
                "type": "string",
                "description": "Short biography of the author.",
                "example": "45th and 47th President of the United States."
              },
              "_links": {
                "type": "object",
                "description": "HAL hypermedia links related to the author.",
                "additionalProperties": true
              }
            }
          }
        }
      }
    },
    "_links": {
      "type": "object",
      "description": "HAL pagination links.",
      "additionalProperties": true
    }
  }
}