Salesforce · JSON Structure

Salesforce Contract Renewer Api Request Structure

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

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

Properties

context

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "ContractRenewerAPIRequest",
  "properties": {
    "context": {
      "type": "object",
      "properties": {
        "masterContractId": {
          "type": "['string', 'null']"
        },
        "renewedContracts": {
          "type": "array",
          "description": "",
          "items": {
            "type": "object",
            "properties": {
              "attributes": {
                "type": "object",
                "properties": {
                  "type": {
                    "type": "string"
                  }
                },
                "required": [
                  "type"
                ]
              },
              "Id": {
                "type": "string"
              }
            },
            "required": [
              "attributes",
              "Id"
            ]
          }
        }
      },
      "required": [
        "masterContractId",
        "renewedContracts"
      ]
    }
  },
  "required": [
    "context"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}