{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApplicationCredentialPublicCreate", "title": "ApplicationCredentialPublicCreate", "type": "object", "properties": { "connector_slug": { "type": "string", "description": "Slug of the connector to create an OAuth app for." }, "client_id": { "type": "string" }, "client_secret": { "type": [ "string", "null" ] }, "external_id": { "type": [ "string", "null" ] } }, "required": [ "connector_slug", "client_id" ], "description": "Public API request body for creating an application credential." }