@farmart-tech/brave-admin-sdk
    Preparing search index...

    Interface Workspace

    Represents a workspace in the Brave Ship system.

    Workspaces provide isolation for feature flags and configurations, allowing different environments (production, staging, etc.) or teams to manage their flags independently.

    interface Workspace {
        createdAt?: string;
        description?: string;
        id: string;
        name: string;
        updatedAt?: string;
    }
    Index

    Properties

    createdAt?: string

    ISO 8601 timestamp when the workspace was created.

    description?: string

    Optional description of the workspace's purpose.

    id: string

    Unique identifier for the workspace. Cannot be changed after creation.

    Must be lowercase with hyphens or underscores. Reserved IDs: 'global', 'test'

    name: string

    Display name for the workspace. Can be updated after creation.

    updatedAt?: string

    ISO 8601 timestamp when the workspace was last updated.