Workday Finance · Schema

FinancialPeriod

AccountingCloudEnterpriseERPFinanceFinancial Management

Properties

Name Type Description
id string
descriptor string
name string
startDate string
endDate string
status string
fiscalYear object
href string
View JSON Schema on GitHub

JSON Schema

workday-finance-financialperiod-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FinancialPeriod",
  "title": "FinancialPeriod",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "startDate": {
      "type": "string",
      "format": "date"
    },
    "endDate": {
      "type": "string",
      "format": "date"
    },
    "status": {
      "type": "string",
      "enum": [
        "open",
        "closed",
        "locked"
      ]
    },
    "fiscalYear": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "href": {
      "type": "string",
      "format": "uri"
    }
  }
}