-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9b6e02
commit 3d62bde
Showing
3 changed files
with
78 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,81 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Jellyfin studio artwork", | ||
"description": "A set of artwork for studios, used by Jellyfin", | ||
"type": "array", | ||
"items": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Jellyfin studio artwork", | ||
"description": "A set of artwork for studios, used by Jellyfin", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"description": "Standard name of the studio, network or label in English", | ||
"type": "string" | ||
}, | ||
"providers": { | ||
"type": "object", | ||
"description": "Identifiers for various metadata providers", | ||
"properties": { | ||
"name": { | ||
"description": "Standard name of the studio, network or label in English", | ||
"type": "string" | ||
}, | ||
"providers": { | ||
"type": "object", | ||
"description": "Identifiers for various metadata providers", | ||
"properties": { | ||
"tvdb": { | ||
"description": "Identifier of the network on TVDB", | ||
"type": "string" | ||
}, | ||
"tmdb": { | ||
"description": "Identifier of the network or studio on TheMovieDB", | ||
"type": "string" | ||
}, | ||
"imdb": { | ||
"description": "Identifier of the company on IMDB", | ||
"type": "string" | ||
}, | ||
"musicbrainz": { | ||
"description": "Identifier of the label on MusicBrainz", | ||
"type": "string" | ||
}, | ||
"anidb": { | ||
"description": "Identifier of the studio on AniDB", | ||
"type": "string" | ||
}, | ||
"anilist": { | ||
"description": "Identifier of the studio on AniList", | ||
"type": "string" | ||
}, | ||
"additionalProperties": true | ||
} | ||
}, | ||
"artwork": { | ||
"type": "object", | ||
"properties": { | ||
"primary": { | ||
"type": "string" | ||
}, | ||
"thumb": { | ||
"type": "string" | ||
}, | ||
"logo": { | ||
"type": "string" | ||
}, | ||
"backdrop": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"primary", | ||
"thumb" | ||
] | ||
"tvdb": { | ||
"description": "Identifier of the network on TVDB", | ||
"type": "string" | ||
}, | ||
"tmdb": { | ||
"description": "Identifier of the network or studio on TheMovieDB", | ||
"type": "string" | ||
}, | ||
"imdb": { | ||
"description": "Identifier of the company on IMDB", | ||
"type": "string" | ||
}, | ||
"musicbrainz": { | ||
"description": "Identifier of the label on MusicBrainz", | ||
"type": "string" | ||
}, | ||
"anidb": { | ||
"description": "Identifier of the studio on AniDB", | ||
"type": "string" | ||
}, | ||
"anilist": { | ||
"description": "Identifier of the studio on AniList", | ||
"type": "string" | ||
}, | ||
"additionalProperties": true | ||
} | ||
}, | ||
"artwork": { | ||
"type": "object", | ||
"properties": { | ||
"primary": { | ||
"type": "array", | ||
"items": { | ||
"type": "string", | ||
"enum": ["webp", "svg"] | ||
} | ||
}, | ||
"thumb": { | ||
"type": "array", | ||
"items": { | ||
"type": "string", | ||
"enum": ["webp", "svg"] | ||
} | ||
}, | ||
"logo": { | ||
"type": "array", | ||
"items": { | ||
"type": "string", | ||
"enum": ["webp", "svg"] | ||
} | ||
}, | ||
"backdrop": { | ||
"type": "array", | ||
"items": { | ||
"type": "string", | ||
"enum": ["webp", "svg"] | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"name", | ||
"providers", | ||
"artwork" | ||
] | ||
} | ||
} | ||
"required": ["primary", "thumb"] | ||
} | ||
}, | ||
"required": ["name", "providers", "artwork"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters