{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Phone", "title": "Phone", "properties": { "cc": { "description": "Country code. Length: 13 characters.", "maxLength": 3, "minLength": 1, "type": "string" }, "subscriber": { "description": "Subscriber number. Maximum length: 15 characters.", "maxLength": 15, "type": "string" } }, "type": "object" }