Salesforce · JSON Structure

Salesforce Table Declaration Structure

Type: object Properties: 6 Required: 6
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

TableDeclaration is a JSON Structure definition published by Salesforce, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

annotations location modifiers name references type

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "TableDeclaration",
  "properties": {
    "annotations": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          }
        },
        "required": [
          "name"
        ]
      }
    },
    "location": {
      "type": "object",
      "properties": {
        "column": {
          "type": "integer"
        },
        "line": {
          "type": "integer"
        }
      },
      "required": [
        "column",
        "line"
      ]
    },
    "modifiers": {
      "type": "array",
      "description": "",
      "items": {
        "type": "string"
      }
    },
    "name": {
      "type": "string"
    },
    "references": {
      "type": "array",
      "description": "",
      "items": {
        "type": "string"
      }
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "annotations",
    "location",
    "modifiers",
    "name",
    "references",
    "type"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}