{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AddressStart", "title": "AddressStart", "type": "object", "properties": { "addressStreet": { "type": "string" }, "addressNumber": { "type": "string" }, "postalCode": { "type": "string" }, "addressCity": { "type": "string" }, "state": { "maxLength": 2, "minLength": 0, "type": "string" } } }