action beezup_get_rights { label: "Get store's rights" provider: beezup method: GET path: "/v2/user/customer/stores/{storeId}/rights" encoding: json input: { type: "object" properties: { storeId: { type: "string" format: "guid" } } required: ["storeId"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "Describe the rights for a functionality" required: ["functionalityCode"] properties: { functionalityCode: { type: "string" description: "The functionality code" } maxValueInterger: { type: "integer" description: "The max value for this functionality code considering your rights" } unlimited: { type: "boolean" description: "If you can use this functionality unlimitedly" } } } } }