Salesforce · Schema
Contact2
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| edges | array |
JSON Schema
{
"type": "object",
"properties": {
"edges": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"node": {
"type": "object",
"properties": {
"Id": {
"type": "string",
"example": "abc123"
},
"Name": {
"type": "object",
"properties": {
"value": {
"type": "string",
"example": "example_value"
}
},
"required": [
"value"
]
},
"Account": {
"type": "object",
"properties": {
"Name": {
"type": "object",
"properties": {
"value": {
"type": "object"
}
},
"required": [
"value"
]
}
},
"required": [
"Name"
]
}
},
"required": [
"Id",
"Name",
"Account"
]
}
},
"required": [
"node"
]
}
}
},
"required": [
"edges"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Contact2"
}