{ "type": "object", "name": "EmployeeGrowth", "properties": { "oneYearGrowthRate": { "type": "string" }, "twoYearGrowthRate": { "type": "string" }, "employeeGrowthDataPoints": { "type": "array", "description": "", "items": { "type": "object", "properties": { "label": { "type": "string" }, "employeeCount": { "type": "integer" } }, "required": [ "label", "employeeCount" ] } } }, "required": [ "oneYearGrowthRate", "twoYearGrowthRate", "employeeGrowthDataPoints" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }