content, add type to tvdbv4

This commit is contained in:
Julia Lange 2025-05-08 16:31:06 -07:00
parent 42f93c610a
commit d6637bb96d
Signed by: Julia
SSH key fingerprint: SHA256:50XUMcOFYPUs9/1j7p9SPnwASZ7QnxXm7THF7HkbqzQ

View file

@ -34,9 +34,17 @@
}, },
"tvdbv4": { "tvdbv4": {
"type": "object", "type": "object",
"required": [ "id" ], "required": [ "id", "type" ],
"properties": { "properties": {
"id": { "type": "integer" } "id": { "type": "integer" },
"type": {
"type": "string",
"knownValues": [
"series",
"season",
"movie"
]
}
} }
} }
} }