{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "new_strategy_group_base", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "description": { "type": "string", "nullable": true, "maxLength": 1024 }, "spend_cap_type": { "type": "string", "enum": [ "even", "asap", "no-limit" ], "default": "no-limit" }, "spend_cap_amount": { "type": "number", "format": "float", "nullable": true, "minimum": 0.01, "maximum": 9999999.99 }, "impression_cap_type": { "type": "string", "enum": [ "even", "asap", "no-limit" ], "default": "no-limit" }, "impression_cap_amount": { "type": "integer", "format": "int32", "nullable": true, "minimum": 1 }, "external_identifier": { "type": "string", "nullable": true, "maxLength": 256 } } }