{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "PaySlip", "type": "object", "properties": { "id": { "type": "string" }, "descriptor": { "type": "string" }, "payPeriodStartDate": { "type": "string" }, "payPeriodEndDate": { "type": "string" }, "payDate": { "type": "string" }, "grossPay": { "type": "number" }, "netPay": { "type": "number" }, "totalDeductions": { "type": "number" }, "totalTaxes": { "type": "number" } } }