{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Numbers", "title": "Numbers", "type": "object", "description": "Phone number details in the call block list.", "example": { "id": "KzE5OTc2NTQzNDE1", "phoneNumber": "+19976543415" }, "required": [ "id", "phoneNumber" ], "properties": { "id": { "type": "string", "example": "KzEyMDI1NTUxMjEy", "description": "Unique identifier of the phone number." }, "phoneNumber": { "type": "string", "example": "+12025551212", "description": "Phone number which is blocked by user." } } }