Salesforce · Schema

Constructor

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
annotations array
location object
modifiers array
name string
parameters array
references array
type ['string', 'null']
View JSON Schema on GitHub

JSON Schema

salesforce-constructor-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "annotations": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "location": {
      "type": "object",
      "properties": {
        "column": {
          "type": "integer",
          "example": 10
        },
        "line": {
          "type": "integer",
          "example": 10
        }
      },
      "required": [
        "column",
        "line"
      ]
    },
    "modifiers": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "parameters": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "example": "Example Title"
          },
          "type": {
            "type": "string",
            "example": "example_value"
          }
        },
        "required": [
          "name",
          "type"
        ]
      }
    },
    "references": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "type": {
      "type": "['string', 'null']",
      "example": "example_value"
    }
  },
  "required": [
    "annotations",
    "location",
    "modifiers",
    "name",
    "parameters",
    "references",
    "type"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Constructor"
}