Salesforce · Schema

Version

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
apiName string
enabled boolean
id string
name string
showExplExternally boolean
startDate string
steps array
variables array
versionNumber integer
View JSON Schema on GitHub

JSON Schema

salesforce-version-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "apiName": {
      "type": "string",
      "example": "example_value"
    },
    "enabled": {
      "type": "boolean",
      "example": true
    },
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "showExplExternally": {
      "type": "boolean",
      "example": true
    },
    "startDate": {
      "type": "string",
      "example": "example_value"
    },
    "steps": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "variables": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "versionNumber": {
      "type": "integer",
      "example": 10
    }
  },
  "required": [
    "apiName",
    "enabled",
    "id",
    "name",
    "showExplExternally",
    "startDate",
    "steps",
    "variables",
    "versionNumber"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Version"
}