Interface Schema

interface Schema {
    annotations?: any[];
    cubes?: Cube[];
    dimensions?: Property[];
    entitySets?: {
        [key: string]: EntitySet;
    };
    functions?: any[];
    indicators?: Indicator[];
    name: string;
    virtualCubes?: any[];
}

Properties

annotations?: any[]
cubes?: Cube[]

Semantic Model Cubes

dimensions?: Property[]

Semantic Model Dimensions

entitySets?: {
    [key: string]: EntitySet;
}

Runtime EntitySet

Type declaration

functions?: any[]
indicators?: Indicator[]
name: string
virtualCubes?: any[]

Virtual Cubes

Generated using TypeDoc