Salesforce · Schema

ContractRenewerAPIRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
context object
View JSON Schema on GitHub

JSON Schema

salesforce-contract-renewer-api-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "context": {
      "type": "object",
      "properties": {
        "masterContractId": {
          "type": "['string', 'null']",
          "example": "500123"
        },
        "renewedContracts": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "object",
            "properties": {
              "attributes": {
                "type": "object",
                "properties": {
                  "type": {
                    "type": "string",
                    "example": "example_value"
                  }
                },
                "required": [
                  "type"
                ]
              },
              "Id": {
                "type": "string",
                "example": "abc123"
              }
            },
            "required": [
              "attributes",
              "Id"
            ]
          }
        }
      },
      "required": [
        "masterContractId",
        "renewedContracts"
      ]
    }
  },
  "required": [
    "context"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ContractRenewerAPIRequest"
}