Merge · Schema

ApplyVendorCreditRequest

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
invoice stringnull The invoice to apply the vendor credit to.
applied_date string Date that the vendor credit is applied to the invoice.
applied_amount string The amount of vendor credit applied to the invoice.
View JSON Schema on GitHub

JSON Schema

merge-applyvendorcreditrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplyVendorCreditRequest",
  "title": "ApplyVendorCreditRequest",
  "type": "object",
  "properties": {
    "invoice": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid",
      "description": "The invoice to apply the vendor credit to."
    },
    "applied_date": {
      "type": "string",
      "format": "date-time",
      "description": "Date that the vendor credit is applied to the invoice."
    },
    "applied_amount": {
      "type": "string",
      "format": "decimal",
      "description": "The amount of vendor credit applied to the invoice."
    }
  },
  "required": [
    "invoice",
    "applied_date",
    "applied_amount"
  ]
}