Salesforce · Schema
Query
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| Account | object |
JSON Schema
{
"type": "object",
"properties": {
"Account": {
"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": "object"
}
},
"required": [
"value"
]
}
},
"required": [
"Id",
"Name"
]
}
},
"required": [
"node"
]
}
}
},
"required": [
"edges"
]
}
},
"required": [
"Account"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Query"
}