action sinao_app_policies_list { label: "Get policies for an app" description: "Get all policies for an app. Manage access for users" provider: sinao method: GET path: "/apps/{appId}/access" encoding: json output: { type: "array" items: { type: "object" properties: { description: { type: "string" } homepage: { type: "string" format: "uri" } name: { type: "string" } restricted: { type: "boolean" } rights: { type: "array" description: "Routes list" items: { type: "string" } } visible: { type: "integer" } } } } }