{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ModifyEndpointObject", "title": "ModifyEndpointObject", "type": "object", "description": "Request Payload to update an endpoint.", "example": { "mobilitySettings": { "alertingEnabled": true } }, "required": [ "mobilitySettings" ], "properties": { "mobilitySettings": { "type": "object", "required": [ "alertingEnabled" ], "properties": { "alertingEnabled": { "type": "boolean", "example": true, "description": "If `true`, alerting is enabled for the endpoint." } }, "description": "Mobility settings of the endpoint." } } }