mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-06-09 23:05:12 +02:00
Add a new `list-my-workspaces` operation so non-admin users can discover which workspaces they have access to. For OSS IAM, regular users see their home workspace; admins see all workspaces. Also add the full IAM service to both OpenAPI and AsyncAPI specs — it was previously undocumented despite being a first-class service on both HTTP and WebSocket interfaces.
23 lines
553 B
YAML
23 lines
553 B
YAML
type: object
|
|
description: |
|
|
Workspace creation/update fields. Used with `create-workspace` and
|
|
`update-workspace`.
|
|
properties:
|
|
id:
|
|
type: string
|
|
description: |
|
|
Workspace identifier. Required for all workspace operations.
|
|
Immutable after creation.
|
|
examples:
|
|
- default
|
|
- production
|
|
name:
|
|
type: string
|
|
description: Human-readable workspace name.
|
|
examples:
|
|
- Default Workspace
|
|
- Production
|
|
enabled:
|
|
type: boolean
|
|
description: Whether the workspace is enabled.
|
|
default: true
|