Reclaim.ai · Schema
Credential
AISchedulingCalendarProductivityTasksHabitsTime ManagementMeetingsFocus Time
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| userId | string | |
| provider | string | |
| principal | string | |
| name | object | |
| splitScopes | array | |
| scopes | string | |
| data | object | |
| avatar | string | |
| userInfo | object | |
| updated | string | |
| key | string | |
| valid | boolean | |
| validMicrosoftCredential | boolean | |
| serviceAccount | boolean | |
| connectedAccountType | object | |
| string | ||
| credentialType | object | |
| googleWorkspaceCredential | boolean | |
| googleNonWorkspaceCredential | boolean | |
| microsoftWorkspaceCredential | boolean | |
| microsoftNonWorkspaceCredential | boolean |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.app.reclaim.ai/schemas/Credential",
"title": "Credential",
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"userId": {
"type": "string"
},
"provider": {
"type": "string"
},
"principal": {
"type": "string"
},
"name": {
"$ref": "#/components/schemas/CredentialName"
},
"splitScopes": {
"type": "array",
"items": {
"type": "string"
}
},
"scopes": {
"type": "string"
},
"data": {},
"avatar": {
"type": "string"
},
"userInfo": {
"$ref": "#/components/schemas/GoogleUserInfo"
},
"updated": {
"type": "string",
"format": "date-time"
},
"key": {
"type": "string"
},
"valid": {
"type": "boolean"
},
"validMicrosoftCredential": {
"type": "boolean"
},
"serviceAccount": {
"type": "boolean"
},
"connectedAccountType": {
"$ref": "#/components/schemas/ConnectedAccountType"
},
"email": {
"type": "string"
},
"credentialType": {
"$ref": "#/components/schemas/CredentialType"
},
"googleWorkspaceCredential": {
"type": "boolean"
},
"googleNonWorkspaceCredential": {
"type": "boolean"
},
"microsoftWorkspaceCredential": {
"type": "boolean"
},
"microsoftNonWorkspaceCredential": {
"type": "boolean"
}
}
}