{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-permission-response-schema.json", "title": "PermissionResponse", "description": "Provides details of a single permission.", "type": "object", "properties": { "permissionId": { "type": "string", "format": "uuid" }, "permissionType": { "$ref": "#/components/schemas/PermissionType" }, "userId": { "$ref": "#/components/schemas/UserId" }, "workspaceId": { "$ref": "#/components/schemas/WorkspaceId" }, "organizationId": { "$ref": "#/components/schemas/OrganizationId" } }, "required": [ "permissionId", "permissionType", "userId" ] }