Oracle Fusion Cloud Applications · Schema
PeriodStatus
CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM
Properties
| Name | Type | Description |
|---|---|---|
| LedgerId | integer | Ledger identifier |
| LedgerName | string | Ledger name |
| PeriodName | string | Accounting period name |
| PeriodYear | integer | Period year |
| PeriodNumber | integer | Period number within the year |
| Status | string | Period status |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PeriodStatus",
"title": "PeriodStatus",
"type": "object",
"properties": {
"LedgerId": {
"type": "integer",
"description": "Ledger identifier"
},
"LedgerName": {
"type": "string",
"description": "Ledger name"
},
"PeriodName": {
"type": "string",
"description": "Accounting period name"
},
"PeriodYear": {
"type": "integer",
"description": "Period year"
},
"PeriodNumber": {
"type": "integer",
"description": "Period number within the year"
},
"Status": {
"type": "string",
"description": "Period status",
"enum": [
"Open",
"Closed",
"Future Entry",
"Never Opened",
"Permanently Closed"
]
}
}
}