Salesforce · Schema

InitiateAmendQuantityRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
assetIds object
startDate string
quantityChange integer
amendmentOutputType string
View JSON Schema on GitHub

JSON Schema

salesforce-initiate-amend-quantity-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "assetIds": {
      "type": "object",
      "properties": {
        "assetIdArray": {
          "type": "array",
          "description": "",
          "example": [],
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "assetIdArray"
      ]
    },
    "startDate": {
      "type": "string",
      "example": "example_value"
    },
    "quantityChange": {
      "type": "integer",
      "example": 10
    },
    "amendmentOutputType": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "assetIds",
    "startDate",
    "quantityChange",
    "amendmentOutputType"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "InitiateAmendQuantityRequest"
}