action jellyfin_get_item_counts { label: "Get item counts." provider: jellyfin method: GET path: "/Items/Counts" encoding: json input: { type: "object" properties: { isFavorite: { type: "boolean" description: "Optional. Get counts of favorite items." } userId: { type: "string" format: "uuid" description: "Optional. Get counts from a specific user's library." } } additionalProperties: false } output: { type: "object" description: "Class LibrarySummary." properties: { AlbumCount: { type: "integer" format: "int32" description: "Gets or sets the album count." } ArtistCount: { type: "integer" format: "int32" description: "Gets or sets the artist count." } BookCount: { type: "integer" format: "int32" description: "Gets or sets the book count." } BoxSetCount: { type: "integer" format: "int32" description: "Gets or sets the box set count." } EpisodeCount: { type: "integer" format: "int32" description: "Gets or sets the episode count." } ItemCount: { type: "integer" format: "int32" description: "Gets or sets the item count." } MovieCount: { type: "integer" format: "int32" description: "Gets or sets the movie count." } MusicVideoCount: { type: "integer" format: "int32" description: "Gets or sets the music video count." } ProgramCount: { type: "integer" format: "int32" description: "Gets or sets the program count." } SeriesCount: { type: "integer" format: "int32" description: "Gets or sets the series count." } SongCount: { type: "integer" format: "int32" description: "Gets or sets the song count." } TrailerCount: { type: "integer" format: "int32" description: "Gets or sets the trailer count." } } additionalProperties: false } }