{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ab-tasty/refs/heads/main/json-schema/decision-api-flag-schema.json", "title": "Flag", "description": "Flag schema from AB Tasty Decision API", "type": "object", "properties": { "value": { "oneOf": [ { "type": "object" }, { "type": "string" }, { "type": "number" }, { "type": "boolean" } ], "description": "Value of the flag" }, "metadata": { "$ref": "#/components/schemas/FlagMetadata" } } }