Workday Finance · Schema

Supplier

AccountingCloudEnterpriseERPFinanceFinancial Management

Properties

Name Type Description
id string Supplier unique identifier
descriptor string Supplier display name
name string
supplierNumber string
status string
taxId string
paymentTerms string
href string
View JSON Schema on GitHub

JSON Schema

workday-finance-supplier-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Supplier",
  "title": "Supplier",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Supplier unique identifier"
    },
    "descriptor": {
      "type": "string",
      "description": "Supplier display name"
    },
    "name": {
      "type": "string"
    },
    "supplierNumber": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive"
      ]
    },
    "taxId": {
      "type": "string"
    },
    "paymentTerms": {
      "type": "string"
    },
    "href": {
      "type": "string",
      "format": "uri"
    }
  }
}