Salesforce · Schema

ToolingExecuteAnonymous

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
line integer
column integer
compiled boolean
success boolean
compileProblem ['string', 'null']
exceptionStackTrace ['string', 'null']
exceptionMessage ['string', 'null']
View JSON Schema on GitHub

JSON Schema

salesforce-tooling-execute-anonymous-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "line": {
      "type": "integer",
      "example": 10
    },
    "column": {
      "type": "integer",
      "example": 10
    },
    "compiled": {
      "type": "boolean",
      "example": true
    },
    "success": {
      "type": "boolean",
      "example": true
    },
    "compileProblem": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "exceptionStackTrace": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "exceptionMessage": {
      "type": "['string', 'null']",
      "example": "example_value"
    }
  },
  "required": [
    "line",
    "column",
    "compiled",
    "success",
    "compileProblem",
    "exceptionStackTrace",
    "exceptionMessage"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ToolingExecuteAnonymous"
}