{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormFieldTelConfig", "title": "FormFieldTelConfig", "type": "object", "allOf": [ { "type": "object", "additionalProperties": true }, { "type": "object", "additionalProperties": true }, { "type": "object", "additionalProperties": true } ], "additionalProperties": false, "properties": { "default_value": { "type": "string" }, "placeholder": { "type": "string", "maxLength": 500 }, "min_length": { "type": "integer", "minimum": 1 }, "max_length": { "type": "integer", "minimum": 1 }, "country_picker": { "type": "boolean" }, "strings": { "$ref": "#/components/schemas/FormFieldTelConfigStrings" } } }