{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-organization-o-auth-credentials-request-schema.json", "title": "OrganizationOAuthCredentialsRequest", "description": "POST body for creating/updating organization level OAuth credentials", "type": "object", "properties": { "actorType": { "$ref": "#/components/schemas/ActorTypeEnum" }, "name": { "type": "string", "description": "The name of the source i.e. google-ads" }, "configuration": { "$ref": "#/components/schemas/OAuthCredentialsConfiguration" } }, "required": [ "actorType", "name", "configuration" ] }