Salesforce · Schema
Principal1
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| authenticationStatus | string | |
| id | string | |
| parameters | array | |
| principalAccess | array | |
| principalName | string | |
| principalType | string | |
| sequenceNumber | integer |
JSON Schema
{
"type": "object",
"properties": {
"authenticationStatus": {
"type": "string",
"example": "example_value"
},
"id": {
"type": "string",
"example": "abc123"
},
"parameters": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
},
"principalAccess": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
},
"principalName": {
"type": "string",
"example": "example_value"
},
"principalType": {
"type": "string",
"example": "example_value"
},
"sequenceNumber": {
"type": "integer",
"example": 10
}
},
"required": [
"authenticationStatus",
"id",
"parameters",
"principalAccess",
"principalName",
"principalType",
"sequenceNumber"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Principal1"
}