export interface ISysviewDataRows {
    /**
     * Each element in the array corresponds to a field name. Their order determines the order of their corresponding value in the Values arrays.
     */
    fields: string[];
    /**
     * Each string is a keyword that indicates the content of each value array element.
     * Fields by default have a single value string, but if the STATUS type keyword is
     * specified on the request, a string representing the status of that field also appears in the value array.
     */
    fieldProperties: string[];
    /**
     * The first dimension represents a row, the second dimension represents the fields in the rows,
     * and the third dimension represents the content of the field.
     * The content will only have a single string which represents the fields value.
     * If STATUS is specified as a type, then each content array will have a second string representing the status of that field.
     */
    values: string[][][];
}
