Salesforce · JSON Structure

Salesforce Parent Structure

Type: object Properties: 7 Required: 7
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Parent is a JSON Structure definition published by Salesforce, describing 7 properties, of which 7 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

entityLabel id motif mySubscription name type url

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Parent",
  "properties": {
    "entityLabel": {
      "type": "object",
      "properties": {
        "label": {
          "type": "string"
        },
        "labelPlural": {
          "type": "string"
        }
      },
      "required": [
        "label",
        "labelPlural"
      ]
    },
    "id": {
      "type": "string"
    },
    "motif": {
      "type": "object",
      "properties": {
        "color": {
          "type": "string"
        },
        "largeIconUrl": {
          "type": "string"
        },
        "mediumIconUrl": {
          "type": "string"
        },
        "smallIconUrl": {
          "type": "string"
        },
        "svgIconUrl": {
          "type": "['string', 'null']"
        }
      },
      "required": [
        "color",
        "largeIconUrl",
        "mediumIconUrl",
        "smallIconUrl",
        "svgIconUrl"
      ]
    },
    "mySubscription": {
      "type": "['string', 'null']"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  },
  "required": [
    "entityLabel",
    "id",
    "motif",
    "mySubscription",
    "name",
    "type",
    "url"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}