/** * Tenant-supplied Dataset shape persisted by the Control Plane. */ export declare class DataspaceAppDataset { /** * The unique identifier for the dataset. */ id: string; /** * The identity of the organization that owns this entity. */ organizationIdentity: string; /** * The tenant that owns this dataset, captured from the request context at * write time. Optional — single-tenant nodes (no `TWIN_TENANT_ENABLED`) * register datasets without a tenant context. */ tenantId?: string; /** * The dataspace app that this dataset belongs to. Matches the app's * registered name in `DataspaceAppFactory` (typically the app's URI). */ appId: string; /** * The user-controlled JSON-LD dataset payload. Stored as an * opaque object and validated/populated at publish time. */ dataset: { [key: string]: unknown; }; /** * Creation timestamp (ISO string format). */ dateCreated: string; /** * Last update timestamp (ISO string format). */ dateModified: string; }