SAP Ariba · Schema

InvoiceCreate

Request body for creating a new invoice

B2BContract ManagementProcurementSourcingSpend AnalysisSupplier ManagementSupply Chain

Properties

Name Type Description
invoiceNumber string Supplier-assigned invoice number
invoiceDate string Invoice issue date
invoiceType string
purchaseOrderReference string Purchase order number
currency string
lineItems array
comments string
View JSON Schema on GitHub

JSON Schema

sap-ariba-procurement-invoice-create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "InvoiceCreate",
  "type": "object",
  "description": "Request body for creating a new invoice",
  "properties": {
    "invoiceNumber": {
      "type": "string",
      "description": "Supplier-assigned invoice number"
    },
    "invoiceDate": {
      "type": "string",
      "description": "Invoice issue date"
    },
    "invoiceType": {
      "type": "string"
    },
    "purchaseOrderReference": {
      "type": "string",
      "description": "Purchase order number"
    },
    "currency": {
      "type": "string"
    },
    "lineItems": {
      "type": "array"
    },
    "comments": {
      "type": "string"
    }
  }
}