{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PostCustomDatevPushDataPayrollRequestBody", "title": "PostCustomDatevPushDataPayrollRequestBody", "type": "object", "properties": { "payroll_month": { "description": "Specify the month for which the payroll data should be submitted. The date must be specified as the first day of a month (e.g. 2022-12-01).", "type": "string", "format": "date-time", "pattern": "^\\d{4}-\\d{2}-\\d{2}(T\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?)?Z?$", "externalDocs": { "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString" } } }, "required": [ "payroll_month" ] }