action jellyfin_get_fallback_font_list { label: "Gets a list of available fallback font files." provider: jellyfin method: GET path: "/FallbackFont/Fonts" encoding: json output: { type: "array" items: { type: "object" description: "Class FontFile." properties: { DateCreated: { type: "string" format: "date-time" description: "Gets or sets the date created." } DateModified: { type: "string" format: "date-time" description: "Gets or sets the date modified." } Name: { type: "string" description: "Gets or sets the name." } Size: { type: "integer" format: "int64" description: "Gets or sets the size." } } additionalProperties: false } } }