import { IDataValueList } from "./data-value-list.interface" import { IFormat } from "./format.interface" export interface IDataSchemeAttribute { code: string controlTypeCode: string dataDomainCode: string dataType: string dataValueList: IDataValueList[] defaultValue: any description: string format: IFormat incrementValue: number mandatoryIndicator: boolean maxValue: number minValue: number name: string orientationTypeCode: string sequence: string updateableIndicator: boolean widthTypeCode: string query?: string placeHolder?: string hiddenIndicator?: boolean }