action files_get_styles_path { label: "Show Style" description: "Show Style" provider: files method: GET path: "/styles/{path}" encoding: json input: { type: "object" properties: { path: { type: "string" } } required: ["path"] additionalProperties: false } output: { type: "object" description: "Show Style" properties: { id: { type: "integer" format: "int32" description: "Style ID" } logo: { type: "object" properties: { name: { type: "string" description: "Image name" } uri: { type: "string" description: "Image URI" } } } path: { type: "string" description: "Folder path" } thumbnail: { type: "object" additionalProperties: true } } } }