Airbyte · Schema

PermissionResponseRead

Reformat PermissionResponse with permission scope

Data IntegrationETLELTOpen-SourceData PipelineConnectorsData

Properties

Name Type Description
permissionId string
permissionType object
userId object
scopeId string
scope object
View JSON Schema on GitHub

JSON Schema

airbyte-permission-response-read-schema.json Raw ↑
{
  "$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-read-schema.json",
  "title": "PermissionResponseRead",
  "description": "Reformat PermissionResponse with permission scope",
  "type": "object",
  "properties": {
    "permissionId": {
      "type": "string",
      "format": "uuid"
    },
    "permissionType": {
      "$ref": "#/components/schemas/PermissionType"
    },
    "userId": {
      "$ref": "#/components/schemas/UserId"
    },
    "scopeId": {
      "type": "string",
      "format": "uuid"
    },
    "scope": {
      "$ref": "#/components/schemas/PermissionScope"
    }
  },
  "required": [
    "permissionId",
    "permissionType",
    "userId",
    "scope",
    "scopeId"
  ]
}