{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://enterprise.spectrum.com/schemas/serviceability.json", "title": "Spectrum Enterprise Serviceability", "type": "object", "required": ["address", "isServiceable"], "properties": { "address": { "type": "object", "properties": { "street": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" }, "postalCode": { "type": "string" }, "country": { "type": "string" } } }, "isServiceable": { "type": "boolean" }, "availableProducts": { "type": "array", "items": { "type": "string" } } } }