Airbyte · Schema

Root type for 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-permissionresponseread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PermissionResponseRead",
  "title": "Root type for PermissionResponseRead",
  "description": "Reformat PermissionResponse with permission scope",
  "type": "object",
  "required": [
    "permissionId",
    "permissionType",
    "userId",
    "scope",
    "scopeId"
  ],
  "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"
    }
  },
  "x-speakeasy-entity": "Permission",
  "x-speakeasy-param-suppress-computed-diff": true,
  "x-speakeasy-component": true
}