{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VonageCredential", "title": "VonageCredential", "type": "object", "properties": { "vonageApplicationPrivateKey": { "type": "string", "description": "This is not returned in the API.", "maxLength": 10000 }, "provider": { "type": "string", "enum": [ "vonage" ] }, "apiSecret": { "type": "string", "description": "This is not returned in the API." }, "id": { "type": "string", "description": "This is the unique identifier for the credential." }, "orgId": { "type": "string", "description": "This is the unique identifier for the org that this credential belongs to." }, "createdAt": { "format": "date-time", "type": "string", "description": "This is the ISO 8601 date-time string of when the credential was created." }, "updatedAt": { "format": "date-time", "type": "string", "description": "This is the ISO 8601 date-time string of when the assistant was last updated." }, "vonageApplicationId": { "type": "string", "description": "This is the Vonage Application ID for the credential.\n\nOnly relevant for Vonage credentials.", "maxLength": 10000 }, "name": { "type": "string", "description": "This is the name of credential. This is just for your reference.", "minLength": 1, "maxLength": 40 }, "apiKey": { "type": "string" } }, "required": [ "vonageApplicationPrivateKey", "provider", "apiSecret", "id", "orgId", "createdAt", "updatedAt", "vonageApplicationId", "apiKey" ] }