Salesforce · JSON Structure

Salesforce Initiate Amend Quantity Request Structure

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

InitiateAmendQuantityRequest 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

assetIds startDate quantityChange amendmentOutputType

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "InitiateAmendQuantityRequest",
  "properties": {
    "assetIds": {
      "type": "object",
      "properties": {
        "assetIdArray": {
          "type": "array",
          "description": "",
          "items": {
            "type": "string"
          }
        }
      },
      "required": [
        "assetIdArray"
      ]
    },
    "startDate": {
      "type": "string"
    },
    "quantityChange": {
      "type": "integer"
    },
    "amendmentOutputType": {
      "type": "string"
    }
  },
  "required": [
    "assetIds",
    "startDate",
    "quantityChange",
    "amendmentOutputType"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}