Salesforce · Schema

Info

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
title string
description string
version string
View JSON Schema on GitHub

JSON Schema

salesforce-info-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "version": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "title",
    "description",
    "version"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Info"
}