{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetSharedLineMemberList", "title": "GetSharedLineMemberList", "type": "object", "required": [ "model", "maxLineCount" ], "properties": { "model": { "type": "string", "example": "Business Communicator - PC", "description": "Model name of device." }, "members": { "type": "array", "items": { "$ref": "#/components/schemas/GetSharedLineMemberItem" }, "description": "List of members." }, "maxLineCount": { "type": "number", "minimum": 1, "example": 10, "description": "Maximum number of device ports." } } }