action files_get_priorities { label: "List Priorities" description: "List Priorities" provider: files method: GET path: "/priorities" encoding: json input: { type: "object" properties: { cursor: { type: "string" } path: { type: "string" } per_page: { type: "integer" format: "int32" } } required: ["path"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "List Priorities" properties: { color: { type: "string" description: "The priority color" } path: { type: "string" description: "The path corresponding to the priority color" } } } } }