{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OrganizationOAuthCredentialsRequest", "title": "Root Type for OrganizationOAuthCredentials", "description": "POST body for creating/updating organization level OAuth credentials", "required": [ "actorType", "name", "configuration" ], "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" } }, "x-speakeasy-component": true }