{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallBlockNumberPost", "title": "CallBlockNumberPost", "type": "object", "description": "Request object for adding a phone number to the user's call block list.", "example": { "phoneNumber": "+19075552859" }, "required": [ "phoneNumber" ], "properties": { "phoneNumber": { "type": "string", "example": "+12025551212", "description": "Phone number which is blocked by user." } } }