Airbyte · Schema

UserResponse

Provides details of a single user in an organization.

Data IntegrationETLELTOpen-SourceData PipelineConnectorsData

Properties

Name Type Description
name string Name of the user
id object
email string
View JSON Schema on GitHub

JSON Schema

airbyte-user-response-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-user-response-schema.json",
  "title": "UserResponse",
  "description": "Provides details of a single user in an organization.",
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the user",
      "type": "string"
    },
    "id": {
      "$ref": "#/components/schemas/UserId"
    },
    "email": {
      "type": "string",
      "format": "email"
    }
  },
  "required": [
    "id",
    "name",
    "email"
  ]
}