Salesforce · Schema

Record6

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
attributes object
id string
NumberOfEmployees integer
View JSON Schema on GitHub

JSON Schema

salesforce-record6-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "attributes": {
      "type": "object",
      "properties": {
        "type": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "type"
      ]
    },
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "NumberOfEmployees": {
      "type": "integer",
      "example": 10
    }
  },
  "required": [
    "attributes",
    "id",
    "NumberOfEmployees"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Record6"
}