Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| inputType | string | |
| payComponent | object | |
| amount | number | |
| currency | object | |
| startDate | string | |
| endDate | string | |
| comment | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PayrollInput",
"title": "PayrollInput",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"descriptor": {
"type": "string",
"example": "example_value"
},
"inputType": {
"type": "string",
"example": "example_value"
},
"payComponent": {
"$ref": "#/components/schemas/ResourceReference"
},
"amount": {
"type": "number",
"format": "double",
"example": 42.5
},
"currency": {
"$ref": "#/components/schemas/ResourceReference"
},
"startDate": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"endDate": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"comment": {
"type": "string",
"example": "example_value"
}
}
}