{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetUserMSTeamsSettingsObject", "title": "GetUserMSTeamsSettingsObject", "type": "object", "required": [ "personId", "orgId", "settings" ], "properties": { "personId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8xMWEzZjk5MC1hNjg5LTQ3N2QtYmU2Yi03MTIwMDI1ZDhhYmI", "description": "Unique identifier for the person." }, "orgId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi84NzU2ZjkwZS1iZDg4LTRhOTQtOGZiZC0wMzM2NzhmMDU5ZjM", "description": "Unique identifier for the organization in which the person resides." }, "settings": { "type": "array", "items": { "$ref": "#/components/schemas/SettingsObject" }, "description": "Array of `SettingsObject`." } } }