{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DistributionRequest", "title": "DistributionRequest", "type": "object", "properties": { "dry_run": { "type": "boolean", "default": false }, "auto_create_missing_repositories": { "type": "boolean", "default": false }, "distribution_rules": { "type": "array", "items": { "type": "object", "properties": { "site_name": { "type": "string" }, "city_name": { "type": "string" }, "country_codes": { "type": "array", "items": { "type": "string" } } } } } }, "required": [ "distribution_rules" ] }