Salesforce · JSON Structure

Salesforce Links9 Structure

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

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

Properties

giftcommitment giftcommitmentschedule giftdefaultdesignation account

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Links9",
  "properties": {
    "giftcommitment": {
      "type": "object",
      "properties": {
        "href": {
          "type": "string"
        },
        "id": {
          "type": "string"
        }
      },
      "required": [
        "href",
        "id"
      ]
    },
    "giftcommitmentschedule": {
      "type": "object",
      "properties": {
        "href": {
          "type": "string"
        },
        "id": {
          "type": "string"
        }
      },
      "required": [
        "href",
        "id"
      ]
    },
    "giftdefaultdesignation": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "href": {
            "type": "string"
          },
          "id": {
            "type": "string"
          }
        },
        "required": [
          "href",
          "id"
        ]
      }
    },
    "account": {
      "type": "object",
      "properties": {
        "href": {
          "type": "string"
        },
        "id": {
          "type": "string"
        }
      },
      "required": [
        "href",
        "id"
      ]
    }
  },
  "required": [
    "giftcommitment",
    "giftcommitmentschedule",
    "giftdefaultdesignation",
    "account"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}