List/Array of multiple users in an organization
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-users-response-schema.json", "title": "UsersResponse", "description": "List/Array of multiple users in an organization", "type": "object", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/UserResponse" } } }, "required": [ "data" ] }