Interface AppDataSchema

interface AppDataSchema {
    schema: any;
    code?: string;
    archivedAt?: string;
    revision?: string;
    id: string;
    name: string;
    key: string;
    state?: WorkspaceElementState;
    errors?: ErrorData[];
}

Hierarchy (view full)

Properties

schema: any
code?: string
archivedAt?: string
revision?: string
id: string
name: string
key: string
errors?: ErrorData[]