/** * @example * { * id: "HydraDoc1234", * database: "acme_corp", * collection: "team_docs", * tenantId: "tenant_1234", * subTenantId: "sub_tenant_4567" * } */ export interface StatusContextRequest { /** Single source ID */ id?: string; /** One or more source IDs */ ids?: string | string[]; /** Database (canonical name for the tenant scope) */ database: string; /** Collection (canonical name for the sub-tenant scope) */ collection?: string; /** Deprecated alias for database */ tenantId?: string; /** Deprecated alias for collection */ subTenantId?: string; }