interface LayerReconciliationReport {
    checks: ReconciliationCheckResult[];
    countDelta: number;
    extraInTargetAttributeKeys: string[];
    layerId: number;
    missingInTargetAttributeKeys: string[];
    passed: boolean;
    sampleSize: number;
    sourceAttributeKeys: string[];
    sourceBaseUrl: string;
    sourceFeatureCount: number;
    sourceGeometryValidityRatio: number;
    sourceServiceId: string;
    targetAttributeKeys: string[];
    targetBaseUrl: string;
    targetFeatureCount: number;
    targetGeometryValidityRatio: number;
    targetServiceId: string;
}

Properties

checks: ReconciliationCheckResult[]
countDelta: number
extraInTargetAttributeKeys: string[]
layerId: number
missingInTargetAttributeKeys: string[]
passed: boolean
sampleSize: number
sourceAttributeKeys: string[]
sourceBaseUrl: string
sourceFeatureCount: number
sourceGeometryValidityRatio: number
sourceServiceId: string
targetAttributeKeys: string[]
targetBaseUrl: string
targetFeatureCount: number
targetGeometryValidityRatio: number
targetServiceId: string