Pay Schedule
A pay schedule is a grouping of employees under and specific pay frequency, you can have an unlimited number of pay schedules for an employer.
PaySchedule [Schema]
Name | Type | Required | Description |
---|---|---|---|
Name | xsd:string
(
min: 1
max: 35)
Pattern: [A-Za-z0-9 ~!"@#$%&'\(\)\*\+,\-\./:;<=>\?\[\\\]^_\{\}£€]* |
yes | The name of the pay schedule that unique identifies it. |
PayFrequency | PayFrequency | yes | The desired pay frequency of the pay schedule. |
MetaData | MetaData | no | The optional meta data collection. |
Example
<?xml version="1.0"?>
<PaySchedule xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Name>string</Name>
<PayFrequency>Weekly</PayFrequency>
<MetaData>
<Item Name="string">string</Item>
</MetaData>
</PaySchedule>
{
"PaySchedule": {
"Name": "string",
"PayFrequency": "Weekly",
"MetaData": {
"Item": [
{
"@Name": "string",
"#text": "string"
}
]
}
}
}