{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkspaceResponseModel", "title": "WorkspaceResponseModel", "type": "object", "properties": { "id": { "type": "string", "description": "Workspace ID", "example": "99ab6909-f982-410d-9e2f-16971d18ae24" }, "name": { "type": "string", "description": "Workspace Name", "example": "Customer-Journey-Widget" }, "description": { "type": "string", "description": "Workspace Description", "example": "This is for sandbox1 environment" }, "wxccSubscriptionIds": { "type": "array", "description": "List of Wxcc Subscription Ids", "example": [ "task:new", "agent:login" ], "items": { "type": "string" } } }, "description": "Workspace under an organization" }