{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LocalEvaluationResponse", "title": "LocalEvaluationResponse", "type": "object", "properties": { "flags": { "type": "array", "items": { "$ref": "#/components/schemas/MinimalFeatureFlag" } }, "group_type_mapping": { "type": "object", "additionalProperties": { "type": "string" } }, "cohorts": { "type": "object", "additionalProperties": true, "description": "Cohort definitions keyed by cohort ID. Each value is a property group structure with 'type' (OR/AND) and 'values' (array of property groups or property filters)." } }, "required": [ "cohorts", "flags", "group_type_mapping" ] }