action jellyfin_get_profile_infos { label: "Get profile infos." provider: jellyfin method: GET path: "/Dlna/ProfileInfos" encoding: json output: { type: "array" items: { type: "object" properties: { Id: { type: "string" description: "Gets or sets the identifier." } Name: { type: "string" description: "Gets or sets the name." } Type: { type: "string" enum: ["System", "User"] } } additionalProperties: false } } }