Workday Finance · Schema

Requisition

AccountingCloudEnterpriseERPFinanceFinancial Management

Properties

Name Type Description
id string
descriptor string
requisitionNumber string
status string
requester object
submitDate string
totalAmount number
currency string
href string
View JSON Schema on GitHub

JSON Schema

workday-finance-requisition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Requisition",
  "title": "Requisition",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "requisitionNumber": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "draft",
        "submitted",
        "approved",
        "ordered",
        "received"
      ]
    },
    "requester": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "submitDate": {
      "type": "string",
      "format": "date"
    },
    "totalAmount": {
      "type": "number",
      "format": "double"
    },
    "currency": {
      "type": "string"
    },
    "href": {
      "type": "string",
      "format": "uri"
    }
  }
}