Salesforce · Schema

Parent

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
entityLabel object
id string
motif object
mySubscription ['string', 'null']
name string
type string
url string
View JSON Schema on GitHub

JSON Schema

salesforce-parent-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "entityLabel": {
      "type": "object",
      "properties": {
        "label": {
          "type": "string",
          "example": "Example Title"
        },
        "labelPlural": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "label",
        "labelPlural"
      ]
    },
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "motif": {
      "type": "object",
      "properties": {
        "color": {
          "type": "string",
          "example": "example_value"
        },
        "largeIconUrl": {
          "type": "string",
          "example": "https://www.example.com"
        },
        "mediumIconUrl": {
          "type": "string",
          "example": "https://www.example.com"
        },
        "smallIconUrl": {
          "type": "string",
          "example": "https://www.example.com"
        },
        "svgIconUrl": {
          "type": "['string', 'null']",
          "example": "https://www.example.com"
        }
      },
      "required": [
        "color",
        "largeIconUrl",
        "mediumIconUrl",
        "smallIconUrl",
        "svgIconUrl"
      ]
    },
    "mySubscription": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "url": {
      "type": "string",
      "example": "https://www.example.com"
    }
  },
  "required": [
    "entityLabel",
    "id",
    "motif",
    "mySubscription",
    "name",
    "type",
    "url"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Parent"
}