TheTVDB · Schema
SourceType
source type record
EntertainmentMoviesTelevisionMedia MetadataPublic APIsVideo
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| postfix | string | |
| prefix | string | |
| slug | string | |
| sort | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/tvdb/refs/heads/main/json-schema/tvdb-source-type-schema.json",
"title": "SourceType",
"description": "source type record",
"properties": {
"id": {
"format": "int64",
"type": "integer",
"x-go-name": "ID",
"example": 12345
},
"name": {
"type": "string",
"x-go-name": "Name",
"example": "Example Name"
},
"postfix": {
"type": "string",
"example": "example"
},
"prefix": {
"type": "string",
"example": "example"
},
"slug": {
"type": "string",
"x-go-name": "Slug",
"example": "example-slug"
},
"sort": {
"format": "int64",
"type": "integer",
"x-go-name": "Sort",
"example": 12345
}
},
"type": "object"
}