• Retrieve all the schemas from current MetaStore instance

    Returns Promise<{
        schemaIdLabel: {};
        schemaLabel: string[];
        schemaLastVersion: {};
    }>

    schemaLabel: array of strings containing the labels for all the avaiable schemas schemaIdLabel: as object with labels as keys and correspondent schema ids (arrays of strings) as values.

    Example

    {"input":["input_schema"], "measurement": ["SEM_schema", "STM_schema"], ... }
    schemaLastVersion: an object containing the schema id as a key and its last avaiable version
    as a value (@example: {'foo_schema': 3, 'bar_schema': 1, ...})

Generated using TypeDoc