action jellyfin_get_metadata_editor_info { label: "Gets metadata editor info for an item." provider: jellyfin method: GET path: "/Items/{itemId}/MetadataEditor" encoding: json input: { type: "object" properties: { itemId: { type: "string" format: "uuid" description: "The item id." } } required: ["itemId"] additionalProperties: false } output: { type: "object" properties: { ContentType: { type: "string" } ContentTypeOptions: { type: "array" items: { type: "object" properties: { Name: { type: "string" description: "Gets or sets the name." } Value: { type: "string" description: "Gets or sets the value." } } additionalProperties: false } } Countries: { type: "array" items: { type: "object" description: "Class CountryInfo." properties: { DisplayName: { type: "string" description: "Gets or sets the display name." } Name: { type: "string" description: "Gets or sets the name." } ThreeLetterISORegionName: { type: "string" description: "Gets or sets the name of the three letter ISO region." } TwoLetterISORegionName: { type: "string" description: "Gets or sets the name of the two letter ISO region." } } additionalProperties: false } } Cultures: { type: "array" items: { type: "object" description: "Class CultureDto." properties: { DisplayName: { type: "string" description: "Gets or sets the display name." } Name: { type: "string" description: "Gets or sets the name." } ThreeLetterISOLanguageName: { type: "string" description: "Gets or sets the name of the three letter ISO language." } ThreeLetterISOLanguageNames: { type: "array" items: { type: "string" } } TwoLetterISOLanguageName: { type: "string" description: "Gets or sets the name of the two letter ISO language." } } additionalProperties: false } } ExternalIdInfos: { type: "array" items: { type: "object" description: "Represents the external id information for serialization to the client." properties: { Key: { type: "string" description: "Gets or sets the unique key for this id. This key should be unique across all providers." } Name: { type: "string" description: "Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc)." } Type: { type: "string" description: "The specific media type of an MediaBrowser.Model.Providers.ExternalIdInfo." enum: ["Album", "AlbumArtist", "Artist", "BoxSet", "Episode", "Movie", "OtherArtist", "Person", "ReleaseGroup", "Season", "Series", "Track"] } UrlFormatString: { type: "string" description: "Gets or sets the URL format string." } } additionalProperties: false } } ParentalRatingOptions: { type: "array" items: { type: "object" description: "Class ParentalRating." properties: { Name: { type: "string" description: "Gets or sets the name." } Value: { type: "integer" format: "int32" description: "Gets or sets the value." } } additionalProperties: false } } } additionalProperties: false } }