Represents a list of services that are assigned to a user.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ServiceObject", "title": "ServiceObject", "type": "object", "description": "Represents a list of services that are assigned to a user.", "example": { "services": [ "Anonymous Call Rejection", "Call Forwarding Always", "Call Forwarding Busy", "Call Forwarding No Answer", "Call Notify" ] }, "required": [ "services" ], "properties": { "services": { "type": "array", "items": { "$ref": "#/components/schemas/ServicesEnum" }, "description": "The list of allowed services." } } }