{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Population", "title": "Population", "additionalProperties": false, "properties": { "both": { "title": "Both", "type": "number" }, "exception_only": { "title": "Exception Only", "type": "number" }, "neither": { "title": "Neither", "type": "number" }, "success_only": { "title": "Success Only", "type": "number" } }, "required": [ "both", "exception_only", "neither", "success_only" ], "type": "object" }