action jellyfin_get_network_shares { label: "Gets network paths." provider: jellyfin method: GET path: "/Environment/NetworkShares" encoding: json output: { type: "array" items: { type: "object" description: "Class FileSystemEntryInfo." properties: { Name: { type: "string" description: "Gets the name." } Path: { type: "string" description: "Gets the path." } Type: { type: "string" description: "Enum FileSystemEntryType." enum: ["File", "Directory", "NetworkComputer", "NetworkShare"] } } additionalProperties: false } } }