Tronald Dump · Schema
Source
A source document (tweet, transcript, article) underpinning a quote.
CommunityGames And ComicsOpen SourcePoliticsPublic APIsQuotesTrump
Properties
| Name | Type | Description |
|---|---|---|
| source_id | string | Unique URL-safe identifier for the source. |
| url | string | Canonical URL of the source document. |
| filename | string | Filename of the archived source on disk. |
| created_at | string | The date and time the source was created. |
| updated_at | string | The date and time the source was last updated. |
| _links | object | HAL hypermedia links related to the source. |
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-source-schema.json",
"title": "Source",
"description": "A source document (tweet, transcript, article) underpinning a quote.",
"type": "object",
"properties": {
"source_id": {
"type": "string",
"description": "Unique URL-safe identifier for the source.",
"example": "2u3o8DcvSluqZ27WtmlGCw"
},
"url": {
"type": "string",
"format": "uri",
"description": "Canonical URL of the source document.",
"example": "https://twitter.com/realDonaldTrump/status/780494805192454144"
},
"filename": {
"type": "string",
"description": "Filename of the archived source on disk.",
"example": "780494805192454144.txt"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The date and time the source was created.",
"example": "2017-02-15T16:13:32.456Z"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "The date and time the source was last updated.",
"example": "2017-02-15T16:13:32.456Z"
},
"_links": {
"type": "object",
"description": "HAL hypermedia links related to the source.",
"additionalProperties": true
}
}
}