ReceivablesInvoiceCreate

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
TransactionNumber string
TransactionType string
TransactionDate string
BillToCustomerName string
BillToCustomerNumber string
BusinessUnit string
TransactionAmount number
CurrencyCode string
PaymentTerms string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-receivablesinvoicecreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReceivablesInvoiceCreate",
  "title": "ReceivablesInvoiceCreate",
  "type": "object",
  "required": [
    "TransactionNumber",
    "TransactionType",
    "BillToCustomerName",
    "BusinessUnit"
  ],
  "properties": {
    "TransactionNumber": {
      "type": "string"
    },
    "TransactionType": {
      "type": "string"
    },
    "TransactionDate": {
      "type": "string",
      "format": "date"
    },
    "BillToCustomerName": {
      "type": "string"
    },
    "BillToCustomerNumber": {
      "type": "string"
    },
    "BusinessUnit": {
      "type": "string"
    },
    "TransactionAmount": {
      "type": "number",
      "format": "double"
    },
    "CurrencyCode": {
      "type": "string"
    },
    "PaymentTerms": {
      "type": "string"
    }
  }
}