{ "$schema": "http://json-schema.org/draft-07/schema#", "description": "Scalar component with integer representation used for a discrete counting value", "type": "object", "allOf": [ { "$ref": "./AbstractSimpleComponent.json" }, { "properties": { "type": { "const": "Count" }, "constraint": { "$ref": "basicTypes.json#/definitions/AllowedValues" }, "nilValues": { "$ref": "basicTypes.json#/definitions/NilValuesInteger" }, "value": { "type": "integer" } }, "required": [ "type", "definition", "label" ] } ] }