{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "campaign_viewability", "type": "object", "nullable": true, "required": [ "vendor_id", "sample_rate", "type" ], "properties": { "vendor_id": { "type": "integer", "format": "int32", "example": 34 }, "type": { "type": "string", "enum": [ "AUTO_TAG", "BYOV" ] }, "sample_rate": { "type": "number", "format": "float", "minimum": 0, "maximum": 1 } } }