action sinao_app_policies_get { label: "Get police for an user" description: "Find policy profile for an user on an app" provider: sinao method: GET path: "/apps/{appId}/access/{userId}" encoding: json input: { type: "object" properties: { userId: { type: "string" } } required: ["userId"] additionalProperties: false } output: { 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" } } } }