{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StickinessCriteria", "title": "StickinessCriteria", "additionalProperties": false, "properties": { "operator": { "$ref": "#/components/schemas/StickinessOperator" }, "value": { "minimum": 1, "title": "Value", "type": "integer" } }, "required": [ "operator", "value" ], "type": "object" }