StandardReceiptCreate

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
ReceiptNumber string
ReceiptAmount number
CurrencyCode string
ReceiptDate string
CustomerName string
CustomerNumber string
BusinessUnit string
PaymentMethod string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-standardreceiptcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StandardReceiptCreate",
  "title": "StandardReceiptCreate",
  "type": "object",
  "required": [
    "ReceiptAmount",
    "CurrencyCode",
    "CustomerName",
    "BusinessUnit"
  ],
  "properties": {
    "ReceiptNumber": {
      "type": "string"
    },
    "ReceiptAmount": {
      "type": "number",
      "format": "double"
    },
    "CurrencyCode": {
      "type": "string"
    },
    "ReceiptDate": {
      "type": "string",
      "format": "date"
    },
    "CustomerName": {
      "type": "string"
    },
    "CustomerNumber": {
      "type": "string"
    },
    "BusinessUnit": {
      "type": "string"
    },
    "PaymentMethod": {
      "type": "string"
    }
  }
}