Airbyte · JSON Structure

Airbyte Permission Response Read Structure

Reformat PermissionResponse with permission scope

Type: object Properties: 5 Required: 5
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

PermissionResponseRead is a JSON Structure definition published by Airbyte, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

permissionId permissionType userId scopeId scope

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-structure/airbyte-permission-response-read-structure.json",
  "name": "PermissionResponseRead",
  "description": "Reformat PermissionResponse with permission scope",
  "type": "object",
  "properties": {
    "permissionId": {
      "type": "uuid"
    },
    "permissionType": {
      "$ref": "#/components/schemas/PermissionType"
    },
    "userId": {
      "$ref": "#/components/schemas/UserId"
    },
    "scopeId": {
      "type": "uuid"
    },
    "scope": {
      "$ref": "#/components/schemas/PermissionScope"
    }
  },
  "required": [
    "permissionId",
    "permissionType",
    "userId",
    "scope",
    "scopeId"
  ]
}