{ "properties": { "dataSegmentation": { "description": "Information about data segment criteria.", "title": "Data segmentation", "type": "object", "items": { "$ref": "#/definitions/DataSegmentation" } } }, "definitions": { "DataSegmentation": { "description": "Information about data segment.", "properties": { "id": { "title": "ID", "description": "An identifier for this data segment.", "type": [ "string", "integer" ], "minLength": 1 }, "criteria": { "title": "The criteria.", "description": "The criteria for this data segment.", "type": "array", "items": { "type": "string" }, "uniqueItems": true } }, "type": "object", "title": "Data segmentation", "required": [ "id" ] } } }