{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SwishInfo", "title": "SwishInfo", "properties": { "swishNumber": { "description": "Swish number. Format: 10 digits without spaces. For example, **1231111111**.", "maxLength": 10, "minLength": 10, "type": "string" } }, "required": [ "swishNumber" ], "type": "object" }