action jellyfin_get_default_metadata_options { label: "Gets a default MetadataOptions object." provider: jellyfin method: GET path: "/System/Configuration/MetadataOptions/Default" encoding: json output: { type: "object" description: "Class MetadataOptions." properties: { DisabledImageFetchers: { type: "array" items: { type: "string" } } DisabledMetadataFetchers: { type: "array" items: { type: "string" } } DisabledMetadataSavers: { type: "array" items: { type: "string" } } ImageFetcherOrder: { type: "array" items: { type: "string" } } ItemType: { type: "string" } LocalMetadataReaderOrder: { type: "array" items: { type: "string" } } MetadataFetcherOrder: { type: "array" items: { type: "string" } } } additionalProperties: false } }