{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "", "type": "object", "properties": { "target_value_id": { "type": "integer" }, "name": { "type": "string", "description": "available only when extended" }, "full_path": { "type": "string", "description": "available only when extended", "example": "United States >> New York >> New York" }, "code": { "type": "string", "enum": [ "DMAX", "REGN", "CITY", "COUNTRY" ] }, "provider_code": { "type": "string", "description": "provider/source code from the underlying target value (e.g. \"US\", \"DMA-501\"); available only when extended" }, "target_value": { "type": "integer", "description": "available only when extended" } }, "required": [ "target_value_id" ] }