{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApplicationCredentialPublicResponse", "title": "ApplicationCredentialPublicResponse", "type": "object", "properties": { "id": { "type": "string", "format": "uuid" }, "connector_slug": { "type": "string" }, "client_id": { "type": "string" }, "external_id": { "type": [ "string", "null" ] }, "is_global_default": { "type": "boolean" }, "created_at": { "type": "string", "format": "date-time" }, "modified_at": { "type": "string", "format": "date-time" } }, "required": [ "id", "connector_slug", "client_id", "external_id", "is_global_default", "created_at", "modified_at" ], "description": "Public API response \u2014 excludes scope override fields." }