{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GrossEarningsHistory", "title": "GrossEarningsHistory", "type": "object", "properties": { "daysPaid": { "description": "Number of days the employee worked in the pay period (0 - 365)", "type": "integer", "format": "int32" }, "unpaidWeeks": { "description": "Number of full weeks the employee didn't work in the pay period (0 - 52)", "type": "integer", "format": "int32" } } }