Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| payGroup | object | |
| payPeriodStartDate | string | |
| payPeriodEndDate | string | |
| paymentDate | string | |
| status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PayGroupDetail",
"title": "PayGroupDetail",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descriptor": {
"type": "string"
},
"payGroup": {
"$ref": "#/components/schemas/ResourceReference"
},
"payPeriodStartDate": {
"type": "string",
"format": "date"
},
"payPeriodEndDate": {
"type": "string",
"format": "date"
},
"paymentDate": {
"type": "string",
"format": "date"
},
"status": {
"type": "string"
}
}
}