Workday Financials · Schema

Company

AccountingCloud ERPFinancial ManagementProcurement

Properties

Name Type Description
id string Workday ID (WID) for the company
name string Company name
organizationCode string Organization reference code
currency object
active boolean Whether the company is active
View JSON Schema on GitHub

JSON Schema

workday-financials-company-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Company",
  "title": "Company",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Workday ID (WID) for the company"
    },
    "name": {
      "type": "string",
      "description": "Company name"
    },
    "organizationCode": {
      "type": "string",
      "description": "Organization reference code"
    },
    "currency": {
      "$ref": "#/components/schemas/CurrencyRef"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the company is active"
    }
  }
}