Salesforce · Schema

ToolingSearch

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
searchRecords array
View JSON Schema on GitHub

JSON Schema

salesforce-tooling-search-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "searchRecords": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "attributes": {
            "type": "object",
            "properties": {
              "type": {
                "type": "string",
                "example": "example_value"
              },
              "url": {
                "type": "string",
                "example": "https://www.example.com"
              }
            },
            "required": [
              "type",
              "url"
            ]
          },
          "Name": {
            "type": "string",
            "example": "Example Title"
          }
        },
        "required": [
          "attributes",
          "Name"
        ]
      }
    }
  },
  "required": [
    "searchRecords"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ToolingSearch"
}