Salesforce · Schema

InitiateCancellationRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
assetIds object
cancellationDate string
cancellationOutputType string
View JSON Schema on GitHub

JSON Schema

salesforce-initiate-cancellation-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "assetIds": {
      "type": "object",
      "properties": {
        "assetIdArray": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "assetIdArray"
      ]
    },
    "cancellationDate": {
      "type": "string",
      "example": "example_value"
    },
    "cancellationOutputType": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "assetIds",
    "cancellationDate",
    "cancellationOutputType"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "InitiateCancellationRequest"
}