Tronald Dump · Schema
Author
An author record (e.g. Donald Trump) attached to one or more quotes.
CommunityGames And ComicsOpen SourcePoliticsPublic APIsQuotesTrump
Properties
| Name | Type | Description |
|---|---|---|
| author_id | string | Unique URL-safe identifier for the author. |
| name | string | Display name of the author. |
| slug | string | URL-friendly slug for the author. |
| bio | string | Short biography of the author. |
| _links | object | HAL hypermedia links related to the author. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/tronald-dump/refs/heads/main/json-schema/tronald-dump-author-schema.json",
"title": "Author",
"description": "An author record (e.g. Donald Trump) attached to one or more quotes.",
"type": "object",
"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
}
}
}