diff --git a/pom.xml b/pom.xml
index 4df96d9010f84bbe9a0536f1088c6a04b28f04d7..9bbfdb93ace42edc96aa9c40bc1bb0f48ba4ac6a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -32,7 +32,7 @@
     <owasp.version>10.0.4</owasp.version>
     <swagger.version>2.2.23</swagger.version>
     <!-- overwrite from spring-boot-dependencies -->
-    <selenium.version>4.24.0</selenium.version>
+    <selenium.version>4.25.0</selenium.version>
     <!-- project properties -->
     <base.package.name>de.latlon.xplanbox</base.package.name>
     <distribution.repo.id>gitlab-maven</distribution.repo.id>
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/ValidationReportBuilder.java b/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/ValidationReportBuilder.java
index 83dfc0973c6aef361515ac47ce47f5debcd6c31d..7bd5191a7faf64ea2ea588618da89d185fd78afb 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/ValidationReportBuilder.java
+++ b/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/ValidationReportBuilder.java
@@ -20,6 +20,7 @@
  */
 package de.latlon.xplanbox.api.commons;
 
+import static de.latlon.xplan.validator.report.geojson.GeoJsonBuilder.createGeoJsonFailures;
 import static de.latlon.xplanbox.api.commons.DateConverter.convertToLocalDateTime;
 import static de.latlon.xplanbox.api.commons.v1.model.VersionEnum.fromXPlanVersion;
 import static de.latlon.xplanbox.api.commons.v2.model.ValidationRuleLevel.ERROR;
@@ -40,9 +41,11 @@ import java.util.stream.Collectors;
 import de.latlon.xplan.validator.geometric.report.GeometricValidatorResult;
 import de.latlon.xplan.validator.geometric.result.GeometricValidationRule;
 import de.latlon.xplan.validator.planinfo.PlanInfo;
+import de.latlon.xplan.validator.report.ReportGenerationException;
 import de.latlon.xplan.validator.report.SkipCode;
 import de.latlon.xplan.validator.report.ValidatorReport;
 import de.latlon.xplan.validator.report.ValidatorResult;
+import de.latlon.xplan.validator.report.geojson.GeoJsonGeometryBuilder;
 import de.latlon.xplan.validator.report.reference.ExternalReferenceReport;
 import de.latlon.xplan.validator.semantic.report.InvalidFeaturesResult;
 import de.latlon.xplan.validator.semantic.report.SemanticValidatorResult;
@@ -101,7 +104,7 @@ public class ValidationReportBuilder {
 		return this;
 	}
 
-	public ValidationReport build() {
+	public ValidationReport build() throws ReportGenerationException {
 		requireNonNull(validatorReport);
 		return new de.latlon.xplanbox.api.commons.v2.model.ValidationReport().filename(filename)
 			.validationName(validatorReport.getValidationName())
@@ -109,7 +112,8 @@ public class ValidationReportBuilder {
 			.status(status())
 			.wmsUrl(wmsUrl)
 			.syntaktisch(syntaktischResult())
-			.plans(validationReportPlans());
+			.plans(validationReportPlans())
+			.geomfindings(createGeoJsonFailures(validatorReport));
 	}
 
 	private List<ValidationReportPlan> validationReportPlans() {
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReport.java b/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReport.java
index d0a257fa17c2496a83387dba81d122cd87d4479d..a1480be20af37fe836a464cd3919fbf98b7db583 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReport.java
+++ b/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReport.java
@@ -28,6 +28,7 @@ import java.util.ArrayList;
 import java.util.List;
 
 import com.fasterxml.jackson.annotation.JsonInclude;
+import de.latlon.xplan.validator.report.geojson.model.FeatureCollection;
 import io.swagger.v3.oas.annotations.media.Schema;
 import jakarta.validation.Valid;
 import jakarta.xml.bind.annotation.XmlAccessType;
@@ -57,6 +58,8 @@ public class ValidationReport {
 
 	private @Valid List<ValidationReportPlan> plans = new ArrayList<>();
 
+	private @Valid FeatureCollection geomfindings;
+
 	public ValidationReport filename(String filename) {
 		this.filename = filename;
 		return this;
@@ -169,6 +172,19 @@ public class ValidationReport {
 		this.plans = plans;
 	}
 
+	public ValidationReport geomfindings(FeatureCollection geomfindings) {
+		this.geomfindings = geomfindings;
+		return this;
+	}
+
+	public @Valid FeatureCollection getGeomfindings() {
+		return geomfindings;
+	}
+
+	public void setGeomfindings(@Valid FeatureCollection geomfindings) {
+		this.geomfindings = geomfindings;
+	}
+
 	@Override
 	public String toString() {
 		StringBuilder sb = new StringBuilder();
@@ -180,6 +196,7 @@ public class ValidationReport {
 		sb.append("    wmsUrl: ").append(toIndentedString(wmsUrl)).append("\n");
 		sb.append("    syntaktisch: ").append(toIndentedString(syntaktisch)).append("\n");
 		sb.append("    plans: ").append(toIndentedString(plans)).append("\n");
+		sb.append("    geomfindings: ").append(toIndentedString(geomfindings)).append("\n");
 		sb.append("}");
 		return sb.toString();
 	}
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReportValidationResultGeometrischRuleFinding.java b/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReportValidationResultGeometrischRuleFinding.java
index 11190e3693c62196423611266d6afad976241f0c..f9f78953a56b7796744d9d3bbe03d916a20aef7d 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReportValidationResultGeometrischRuleFinding.java
+++ b/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReportValidationResultGeometrischRuleFinding.java
@@ -3,7 +3,7 @@ package de.latlon.xplanbox.api.commons.v2.model;
 import java.util.List;
 import java.util.Objects;
 
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry;
+import de.latlon.xplan.validator.report.geojson.model.Geometry;
 import jakarta.validation.Valid;
 
 /**
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Geometry.java b/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Geometry.java
deleted file mode 100644
index b4a51c422aa135f3f69086b8cb18c865c14220b1..0000000000000000000000000000000000000000
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Geometry.java
+++ /dev/null
@@ -1,147 +0,0 @@
-/*
- * GeoJSON format
- * This document defines the GeoJSON format as an OpenAPI. It contains the definitions for 'Feature' object and 'FeatureCollection' objects, as well as the definitions for all 'Geometry' objects. It conforms with the 'RFC-7946' standard from IETF (August 2016 version) Kudos to @bubbobne and @idkw whose code helped me not start from scratch https://gist.github.com/bubbobne/fe5f2db65acf039be6a9fd92fc9c7233 
- *
- * OpenAPI spec version: 1.0.1
- * Contact: zitoun@gmail.com
- *
- * NOTE: This class is auto generated by the swagger code generator program.
- * https://github.com/swagger-api/swagger-codegen.git
- * Do not edit the class manually.
- */
-
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
-
-import java.util.Objects;
-
-import com.fasterxml.jackson.annotation.JsonCreator;
-import com.fasterxml.jackson.annotation.JsonProperty;
-import com.fasterxml.jackson.annotation.JsonSubTypes;
-import com.fasterxml.jackson.annotation.JsonTypeInfo;
-import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.v3.oas.annotations.media.Schema;
-import jakarta.annotation.Generated;
-import jakarta.validation.constraints.NotNull;
-
-/**
- * Abstract type for all GeoJSon object except Feature and FeatureCollection. Generated
- * from OpenAPI document * https://app.swaggerhub.com/apis/OlivierMartineau/GeoJSON/1.0.1
- *
- * @since 8.0
- */
-@Schema(description = "Abstract type for all GeoJSon object except Feature and FeatureCollection ")
-@Generated(value = "io.swagger.codegen.v3.generators.java.JavaJerseyServerCodegen",
-		date = "2024-09-09T05:36:15.967036504Z[GMT]")
-@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "type")
-@JsonSubTypes({ @JsonSubTypes.Type(value = GeometryCollection.class, name = "GeometryCollection"),
-		@JsonSubTypes.Type(value = Point.class, name = "Point"),
-		@JsonSubTypes.Type(value = LineString.class, name = "LineString"),
-		@JsonSubTypes.Type(value = Polygon.class, name = "Polygon"),
-		@JsonSubTypes.Type(value = MultiPoint.class, name = "MultiPoint"),
-		@JsonSubTypes.Type(value = MultiLineString.class, name = "MultiLineString"),
-		@JsonSubTypes.Type(value = MultiPolygon.class, name = "MultiPolygon") })
-public class Geometry {
-
-	/**
-	 * Gets or Sets type
-	 */
-	public enum TypeEnum {
-
-		POINT("Point"),
-
-		MULTIPOINT("MultiPoint"),
-
-		LINESTRING("LineString"),
-
-		MULTILINESTRING("MultiLineString"),
-
-		POLYGON("Polygon"),
-
-		MULTIPOLYGON("MultiPolygon"),
-
-		GEOMETRYCOLLECTION("GeometryCollection");
-
-		private String value;
-
-		TypeEnum(String value) {
-			this.value = value;
-		}
-
-		@Override
-		@JsonValue
-		public String toString() {
-			return String.valueOf(value);
-		}
-
-		@JsonCreator
-		public static TypeEnum fromValue(String text) {
-			for (TypeEnum b : TypeEnum.values()) {
-				if (String.valueOf(b.value).equals(text)) {
-					return b;
-				}
-			}
-			return null;
-		}
-
-	}
-
-	@JsonProperty("type")
-	private TypeEnum type = null;
-
-	public Geometry type(TypeEnum type) {
-		this.type = type;
-		return this;
-	}
-
-	/**
-	 * Get type
-	 * @return type
-	 **/
-	@JsonProperty("type")
-	@Schema(required = true, description = "")
-	@NotNull
-	public TypeEnum getType() {
-		return type;
-	}
-
-	public void setType(TypeEnum type) {
-		this.type = type;
-	}
-
-	@Override
-	public boolean equals(Object o) {
-		if (this == o) {
-			return true;
-		}
-		if (o == null || getClass() != o.getClass()) {
-			return false;
-		}
-		return true;
-	}
-
-	@Override
-	public int hashCode() {
-		return Objects.hash(super.hashCode());
-	}
-
-	@Override
-	public String toString() {
-		StringBuilder sb = new StringBuilder();
-		sb.append("class Geometry {\n");
-		sb.append("    ").append(toIndentedString(super.toString())).append("\n");
-		sb.append("}");
-		return sb.toString();
-	}
-
-	/**
-	 * Convert the given object to string with each line indented by 4 spaces (except the
-	 * first line).
-	 */
-	private String toIndentedString(Object o) {
-		if (o == null) {
-			return "null";
-		}
-		return o.toString().replace("\n", "\n    ");
-	}
-
-}
diff --git a/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/ValidationReportBuilderTest.java b/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/ValidationReportBuilderTest.java
index 22082eab14c5d094015942c9dcb7c85c0b7ca597..e3063fdda458c930672334fa775e230901663d0a 100644
--- a/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/ValidationReportBuilderTest.java
+++ b/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/ValidationReportBuilderTest.java
@@ -46,6 +46,7 @@ import de.latlon.xplan.validator.geometric.result.GeometricValidationFindingLeve
 import de.latlon.xplan.validator.geometric.result.GeometricValidationRule;
 import de.latlon.xplan.validator.planinfo.PlanInfo;
 import de.latlon.xplan.validator.planinfo.PlanInfoReport;
+import de.latlon.xplan.validator.report.ReportGenerationException;
 import de.latlon.xplan.validator.report.SkipCode;
 import de.latlon.xplan.validator.report.ValidatorReport;
 import de.latlon.xplan.validator.report.reference.ExternalReferenceReport;
@@ -72,14 +73,14 @@ class ValidationReportBuilderTest {
 	}
 
 	@Test
-	void verifyThat_Builder_ReturnsInstance() {
+	void verifyThat_Builder_ReturnsInstance() throws ReportGenerationException {
 		ValidatorReport sourceReport = mock(ValidatorReport.class);
 		ValidationReport report = new ValidationReportBuilder().validatorReport(sourceReport).build();
 		assertNotNull(report);
 	}
 
 	@Test
-	void verifyThat_Builder_AddsFilename() {
+	void verifyThat_Builder_AddsFilename() throws ReportGenerationException {
 		ValidatorReport sourceReport = mock(ValidatorReport.class);
 		ValidationReport report = new ValidationReportBuilder().validatorReport(sourceReport)
 			.filename("test.xml")
@@ -88,7 +89,7 @@ class ValidationReportBuilderTest {
 	}
 
 	@Test
-	void verifyThat_Builder_AddsVersion() {
+	void verifyThat_Builder_AddsVersion() throws ReportGenerationException {
 		ValidatorReport sourceReport = createSourceReport();
 		ValidationReport report = new ValidationReportBuilder().validatorReport(sourceReport).build();
 		assertThat(report.getPlans().size()).isEqualTo(1);
@@ -96,7 +97,7 @@ class ValidationReportBuilderTest {
 	}
 
 	@Test
-	void verifyThat_Builder_AddsWmsUrl() throws URISyntaxException {
+	void verifyThat_Builder_AddsWmsUrl() throws URISyntaxException, ReportGenerationException {
 		ValidatorReport sourceReport = mock(ValidatorReport.class);
 		ValidationReport report = new ValidationReportBuilder().validatorReport(sourceReport)
 			.wmsUrl(new URI("file://here"))
@@ -105,7 +106,7 @@ class ValidationReportBuilderTest {
 	}
 
 	@Test
-	void verifyThat_Builder_AddRasterEvaluationResult_v1() throws URISyntaxException {
+	void verifyThat_Builder_AddRasterEvaluationResult_v1() throws URISyntaxException, ReportGenerationException {
 		ValidatorReport sourceReport = mockSourceReportWithRasterEvaluation();
 
 		ValidationReport report = new ValidationReportBuilder().validatorReport(sourceReport)
@@ -118,7 +119,7 @@ class ValidationReportBuilderTest {
 	}
 
 	@Test
-	void verifyThat_Builder_AddRasterEvaluationResult_v2() throws URISyntaxException {
+	void verifyThat_Builder_AddRasterEvaluationResult_v2() throws URISyntaxException, ReportGenerationException {
 		ValidatorReport sourceReport = mockSourceReportWithRasterEvaluation();
 
 		de.latlon.xplanbox.api.commons.v2.model.ValidationReport report = new ValidationReportBuilder()
@@ -132,7 +133,7 @@ class ValidationReportBuilderTest {
 	}
 
 	@Test
-	void verifyThat_Builder_ReturnsCompleteInstance() throws URISyntaxException {
+	void verifyThat_Builder_ReturnsCompleteInstance() throws URISyntaxException, ReportGenerationException {
 		ValidatorReport sourceReport = mock(ValidatorReport.class);
 		ValidationReport report = new ValidationReportBuilder().validatorReport(sourceReport)
 			.filename("test.xml")
@@ -143,7 +144,7 @@ class ValidationReportBuilderTest {
 	}
 
 	@Test
-	void verifyThat_Builder_statusSemanticError() throws URISyntaxException {
+	void verifyThat_Builder_statusSemanticError() throws URISyntaxException, ReportGenerationException {
 		ValidatorReport sourceReport = createSourceReport();
 		SyntacticValidatorResult syntacticValidatorResult = new SyntacticValidatorResult(emptyList(), null);
 
@@ -174,6 +175,7 @@ class ValidationReportBuilderTest {
 
 		assertThat(report.getStatus()).isEqualTo(COMPLETED);
 		assertThat(report.getPlans().size()).isEqualTo(1);
+		assertThat(report.getGeomfindings()).isNull();
 
 		assertThat(report.getPlans().get(0).getValid()).isFalse();
 		assertThat(report.getPlans().get(0).getValidationResult().getSemantisch().getStatus()).isEqualTo(COMPLETED);
@@ -200,7 +202,7 @@ class ValidationReportBuilderTest {
 	}
 
 	@Test
-	void verifyThat_Builder_statusGeometricError() throws URISyntaxException {
+	void verifyThat_Builder_statusGeometricError() throws URISyntaxException, ReportGenerationException {
 		ValidatorReport sourceReport = createSourceReport();
 		SyntacticValidatorResult syntacticValidatorResult = new SyntacticValidatorResult(emptyList(), null);
 
@@ -231,6 +233,7 @@ class ValidationReportBuilderTest {
 
 		assertThat(report.getStatus()).isEqualTo(COMPLETED);
 		assertThat(report.getPlans().size()).isEqualTo(1);
+		assertThat(report.getGeomfindings()).isNotNull();
 
 		assertThat(report.getPlans().get(0).getValidationResult().getSemantisch().getStatus()).isEqualTo(COMPLETED);
 		assertThat(report.getPlans().get(0).getValidationResult().getSemantisch().getValid()).isTrue();
@@ -262,7 +265,7 @@ class ValidationReportBuilderTest {
 	}
 
 	@Test
-	void verifyThat_Builder_statusSkip() {
+	void verifyThat_Builder_statusSkip() throws ReportGenerationException {
 		ValidatorReport sourceReport = createSourceReport();
 		SyntacticValidatorResult syntacticValidatorResult = new SyntacticValidatorResult(emptyList(), null);
 		SemanticValidatorResult semanticValidatorResult = new SemanticValidatorResult(SkipCode.SKIPPED);
@@ -282,12 +285,13 @@ class ValidationReportBuilderTest {
 
 		assertThat(report.getStatus()).isEqualTo(COMPLETED);
 		assertThat(report.getPlans().size()).isEqualTo(1);
+		assertThat(report.getGeomfindings()).isNull();
 		assertThat(report.getPlans().get(0).getValidationResult().getSemantisch().getStatus()).isEqualTo(SKIPPED);
 		assertThat(report.getPlans().get(0).getValidationResult().getGeometrisch().getStatus()).isEqualTo(SKIPPED);
 	}
 
 	@Test
-	void verifyThat_Builder_statusSyntaxError() throws URISyntaxException {
+	void verifyThat_Builder_statusSyntaxError() throws URISyntaxException, ReportGenerationException {
 		ValidatorReport sourceReport = createSourceReportWithSyntaxError();
 
 		ValidationReport report = new ValidationReportBuilder().validatorReport(sourceReport)
@@ -297,13 +301,7 @@ class ValidationReportBuilderTest {
 
 		assertThat(report.getStatus()).isEqualTo(TERMINATED_WITH_ERRORS);
 		assertThat(report.getPlans().size()).isEqualTo(0);
-		// assertThat(report.getPlans().get(0).getValidationResult().getSyntaktisch().getStatus()).isEqualTo(COMPLETED);
-		// assertThat(report.getPlans().get(0).getValidationResult().getSemantisch().getStatus())
-		// .isEqualTo(TERMINATED_WITH_ERRORS);
-		// assertThat(report.getPlans().get(0).getValidationResult().getSemantisch().getValid()).isNull();
-		// assertThat(report.getPlans().get(0).getValidationResult().getGeometrisch().getStatus())
-		// .isEqualTo(TERMINATED_WITH_ERRORS);
-		// assertThat(report.getPlans().get(0).getValidationResult().getGeometrisch().getValid()).isNull();
+		assertThat(report.getGeomfindings()).isNull();
 
 		de.latlon.xplanbox.api.commons.v1.model.ValidationReport reportV1 = ValidationReportConverter
 			.convertToV1(report);
@@ -313,7 +311,7 @@ class ValidationReportBuilderTest {
 
 	@Disabled("Improve test: sourceReport does not contain an error!")
 	@Test
-	void verifyThat_Builder_statusError() throws URISyntaxException {
+	void verifyThat_Builder_statusError() throws URISyntaxException, ReportGenerationException {
 		ValidatorReport sourceReport = createSourceReport();
 
 		ValidationReport report = new ValidationReportBuilder().validatorReport(sourceReport)
@@ -322,6 +320,7 @@ class ValidationReportBuilderTest {
 			.build();
 
 		assertThat(report.getStatus()).isEqualTo(TERMINATED_REASON_UNKNOWN);
+		assertThat(report.getGeomfindings()).isNull();
 		assertThat(report.getSyntaktisch()).isEqualTo(TERMINATED_REASON_UNKNOWN);
 		assertThat(report.getPlans().size()).isEqualTo(1);
 		assertThat(report.getPlans().get(0).getValidationResult().getSemantisch().getStatus())
diff --git a/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/ValidationReportConverterTest.java b/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/ValidationReportConverterTest.java
index b4599ef7e2697e7ec27e6146333942bd0b789fc4..42bd7bf8ff97ee72437c8ae3e2d2f2b008d4ac33 100644
--- a/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/ValidationReportConverterTest.java
+++ b/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/ValidationReportConverterTest.java
@@ -56,9 +56,9 @@ import de.latlon.xplanbox.api.commons.v2.model.ValidationReportValidationResultS
 import de.latlon.xplanbox.api.commons.v2.model.ValidationReportValidationResultSemantischRuleFinding;
 import de.latlon.xplanbox.api.commons.v2.model.ValidationReportValidationResultSemantischWithRulesMetadata;
 import de.latlon.xplanbox.api.commons.v2.model.ValidationReportValidationResultSyntaktisch;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Point;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Position;
+import de.latlon.xplan.validator.report.geojson.model.Geometry;
+import de.latlon.xplan.validator.report.geojson.model.Point;
+import de.latlon.xplan.validator.report.geojson.model.Position;
 import org.junit.jupiter.api.Test;
 
 /**
diff --git a/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReportTest.java b/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReportTest.java
index 3c9fad1fe27737ceccef26e6e074c3b1977cac76..5985ad4f1fbcb7b0848a931f6cf62e8d71f48dee 100644
--- a/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReportTest.java
+++ b/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/v2/model/ValidationReportTest.java
@@ -28,9 +28,9 @@ import de.latlon.xplanbox.api.commons.ValidationReportConverter;
 import de.latlon.xplanbox.api.commons.v1.model.ExternalReferenceResult;
 import de.latlon.xplanbox.api.commons.v1.model.RasterEvaluationResult;
 import de.latlon.xplanbox.api.commons.v1.model.RulesMetadata;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Point;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Position;
+import de.latlon.xplan.validator.report.geojson.model.Geometry;
+import de.latlon.xplan.validator.report.geojson.model.Point;
+import de.latlon.xplan.validator.report.geojson.model.Position;
 import org.apache.commons.lang3.StringUtils;
 import org.junit.jupiter.api.Test;
 
diff --git a/xplan-core/xplan-core-commons/src/main/java/de/latlon/xplan/validator/web/shared/ArtifactType.java b/xplan-core/xplan-core-commons/src/main/java/de/latlon/xplan/validator/web/shared/ReportFormatType.java
similarity index 95%
rename from xplan-core/xplan-core-commons/src/main/java/de/latlon/xplan/validator/web/shared/ArtifactType.java
rename to xplan-core/xplan-core-commons/src/main/java/de/latlon/xplan/validator/web/shared/ReportFormatType.java
index 3a8fdf5969c7cf36be8d7f668e7643f3e85ecc6b..7a79f180ee128205bb957382a95801d8e948f97d 100644
--- a/xplan-core/xplan-core-commons/src/main/java/de/latlon/xplan/validator/web/shared/ArtifactType.java
+++ b/xplan-core/xplan-core-commons/src/main/java/de/latlon/xplan/validator/web/shared/ReportFormatType.java
@@ -23,8 +23,8 @@ package de.latlon.xplan.validator.web.shared;
 /**
  * @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a>
  */
-public enum ArtifactType {
+public enum ReportFormatType {
 
-	HTML, PDF
+	HTML, PDF, GEOJSON
 
 }
diff --git a/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/ValidatorWebCommonsMessages.java b/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/ValidatorWebCommonsMessages.java
index c00a773e3ef9cd5721d4e757aa3437ed619e3f67..ce10d7235eda5b82d9fcfe9ace4e40bcd915a54f 100644
--- a/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/ValidatorWebCommonsMessages.java
+++ b/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/ValidatorWebCommonsMessages.java
@@ -92,6 +92,8 @@ public interface ValidatorWebCommonsMessages extends Messages {
 
 	String reportDownloadPdf();
 
+	String reportDownloadGeoJson();
+
 	String reportDownloadGeometryErrors();
 
 	String reportDownloadButtonTitle();
diff --git a/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/report/ReportDownloadPanel.java b/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/report/ReportDownloadPanel.java
index 1336f960225cc0f3319b50c5174f75a2c20e5742..f920e3ee2c761a79b97595639f13b5ebd802185f 100644
--- a/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/report/ReportDownloadPanel.java
+++ b/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/report/ReportDownloadPanel.java
@@ -20,6 +20,13 @@
  */
 package de.latlon.xplanbox.core.gwt.commons.client.report;
 
+import static de.latlon.xplan.validator.web.shared.ReportFormatType.GEOJSON;
+import static de.latlon.xplan.validator.web.shared.ReportFormatType.HTML;
+import static de.latlon.xplan.validator.web.shared.ReportFormatType.PDF;
+
+import java.util.ArrayList;
+import java.util.List;
+
 import com.google.gwt.core.client.GWT;
 import com.google.gwt.event.dom.client.ClickEvent;
 import com.google.gwt.event.dom.client.ClickHandler;
@@ -30,16 +37,10 @@ import com.google.gwt.user.client.ui.CheckBox;
 import com.google.gwt.user.client.ui.Label;
 import com.google.gwt.user.client.ui.VerticalPanel;
 import com.google.gwt.user.client.ui.Widget;
-import de.latlon.xplan.validator.web.shared.ArtifactType;
+import de.latlon.xplan.validator.web.shared.ReportFormatType;
 import de.latlon.xplanbox.core.gwt.commons.client.ValidatorWebCommonsMessages;
 import de.latlon.xplanbox.core.gwt.commons.shared.ValidationSummary;
 
-import java.util.ArrayList;
-import java.util.List;
-
-import static de.latlon.xplan.validator.web.shared.ArtifactType.HTML;
-import static de.latlon.xplan.validator.web.shared.ArtifactType.PDF;
-
 /**
  * Encapulates the download options.
  *
@@ -54,6 +55,8 @@ public class ReportDownloadPanel extends CaptionPanel {
 
 	private final CheckBox pdfCheckBox = new CheckBox(messages.reportDownloadPdf());
 
+	private final CheckBox geojsonCheckBox = new CheckBox(messages.reportDownloadGeoJson());
+
 	private final ReportUrlBuilder urlBuilder = new ReportUrlBuilder();
 
 	private ValidationSummary validationSummary;
@@ -72,7 +75,7 @@ public class ReportDownloadPanel extends CaptionPanel {
 		mainPanel.add(pdfCheckBox);
 
 		mainPanel.add(createGeometryErrorSeperator());
-
+		mainPanel.add(geojsonCheckBox);
 		mainPanel.add(createDownloadButton());
 
 		setContentWidget(mainPanel);
@@ -88,9 +91,9 @@ public class ReportDownloadPanel extends CaptionPanel {
 		download.addClickHandler(new ClickHandler() {
 			@Override
 			public void onClick(ClickEvent event) {
-				List<ArtifactType> selectedArtifacts = getSelectedArtifacts();
-				if (selectedArtifacts.size() > 0) {
-					String zipUrl = urlBuilder.createZipUrl(validationSummary, selectedArtifacts);
+				List<ReportFormatType> selectedReportFormats = getSelectedReportFormats();
+				if (selectedReportFormats.size() > 0) {
+					String zipUrl = urlBuilder.createZipUrl(validationSummary, selectedReportFormats);
 					GWT.log("Requested URL to receive the zip file with reports: " + zipUrl);
 					Window.open(zipUrl, "", "");
 				}
@@ -102,13 +105,15 @@ public class ReportDownloadPanel extends CaptionPanel {
 		return download;
 	}
 
-	private List<ArtifactType> getSelectedArtifacts() {
-		List<ArtifactType> selectedArtifacts = new ArrayList<ArtifactType>();
+	private List<ReportFormatType> getSelectedReportFormats() {
+		List<ReportFormatType> selectedReportFormats = new ArrayList<ReportFormatType>();
 		if (htmlCheckBox.getValue())
-			selectedArtifacts.add(HTML);
+			selectedReportFormats.add(HTML);
 		if (pdfCheckBox.getValue())
-			selectedArtifacts.add(PDF);
-		return selectedArtifacts;
+			selectedReportFormats.add(PDF);
+		if (geojsonCheckBox.getValue())
+			selectedReportFormats.add(GEOJSON);
+		return selectedReportFormats;
 	}
 
 }
diff --git a/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/report/ReportUrlBuilder.java b/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/report/ReportUrlBuilder.java
index 5f138575c769fd41d83910aacf33498ad9b906f4..40c3a462658cf3308dbee055f8edf6c04d294cec 100644
--- a/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/report/ReportUrlBuilder.java
+++ b/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/client/report/ReportUrlBuilder.java
@@ -23,9 +23,8 @@ package de.latlon.xplanbox.core.gwt.commons.client.report;
 import java.util.List;
 
 import com.google.gwt.core.client.GWT;
-
+import de.latlon.xplan.validator.web.shared.ReportFormatType;
 import de.latlon.xplanbox.core.gwt.commons.shared.ValidationSummary;
-import de.latlon.xplan.validator.web.shared.ArtifactType;
 
 /**
  * Contains useful methods to create report urls.
@@ -41,9 +40,9 @@ public class ReportUrlBuilder {
 		return url;
 	}
 
-	String createZipUrl(ValidationSummary validationSummary, List<ArtifactType> artifacts) {
+	String createZipUrl(ValidationSummary validationSummary, List<ReportFormatType> reportFormats) {
 		String url = createBaseUrl("rest/report/zip/" + validationSummary.getPlanUuid());
-		url = appendArtifacts(artifacts, url);
+		url = appendReportFormats(reportFormats, url);
 		url = appendValidationName(validationSummary, url);
 		return url;
 	}
@@ -56,18 +55,18 @@ public class ReportUrlBuilder {
 		return url + "validationName" + "=" + validationSummary.getValidationName();
 	}
 
-	private String appendArtifacts(List<ArtifactType> artifacts, String url) {
-		return url + "artifacts" + "=" + createArtifactsAsString(artifacts) + "&";
+	private String appendReportFormats(List<ReportFormatType> reportFormats, String url) {
+		return url + "artifacts" + "=" + createReportFormatsAsString(reportFormats) + "&";
 	}
 
-	private String createArtifactsAsString(List<ArtifactType> artifacts) {
-		StringBuilder artifactsAsString = new StringBuilder();
-		for (ArtifactType artifact : artifacts) {
-			if (artifactsAsString.length() > 0)
-				artifactsAsString.append(",");
-			artifactsAsString.append(artifact);
+	private String createReportFormatsAsString(List<ReportFormatType> reportFormats) {
+		StringBuilder reportFormatsAsString = new StringBuilder();
+		for (ReportFormatType reportFormat : reportFormats) {
+			if (reportFormatsAsString.length() > 0)
+				reportFormatsAsString.append(",");
+			reportFormatsAsString.append(reportFormat);
 		}
-		return artifactsAsString.toString();
+		return reportFormatsAsString.toString();
 	}
 
 }
diff --git a/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/server/service/ReportController.java b/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/server/service/ReportController.java
index 7a5bd7954a8aa6c841f18a87d98b538d0bda3a8c..2e18b18139cde16bc90ec8b63c28e9c0bd25b3bd 100644
--- a/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/server/service/ReportController.java
+++ b/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/server/service/ReportController.java
@@ -20,7 +20,7 @@
  */
 package de.latlon.xplanbox.core.gwt.commons.server.service;
 
-import de.latlon.xplan.validator.web.shared.ArtifactType;
+import de.latlon.xplan.validator.web.shared.ReportFormatType;
 import org.apache.commons.lang3.StringUtils;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -70,7 +70,7 @@ public class ReportController {
 	@ResponseBody
 	public void getZippedReport(HttpServletResponse response, @PathVariable String uuid,
 			@RequestParam(value = "validationName", required = true) String validationName,
-			@RequestParam(value = "artifacts", required = true) List<ArtifactType> artifacts) throws IOException {
+			@RequestParam(value = "artifacts", required = true) List<ReportFormatType> artifacts) throws IOException {
 		LOG.debug("ZIP-Report for '{}' with artifacts {} requested.", StringUtils.normalizeSpace(uuid),
 				artifacts.stream().map(a -> a.name()).collect(Collectors.joining(",")));
 		response.setContentType("application/zip");
diff --git a/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/server/service/ReportProvider.java b/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/server/service/ReportProvider.java
index f84bf63415482b7a0fd22849436e0dffb35f4930..ba91b2394e1a43e3d2d4938a9bf0cae952654efe 100644
--- a/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/server/service/ReportProvider.java
+++ b/xplan-core/xplan-core-gwt/src/main/java/de/latlon/xplanbox/core/gwt/commons/server/service/ReportProvider.java
@@ -25,7 +25,7 @@ import java.util.List;
 
 import jakarta.servlet.http.HttpServletResponse;
 
-import de.latlon.xplan.validator.web.shared.ArtifactType;
+import de.latlon.xplan.validator.web.shared.ReportFormatType;
 
 /**
  * Provides report artefacts
@@ -56,6 +56,6 @@ public interface ReportProvider {
 	 * @throws IOException
 	 */
 	void writeZipReport(HttpServletResponse response, String planUuid, String validationName,
-			List<ArtifactType> artifacts) throws IOException;
+			List<ReportFormatType> artifacts) throws IOException;
 
 }
diff --git a/xplan-core/xplan-core-gwt/src/main/resources/de/latlon/xplanbox/core/gwt/commons/client/ValidatorWebCommonsMessages.properties b/xplan-core/xplan-core-gwt/src/main/resources/de/latlon/xplanbox/core/gwt/commons/client/ValidatorWebCommonsMessages.properties
index 5ce376cafbc1b3a3b494aaf5e2d7add6ce6537c3..f783c65919494e095e3a888c306831d4a00060c2 100644
--- a/xplan-core/xplan-core-gwt/src/main/resources/de/latlon/xplanbox/core/gwt/commons/client/ValidatorWebCommonsMessages.properties
+++ b/xplan-core/xplan-core-gwt/src/main/resources/de/latlon/xplanbox/core/gwt/commons/client/ValidatorWebCommonsMessages.properties
@@ -50,8 +50,9 @@ reportDialogTitle=Ergebnisse der Validierung
 reportButtonNextTitle=Weiteren Plan validieren
 reportButtonCloseTitle=Zur\u00FCck zu den Validierungseinstellungen
 reportDownloadBoxTitle=Download
-reportDownloadHtml=HTML Report
-reportDownloadPdf=PDF Report
+reportDownloadHtml=HTML-Bericht
+reportDownloadPdf=PDF-Bericht
+reportDownloadGeoJson=GeoJSON
 reportDownloadGeometryErrors=Geometriefehler
 reportDownloadButtonTitle=Download
 reportDownloadNoArtefactsSelected=Bitte w\u00e4hlen Sie mindestens ein Artefakt aus!
diff --git a/xplan-core/xplan-core-validator/pom.xml b/xplan-core/xplan-core-validator/pom.xml
index deae6cf53b5cdf5c3e00747cbd15b7c23587e4c3..0c84a2b8271275f988e22a9eb7ce683f68dbbcd9 100644
--- a/xplan-core/xplan-core-validator/pom.xml
+++ b/xplan-core/xplan-core-validator/pom.xml
@@ -73,6 +73,10 @@
       <groupId>${project.groupId}</groupId>
       <artifactId>xplan-core-synthesizer</artifactId>
     </dependency>
+    <dependency>
+      <groupId>jakarta.annotation</groupId>
+      <artifactId>jakarta.annotation-api</artifactId>
+    </dependency>
     <dependency>
       <groupId>jakarta.xml.bind</groupId>
       <artifactId>jakarta.xml.bind-api</artifactId>
@@ -89,6 +93,11 @@
       <groupId>xml-apis</groupId>
       <artifactId>xml-apis</artifactId>
     </dependency>
+    <dependency>
+      <groupId>io.swagger.core.v3</groupId>
+      <artifactId>swagger-annotations</artifactId>
+      <version>${swagger.version}</version>
+    </dependency>
     <dependency>
       <groupId>commons-io</groupId>
       <artifactId>commons-io</artifactId>
diff --git a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/ValidationResultContext.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/ValidationResultContext.java
index 4b5428ee716e6b94598e38c0bdc93bbcd7f00598..936c20f0cf5c327a3567ee320c50d3000b995b75 100644
--- a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/ValidationResultContext.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/ValidationResultContext.java
@@ -14,6 +14,7 @@ import java.util.Optional;
 import de.latlon.xplan.commons.feature.XPlanFeatureCollection;
 import de.latlon.xplan.validator.XPlanGmlValidation;
 import de.latlon.xplan.validator.geometric.result.GeometricValidationFinding;
+import de.latlon.xplan.validator.geometric.result.GeometricValidationFindingLevel;
 import de.latlon.xplan.validator.geometric.result.GeometricValidationRule;
 import org.deegree.geometry.Geometry;
 
@@ -74,6 +75,13 @@ public class ValidationResultContext {
 		return planRules;
 	}
 
+	public void add(GeometricValidationFindingLevel level, String msg, Geometry markerGeom, List<String> gmlIds) {
+		findings.add(new GeometricValidationFinding().message(msg)
+			.level(level)
+			.markerGeom(markerGeom)
+			.gmlIds(gmlIds.toArray(String[]::new)));
+	}
+
 	public void addError(String msg, String... gmlIds) {
 		findings.add(new GeometricValidationFinding().message(msg).level(ERROR).gmlIds(gmlIds));
 	}
diff --git a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/inspector/flaechenschluss/FlaechenschlussFinding.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/inspector/flaechenschluss/FlaechenschlussFinding.java
new file mode 100644
index 0000000000000000000000000000000000000000..d254f5aee99144d85fcc53e02b263a37c2832037
--- /dev/null
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/inspector/flaechenschluss/FlaechenschlussFinding.java
@@ -0,0 +1,67 @@
+package de.latlon.xplan.validator.geometric.inspector.flaechenschluss;
+
+import static de.latlon.xplan.validator.geometric.inspector.flaechenschluss.FlaechenschlussFinding.FindingType.LUECKE_ERROR;
+import static de.latlon.xplan.validator.geometric.inspector.flaechenschluss.FlaechenschlussFinding.FindingType.LUECKE_WARNING;
+import static de.latlon.xplan.validator.i18n.ValidationMessages.format;
+import static de.latlon.xplan.validator.i18n.ValidationMessages.getMessage;
+
+import java.util.List;
+import java.util.stream.Collectors;
+
+import de.latlon.xplan.validator.geometric.result.GeometricValidationFindingLevel;
+import org.deegree.geometry.Geometry;
+
+/**
+ *
+ * Aggregates same findings for Flaechenschlussbedingung of multiple types in one finidng.
+ *
+ * @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a>
+ * @since 8.0
+ */
+public record FlaechenschlussFinding(List<String> gmlIds, List<OptimisedFlaechenschlussInspector.TestStep> testSteps,
+		FindingType findingType, Geometry markerGeom) {
+
+	enum FindingType {
+
+		LUECKE_WARNING(GeometricValidationFindingLevel.WARNING), LUECKE_ERROR(GeometricValidationFindingLevel.ERROR),
+		INVALID_CP_WARNING(GeometricValidationFindingLevel.WARNING),
+		INVALID_CP_ERROR(GeometricValidationFindingLevel.ERROR);
+
+		private final GeometricValidationFindingLevel level;
+
+		FindingType(GeometricValidationFindingLevel level) {
+			this.level = level;
+		}
+
+		public GeometricValidationFindingLevel getLevel() {
+			return level;
+		}
+
+	}
+
+	/**
+	 * @return the message used for the aggregated findings, never <code>null</code>
+	 */
+	String createMessage() {
+		String conditions = testSteps.stream().map(testStep -> {
+			switch (testStep) {
+				case GELTUNGSBEREICH_BEREICH -> {
+					return getMessage("FlaechenschlussInspector_geltungsbereich_bereich");
+				}
+				case GELTUNGSBEREICH_PLAN -> {
+					return getMessage("FlaechenschlussInspector_geltungsbereich_plan");
+				}
+				default -> {
+					return getMessage("FlaechenschlussInspector_flaechenschluss");
+				}
+			}
+		}).collect(Collectors.joining(", "));
+		String gmlIdsAsString = gmlIds.stream().collect(Collectors.joining(", "));
+		if (LUECKE_WARNING.equals(findingType))
+			return format("FlaechenschlussInspector_warning_Luecke", gmlIdsAsString, conditions, markerGeom);
+		else if (LUECKE_ERROR.equals(findingType))
+			return format("FlaechenschlussInspector_error_Luecke", gmlIdsAsString, conditions, markerGeom);
+		return format("FlaechenschlussInspector_error", gmlIdsAsString, conditions, markerGeom);
+	}
+
+}
diff --git a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/inspector/flaechenschluss/OptimisedFlaechenschlussInspector.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/inspector/flaechenschluss/OptimisedFlaechenschlussInspector.java
index 25cfffeab7129251e6204270057c33de0fc7649c..a6a3118182f86d3bf28242b4bd86b9319269433b 100644
--- a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/inspector/flaechenschluss/OptimisedFlaechenschlussInspector.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/inspector/flaechenschluss/OptimisedFlaechenschlussInspector.java
@@ -38,6 +38,7 @@ import java.util.HashMap;
 import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
+import java.util.Optional;
 import java.util.stream.Collectors;
 
 import de.latlon.xplan.commons.XPlanType;
@@ -180,13 +181,15 @@ public class OptimisedFlaechenschlussInspector implements GeometricFeatureInspec
 
 	private final FlaechenschlussContext flaechenschlussContext;
 
+	private final List<FlaechenschlussFinding> flaechenschlussLuecken = new ArrayList<>();
+
 	public OptimisedFlaechenschlussInspector(XPlanVersion xPlanVersion, XPlanType xPlanType) {
 		this.xPlanVersion = xPlanVersion;
 		this.xPlanType = xPlanType;
 		this.flaechenschlussContext = new FlaechenschlussContext(xPlanVersion);
 	}
 
-	private enum TestStep {
+	public enum TestStep {
 
 		FLAECHENSCHLUSSPAIRS, FLAECHENSCHLUSSUNION, GELTUNGSBEREICH_BEREICH, GELTUNGSBEREICH_PLAN
 
@@ -256,6 +259,8 @@ public class OptimisedFlaechenschlussInspector implements GeometricFeatureInspec
 			addError(msg);
 			LOG.debug(msg, e);
 		}
+		flaechenschlussLuecken.forEach(luecke -> validationResultContext.add(luecke.findingType().getLevel(),
+				luecke.createMessage(), luecke.markerGeom(), luecke.gmlIds()));
 		return validationResultContext.hasNoErroneousFindings();
 	}
 
@@ -453,19 +458,10 @@ public class OptimisedFlaechenschlussInspector implements GeometricFeatureInspec
 			boolean foundInvalidControlPoints = checkControlPointsAndAddFailures(controlPointsInIntersection, testStep);
 			if (!foundInvalidControlPoints) {
 				boolean handleAsFailure = handleAsFailure(testStep);
-				String lueckeMessage = getMessage("FlaechenschlussInspector_error_Luecke");
-				if (TestStep.GELTUNGSBEREICH_BEREICH.equals(testStep)) {
-					lueckeMessage = getMessage("FlaechenschlussInspector_error_bereich_Luecke");
-				}
-				else if (TestStep.GELTUNGSBEREICH_PLAN.equals(testStep)) {
-					lueckeMessage = getMessage("FlaechenschlussInspector_error_plan_Luecke");
-				}
-				if (handleAsFailure) {
-					addError(lueckeMessage, diffGeltungsbereich, gmlIds.toArray(String[]::new));
-				}
-				else {
-					addWarning(lueckeMessage, diffGeltungsbereich, gmlIds.toArray(String[]::new));
-				}
+				if (handleAsFailure)
+					addLuecke(gmlIds, testStep, FlaechenschlussFinding.FindingType.LUECKE_ERROR, diffGeltungsbereich);
+				else
+					addLuecke(gmlIds, testStep, FlaechenschlussFinding.FindingType.LUECKE_WARNING, diffGeltungsbereich);
 			}
 		}
 		else if (relate.isDisjoint()) {
@@ -499,47 +495,40 @@ public class OptimisedFlaechenschlussInspector implements GeometricFeatureInspec
 		List<ControlPoint> controlPointsInIntersectionTmp = new ArrayList<>(controlPoints);
 		controlPoints.forEach(cpToCheck -> {
 			controlPointsInIntersectionTmp.remove(cpToCheck);
-			controlPointsInIntersectionTmp.forEach(cpInIntersection2 -> cpToCheck.checkIfIdentical(cpInIntersection2));
+			controlPointsInIntersectionTmp.forEach(cpToCheck::checkIfIdentical);
 		});
 		List<ControlPoint> controlPointsWithInvalidFlaechenschluss = controlPoints.stream()
 			.filter(cp -> !cp.hasIdenticalControlPoint())
 			.toList();
 		controlPointsWithInvalidFlaechenschluss.forEach(cp -> {
 			boolean handleAsFailure = handleAsFailure(testStep);
-			String msg;
 			String gmlId = cp.getFeatureGmlId();
-			if (!handleAsFailure && !TestStep.FLAECHENSCHLUSSPAIRS.equals(testStep)) {
-				if (TestStep.GELTUNGSBEREICH_BEREICH.equals(testStep)) {
-					msg = format("FlaechenschlussInspector_possibleLuecke_bereich", gmlId, cp.getPoint());
-				}
-				else if (TestStep.GELTUNGSBEREICH_PLAN.equals(testStep)) {
-					msg = format("FlaechenschlussInspector_possibleLuecke_plan", gmlId, cp.getPoint());
-				}
-				else {
-					msg = format("FlaechenschlussInspector_possibleLuecke", gmlId, cp.getPoint());
-				}
-			}
-			else if (TestStep.GELTUNGSBEREICH_BEREICH.equals(testStep)) {
-				msg = format("FlaechenschlussInspector_error_bereich", gmlId, cp.getPoint());
-			}
-			else if (TestStep.GELTUNGSBEREICH_PLAN.equals(testStep)) {
-				msg = format("FlaechenschlussInspector_error_plan", gmlId, cp.getPoint());
-			}
-			else {
-				msg = format("FlaechenschlussInspector_error", gmlId, cp.getPoint());
-			}
-			if (!validationResultContext.containsSameFinding(msg, cp.getPoint())) {
-				if (handleAsFailure) {
-					addError(msg, cp.getPoint(), gmlId);
-				}
-				else {
-					addWarning(msg, cp.getPoint(), gmlId);
-				}
-			}
+			if (!handleAsFailure && !TestStep.FLAECHENSCHLUSSPAIRS.equals(testStep))
+				addLuecke(List.of(gmlId), testStep, FlaechenschlussFinding.FindingType.LUECKE_WARNING, cp.getPoint());
+			else if (!handleAsFailure)
+				addLuecke(List.of(gmlId), testStep, FlaechenschlussFinding.FindingType.INVALID_CP_WARNING,
+						cp.getPoint());
+			else
+				addLuecke(List.of(gmlId), testStep, FlaechenschlussFinding.FindingType.INVALID_CP_ERROR, cp.getPoint());
 		});
 		return !controlPointsWithInvalidFlaechenschluss.isEmpty();
 	}
 
+	private void addLuecke(List<String> gmlIds, TestStep testStep, FlaechenschlussFinding.FindingType findingType,
+			Geometry markerGeom) {
+		Optional<FlaechenschlussFinding> flaechenschlussLuecke = flaechenschlussLuecken.stream()
+			.filter(luecke -> gmlIds.equals(luecke.gmlIds()) && markerGeom.equals(luecke.markerGeom())
+					&& findingType.equals(luecke.findingType()))
+			.findFirst();
+		if (flaechenschlussLuecke.isPresent())
+			flaechenschlussLuecke.get().testSteps().add(testStep);
+		else {
+			List<TestStep> testSteps = new ArrayList<>();
+			testSteps.add(testStep);
+			flaechenschlussLuecken.add(new FlaechenschlussFinding(gmlIds, testSteps, findingType, markerGeom));
+		}
+	}
+
 	private void addBereichFeature(Map<BereichFeature, FeaturesUnderTest> bereichFeaturesWithFeaturesUnderTest,
 			GeltungsbereichFeature geltungsbereichFeature, List<FeatureUnderTest> featuresUnderTest,
 			Geometry flaechenschlussUnion) {
diff --git a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/result/GeometricValidationFinding.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/result/GeometricValidationFinding.java
index cd9da5971f22fe5851ce83c326671f983e44cda9..6071b6e1737b76a852cf8b5492d370f01d252234 100644
--- a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/result/GeometricValidationFinding.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/geometric/result/GeometricValidationFinding.java
@@ -37,7 +37,7 @@ public class GeometricValidationFinding {
 		return this;
 	}
 
-	public GeometricValidationFinding gmlIds(String[] gmlIds) {
+	public GeometricValidationFinding gmlIds(String... gmlIds) {
 		this.gmlIds = List.of(gmlIds);
 		return this;
 	}
diff --git a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/ReportWriter.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/ReportWriter.java
index 18eaf62c9514848ba20c21a7c1ba94c7dddfe4a2..dab1a511cabbd5875a27364dab8fa28e14cab067 100644
--- a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/ReportWriter.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/ReportWriter.java
@@ -8,24 +8,20 @@
  * it under the terms of the GNU Affero General Public License as published by
  * the Free Software Foundation, either version 3 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  * #L%
  */
 package de.latlon.xplan.validator.report;
 
-import de.latlon.xplan.validator.report.html.HtmlReportGenerator;
-import de.latlon.xplan.validator.report.pdf.PdfReportGenerator;
-import de.latlon.xplan.validator.web.shared.ArtifactType;
-import org.apache.commons.io.IOUtils;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import static de.latlon.xplan.validator.web.shared.ReportFormatType.HTML;
+import static org.apache.commons.io.IOUtils.copy;
 
 import java.io.IOException;
 import java.io.InputStream;
@@ -38,8 +34,15 @@ import java.util.List;
 import java.util.zip.ZipEntry;
 import java.util.zip.ZipOutputStream;
 
-import static de.latlon.xplan.validator.web.shared.ArtifactType.HTML;
-import static org.apache.commons.io.IOUtils.copy;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import de.latlon.xplan.validator.report.geojson.GeoJsonBuilder;
+import de.latlon.xplan.validator.report.geojson.model.FeatureCollection;
+import de.latlon.xplan.validator.report.html.HtmlReportGenerator;
+import de.latlon.xplan.validator.report.pdf.PdfReportGenerator;
+import de.latlon.xplan.validator.web.shared.ReportFormatType;
+import org.apache.commons.io.IOUtils;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 /**
  * Generates an archive the {@link ValidatorReport} as XMl, HTML and PDF
@@ -68,6 +71,7 @@ public class ReportWriter {
 		List<String> failures = new ArrayList<>();
 		addHtmlEntry(report, targetDirectory, failures);
 		addPdfEntry(report, targetDirectory, failures);
+		addGeoJsonEntry(report, targetDirectory, failures);
 
 		addFailureLog(failures, targetDirectory);
 	}
@@ -76,10 +80,10 @@ public class ReportWriter {
 		return retrieveArtifactFile(sourceDirectory, validationName, HTML);
 	}
 
-	public void writeZipWithArtifacts(OutputStream outputStream, String validationName, List<ArtifactType> artifacts,
-			Path sourceDirectory) throws IOException {
+	public void writeZipWithArtifacts(OutputStream outputStream, String validationName,
+			List<ReportFormatType> artifacts, Path sourceDirectory) throws IOException {
 		try (ZipOutputStream zipOutputStream = new ZipOutputStream(outputStream)) {
-			for (ArtifactType artifactType : artifacts) {
+			for (ReportFormatType artifactType : artifacts) {
 				addZipEntry(artifactType, validationName, zipOutputStream, sourceDirectory);
 			}
 			Path errorlog = sourceDirectory.resolve(ERROR_LOG_FILENAME);
@@ -111,6 +115,22 @@ public class ReportWriter {
 		}
 	}
 
+	private void addGeoJsonEntry(ValidatorReport report, Path directoryToCreateZip, List<String> failures) {
+		String validationName = report.getValidationName();
+		Path geoJsonFile = directoryToCreateZip.resolve(validationName + ".geojson");
+		try (OutputStream outputStream = Files.newOutputStream(geoJsonFile)) {
+			FeatureCollection geoJsonFailures = GeoJsonBuilder.createGeoJsonFailures(report);
+			if (geoJsonFailures == null) {
+				geoJsonFailures = new FeatureCollection();
+			}
+			ObjectMapper objectMapper = new ObjectMapper();
+			objectMapper.writeValue(outputStream, geoJsonFailures);
+		}
+		catch (Exception e) {
+			failures.add(e.getMessage());
+		}
+	}
+
 	private void addFailureLog(List<String> failures, Path directoryToCreateZip) {
 		if (!failures.isEmpty()) {
 			Path errorlog = directoryToCreateZip.resolve(ERROR_LOG_FILENAME);
@@ -124,11 +144,12 @@ public class ReportWriter {
 		}
 	}
 
-	private void addZipEntry(ArtifactType artifactType, String validationName, ZipOutputStream zipOutputStream,
+	private void addZipEntry(ReportFormatType artifactType, String validationName, ZipOutputStream zipOutputStream,
 			Path sourceDirectory) throws IOException {
 		switch (artifactType) {
 			case HTML:
 			case PDF:
+			case GEOJSON:
 				addSimpleArtifact(artifactType, validationName, zipOutputStream, sourceDirectory);
 				break;
 			default:
@@ -136,8 +157,8 @@ public class ReportWriter {
 		}
 	}
 
-	private void addSimpleArtifact(ArtifactType artifactType, String validationName, ZipOutputStream zipOutputStream,
-			Path sourceDirectory) throws IOException {
+	private void addSimpleArtifact(ReportFormatType artifactType, String validationName,
+			ZipOutputStream zipOutputStream, Path sourceDirectory) throws IOException {
 		Path artifactFile = retrieveArtifactFile(sourceDirectory, validationName, artifactType);
 		if (Files.exists(artifactFile)) {
 			addArtifact(zipOutputStream, artifactFile);
@@ -153,7 +174,7 @@ public class ReportWriter {
 		}
 	}
 
-	public Path retrieveArtifactFile(Path sourceDirectory, String validationName, ArtifactType artifactType) {
+	public Path retrieveArtifactFile(Path sourceDirectory, String validationName, ReportFormatType artifactType) {
 		String suffix = artifactType.name().toLowerCase();
 		return sourceDirectory.resolve(validationName + "." + suffix);
 	}
diff --git a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/GeoJsonBuilder.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/GeoJsonBuilder.java
new file mode 100644
index 0000000000000000000000000000000000000000..4e59973b49adec607e0d84f9cd274f3fcb290336
--- /dev/null
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/GeoJsonBuilder.java
@@ -0,0 +1,98 @@
+package de.latlon.xplan.validator.report.geojson;
+
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import de.latlon.xplan.validator.geometric.result.GeometricValidationFinding;
+import de.latlon.xplan.validator.geometric.result.GeometricValidationRule;
+import de.latlon.xplan.validator.planinfo.PlanInfo;
+import de.latlon.xplan.validator.report.ReportGenerationException;
+import de.latlon.xplan.validator.report.ValidatorReport;
+import de.latlon.xplan.validator.report.geojson.model.Feature;
+import de.latlon.xplan.validator.report.geojson.model.FeatureCollection;
+import de.latlon.xplan.validator.report.geojson.model.Geometry;
+import org.deegree.cs.coordinatesystems.ICRS;
+import org.deegree.cs.exceptions.TransformationException;
+import org.deegree.cs.exceptions.UnknownCRSException;
+import org.deegree.cs.persistence.CRSManager;
+import org.deegree.geometry.GeometryTransformer;
+
+/**
+ * @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a>
+ * @since 8.0
+ */
+public final class GeoJsonBuilder {
+
+	public static final String DEFAULT_CRS_GEOJSON = "http://www.opengis.net/def/crs/OGC/1.3/CRS84";
+
+	private GeoJsonBuilder() {
+	}
+
+	/**
+	 * @param report never <code>null</code>
+	 * @return the GeoJson {@link FeatureCollection} containing all geometric ERRORS and
+	 * WARNINGS
+	 */
+	public static FeatureCollection createGeoJsonFailures(ValidatorReport report) throws ReportGenerationException {
+		if (reportHasGeometricFindings(report)) {
+			FeatureCollection featureCollection = new FeatureCollection();
+			Map<String, PlanInfo> planInfoReport = report.getPlanInfoReport().getPlanInfos();
+			for (Map.Entry<String, PlanInfo> entry : planInfoReport.entrySet()) {
+				PlanInfo planInfo = entry.getValue();
+				List<GeometricValidationRule> rules = planInfo.getGeometricValidatorResult().getRules();
+				for (GeometricValidationRule rule : rules) {
+					if (!rule.getFindings().isEmpty()) {
+						for (GeometricValidationFinding finding : rule.getFindings()) {
+							Feature feature = createFeature(rule, finding, planInfo);
+							featureCollection.addFeaturesItem(feature);
+						}
+					}
+				}
+			}
+			return featureCollection;
+		}
+		return null;
+	}
+
+	private static Feature createFeature(GeometricValidationRule rule, GeometricValidationFinding finding,
+			PlanInfo planInfo) throws ReportGenerationException {
+		Map<String, Object> properties = new HashMap<>();
+		properties.put("id", rule.getId());
+		properties.put("title", rule.getTitle());
+		properties.put("planName", planInfo.getName());
+		properties.put("level", finding.getLevel().name());
+		properties.put("message", finding.getMessage());
+		properties.put("gmlIds", String.join(", ", finding.getGmlIds()));
+		Geometry geometry = GeoJsonGeometryBuilder.createGeometry(transformToWgs84(finding.getMarkerGeom()));
+		return new Feature().geometry(geometry).properties(properties);
+	}
+
+	private static org.deegree.geometry.Geometry transformToWgs84(org.deegree.geometry.Geometry markerGeom)
+			throws ReportGenerationException {
+		if (markerGeom == null)
+			return null;
+		try {
+			ICRS targetCrs = CRSManager.lookup(DEFAULT_CRS_GEOJSON);
+			GeometryTransformer geometryTransformer = new GeometryTransformer(targetCrs);
+			return geometryTransformer.transform(markerGeom);
+		}
+		catch (TransformationException | UnknownCRSException e) {
+			throw new ReportGenerationException(e);
+		}
+	}
+
+	private static boolean reportHasGeometricFindings(ValidatorReport report) {
+		return report.getPlanInfoReport() != null && !report.getPlanInfoReport().getPlanInfos().isEmpty()
+				&& report.getPlanInfoReport()
+					.getPlanInfos()
+					.values()
+					.stream()
+					.anyMatch(planInfo -> planInfo.getGeometricValidatorResult() != null
+							&& planInfo.getGeometricValidatorResult()
+								.getRules()
+								.stream()
+								.anyMatch(rules -> !rules.getFindings().isEmpty()));
+	}
+
+}
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/GeoJsonGeometryBuilder.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/GeoJsonGeometryBuilder.java
similarity index 76%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/GeoJsonGeometryBuilder.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/GeoJsonGeometryBuilder.java
index ce33c6981bb78fc800e880a60c7e8d51710bdaa0..b54e7a627725e13acfe336c0696ef154e56ff521 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/GeoJsonGeometryBuilder.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/GeoJsonGeometryBuilder.java
@@ -1,21 +1,21 @@
-package de.latlon.xplanbox.api.commons;
+package de.latlon.xplan.validator.report.geojson;
 
 import java.math.BigDecimal;
 import java.util.ArrayList;
 import java.util.List;
 
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.GeometryCollection;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.GeometryElement;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.LineString;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.LineStringCoordinates;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.LinearRing;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.MultiLineString;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.MultiPoint;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.MultiPolygon;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Point;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Polygon;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Position;
+import de.latlon.xplan.validator.report.geojson.model.Geometry;
+import de.latlon.xplan.validator.report.geojson.model.GeometryCollection;
+import de.latlon.xplan.validator.report.geojson.model.GeometryElement;
+import de.latlon.xplan.validator.report.geojson.model.LineString;
+import de.latlon.xplan.validator.report.geojson.model.LineStringCoordinates;
+import de.latlon.xplan.validator.report.geojson.model.LinearRing;
+import de.latlon.xplan.validator.report.geojson.model.MultiLineString;
+import de.latlon.xplan.validator.report.geojson.model.MultiPoint;
+import de.latlon.xplan.validator.report.geojson.model.MultiPolygon;
+import de.latlon.xplan.validator.report.geojson.model.Point;
+import de.latlon.xplan.validator.report.geojson.model.Polygon;
+import de.latlon.xplan.validator.report.geojson.model.Position;
 import org.deegree.geometry.composite.CompositeGeometry;
 import org.deegree.geometry.multi.MultiGeometry;
 import org.deegree.geometry.primitive.Curve;
@@ -23,6 +23,7 @@ import org.deegree.geometry.primitive.GeometricPrimitive;
 import org.deegree.geometry.primitive.Ring;
 import org.deegree.geometry.primitive.Surface;
 import org.deegree.geometry.primitive.segments.LineStringSegment;
+import org.deegree.geometry.standard.multi.DefaultMultiGeometry;
 
 /**
  * @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a>
@@ -40,6 +41,10 @@ public class GeoJsonGeometryBuilder {
 	public static Geometry createGeometry(org.deegree.geometry.Geometry geom) {
 		if (geom == null)
 			return null;
+		return geometry(geom);
+	}
+
+	private static Geometry geometry(org.deegree.geometry.Geometry geom) {
 		switch (geom.getGeometryType()) {
 			case PRIMITIVE_GEOMETRY -> {
 				return geometry((GeometricPrimitive) geom);
@@ -88,11 +93,27 @@ public class GeoJsonGeometryBuilder {
 			case MULTI_POLYGON -> {
 				return geometry((org.deegree.geometry.multi.MultiPolygon) geom);
 			}
+			case MULTI_GEOMETRY -> {
+				return geometry((DefaultMultiGeometry<org.deegree.geometry.Geometry>) geom);
+			}
 			default -> throw new IllegalArgumentException(
 					"Could not export geometry " + geom.getMultiGeometryType() + " as GeoJSON");
 		}
 	}
 
+	private static GeometryCollection geometry(DefaultMultiGeometry<org.deegree.geometry.Geometry> geom) {
+		GeometryCollection geometryCollection = new GeometryCollection();
+		geom.forEach(g -> {
+			Geometry geometry = geometry(g);
+			if (geometry instanceof GeometryElement)
+				geometryCollection.addGeometriesItem((GeometryElement) geometry);
+			else
+				throw new IllegalArgumentException(
+						"Could not export geometry " + geom.getGeometryType() + " as GeoJSON");
+		});
+		return geometryCollection;
+	}
+
 	private static LineString geometry(Curve geom) {
 		LineStringCoordinates coordinates = lineStringCoordinates(geom);
 		return new LineString().coordinates(coordinates);
diff --git a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Feature.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Feature.java
new file mode 100644
index 0000000000000000000000000000000000000000..dd9215f1e942ed834d3ac3e88c463ce121c8988d
--- /dev/null
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Feature.java
@@ -0,0 +1,150 @@
+/*
+ * GeoJSON format
+ * This document defines the GeoJSON format as an OpenAPI. It contains the definitions for 'Feature' object and 'FeatureCollection' objects, as well as the definitions for all 'Geometry' objects. It conforms with the 'RFC-7946' standard from IETF (August 2016 version) Kudos to @bubbobne and @idkw whose code helped me not start from scratch https://gist.github.com/bubbobne/fe5f2db65acf039be6a9fd92fc9c7233 
+ *
+ * OpenAPI spec version: 1.0.1
+ * Contact: zitoun@gmail.com
+ *
+ * NOTE: This class is auto generated by the swagger code generator program.
+ * https://github.com/swagger-api/swagger-codegen.git
+ * Do not edit the class manually.
+ */
+
+package de.latlon.xplan.validator.report.geojson.model;
+
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.FEATURE;
+
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Objects;
+
+import com.fasterxml.jackson.annotation.JsonProperty;
+import io.swagger.v3.oas.annotations.media.Schema;
+import jakarta.annotation.Generated;
+import jakarta.validation.constraints.NotNull;
+
+/**
+ * GeoJSon &#x27;Feature&#x27; object. Generated from OpenAPI document
+ * https://app.swaggerhub.com/apis/OlivierMartineau/GeoJSON/1.0.1
+ *
+ * @since 8.0
+ */
+@Schema(description = "GeoJSon 'Feature' object")
+@Generated(value = "io.swagger.codegen.v3.generators.java.JavaJerseyServerCodegen",
+		date = "2024-09-09T05:36:15.967036504Z[GMT]")
+public class Feature extends GeoJsonObject {
+
+	@JsonProperty("geometry")
+	private Geometry geometry = null;
+
+	@JsonProperty("properties")
+	private Map<String, Object> properties = new HashMap<>();
+
+	@JsonProperty("id")
+	private Object id = null;
+
+	public Feature() {
+		setType(FEATURE);
+	}
+
+	public Feature geometry(Geometry geometry) {
+		this.geometry = geometry;
+		return this;
+	}
+
+	/**
+	 * Get geometry
+	 * @return geometry
+	 **/
+	@JsonProperty("geometry")
+	@Schema(required = true, description = "")
+	@NotNull
+	public Geometry getGeometry() {
+		return geometry;
+	}
+
+	public void setGeometry(Geometry geometry) {
+		this.geometry = geometry;
+	}
+
+	public Feature properties(Map<String, Object> properties) {
+		this.properties = properties;
+		return this;
+	}
+
+	/**
+	 * Get properties
+	 * @return properties
+	 **/
+	@JsonProperty("properties")
+	@Schema(required = true, description = "")
+	public Map<String, Object> getProperties() {
+		return properties;
+	}
+
+	public void setProperties(Map<String, Object> properties) {
+		this.properties = properties;
+	}
+
+	public Feature id(Object id) {
+		this.id = id;
+		return this;
+	}
+
+	/**
+	 * Get id
+	 * @return id
+	 **/
+	@JsonProperty("id")
+	@Schema(description = "")
+	@NotNull
+	public Object getId() {
+		return id;
+	}
+
+	public void setId(Object id) {
+		this.id = id;
+	}
+
+	@Override
+	public boolean equals(Object o) {
+		if (this == o) {
+			return true;
+		}
+		if (o == null || getClass() != o.getClass()) {
+			return false;
+		}
+		Feature feature = (Feature) o;
+		return Objects.equals(this.geometry, feature.geometry) && Objects.equals(this.properties, feature.properties)
+				&& Objects.equals(this.id, feature.id) && super.equals(o);
+	}
+
+	@Override
+	public int hashCode() {
+		return Objects.hash(geometry, properties, id, super.hashCode());
+	}
+
+	@Override
+	public String toString() {
+		StringBuilder sb = new StringBuilder();
+		sb.append("class Feature {\n");
+		sb.append("    ").append(toIndentedString(super.toString())).append("\n");
+		sb.append("    geometry: ").append(toIndentedString(geometry)).append("\n");
+		sb.append("    properties: ").append(toIndentedString(properties)).append("\n");
+		sb.append("    id: ").append(toIndentedString(id)).append("\n");
+		sb.append("}");
+		return sb.toString();
+	}
+
+	/**
+	 * Convert the given object to string with each line indented by 4 spaces (except the
+	 * first line).
+	 */
+	private String toIndentedString(Object o) {
+		if (o == null) {
+			return "null";
+		}
+		return o.toString().replace("\n", "\n    ");
+	}
+
+}
diff --git a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/FeatureCollection.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/FeatureCollection.java
new file mode 100644
index 0000000000000000000000000000000000000000..dd5c19698514fc3328d64083e3856246e47d825f
--- /dev/null
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/FeatureCollection.java
@@ -0,0 +1,109 @@
+/*
+ * GeoJSON format
+ * This document defines the GeoJSON format as an OpenAPI. It contains the definitions for 'Feature' object and 'FeatureCollection' objects, as well as the definitions for all 'Geometry' objects. It conforms with the 'RFC-7946' standard from IETF (August 2016 version) Kudos to @bubbobne and @idkw whose code helped me not start from scratch https://gist.github.com/bubbobne/fe5f2db65acf039be6a9fd92fc9c7233 
+ *
+ * OpenAPI spec version: 1.0.1
+ * Contact: zitoun@gmail.com
+ *
+ * NOTE: This class is auto generated by the swagger code generator program.
+ * https://github.com/swagger-api/swagger-codegen.git
+ * Do not edit the class manually.
+ */
+
+package de.latlon.xplan.validator.report.geojson.model;
+
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.FEATURECOLLECTION;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Objects;
+
+import com.fasterxml.jackson.annotation.JsonProperty;
+import io.swagger.v3.oas.annotations.media.Schema;
+import jakarta.annotation.Generated;
+import jakarta.validation.Valid;
+import jakarta.validation.constraints.NotNull;
+
+/**
+ * GeoJSon &#x27;FeatureCollection&#x27; object. Generated from OpenAPI document
+ * https://app.swaggerhub.com/apis/OlivierMartineau/GeoJSON/1.0.1
+ *
+ * @since 8.0
+ */
+@Schema(description = "GeoJSon 'FeatureCollection' object")
+@Generated(value = "io.swagger.codegen.v3.generators.java.JavaJerseyServerCodegen",
+		date = "2024-09-09T05:36:15.967036504Z[GMT]")
+public class FeatureCollection extends GeoJsonObject {
+
+	@JsonProperty("features")
+	private List<Feature> features = new ArrayList<>();
+
+	public FeatureCollection() {
+		setType(FEATURECOLLECTION);
+	}
+
+	public FeatureCollection features(List<Feature> features) {
+		this.features = features;
+		return this;
+	}
+
+	public FeatureCollection addFeaturesItem(Feature featuresItem) {
+		this.features.add(featuresItem);
+		return this;
+	}
+
+	/**
+	 * Get features
+	 * @return features
+	 **/
+	@JsonProperty("features")
+	@Schema(required = true, description = "")
+	@NotNull
+	@Valid
+	public List<Feature> getFeatures() {
+		return features;
+	}
+
+	public void setFeatures(List<Feature> features) {
+		this.features = features;
+	}
+
+	@Override
+	public boolean equals(Object o) {
+		if (this == o) {
+			return true;
+		}
+		if (o == null || getClass() != o.getClass()) {
+			return false;
+		}
+		FeatureCollection featureCollection = (FeatureCollection) o;
+		return Objects.equals(this.features, featureCollection.features) && super.equals(o);
+	}
+
+	@Override
+	public int hashCode() {
+		return Objects.hash(features, super.hashCode());
+	}
+
+	@Override
+	public String toString() {
+		StringBuilder sb = new StringBuilder();
+		sb.append("class FeatureCollection {\n");
+		sb.append("    ").append(toIndentedString(super.toString())).append("\n");
+		sb.append("    features: ").append(toIndentedString(features)).append("\n");
+		sb.append("}");
+		return sb.toString();
+	}
+
+	/**
+	 * Convert the given object to string with each line indented by 4 spaces (except the
+	 * first line).
+	 */
+	private String toIndentedString(Object o) {
+		if (o == null) {
+			return "null";
+		}
+		return o.toString().replace("\n", "\n    ");
+	}
+
+}
diff --git a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/GeoJsonObject.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/GeoJsonObject.java
new file mode 100644
index 0000000000000000000000000000000000000000..0981d2d7269f66a590f666dbe14a69fe99dfe28f
--- /dev/null
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/GeoJsonObject.java
@@ -0,0 +1,204 @@
+/*
+ * GeoJSON format
+ * This document defines the GeoJSON format as an OpenAPI. It contains the definitions for 'Feature' object and 'FeatureCollection' objects, as well as the definitions for all 'Geometry' objects. It conforms with the 'RFC-7946' standard from IETF (August 2016 version) Kudos to @bubbobne and @idkw whose code helped me not start from scratch https://gist.github.com/bubbobne/fe5f2db65acf039be6a9fd92fc9c7233 
+ *
+ * OpenAPI spec version: 1.0.1
+ * Contact: zitoun@gmail.com
+ *
+ * NOTE: This class is auto generated by the swagger code generator program.
+ * https://github.com/swagger-api/swagger-codegen.git
+ * Do not edit the class manually.
+ */
+
+package de.latlon.xplan.validator.report.geojson.model;
+
+import java.math.BigDecimal;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Objects;
+
+import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonSubTypes;
+import com.fasterxml.jackson.annotation.JsonTypeInfo;
+import com.fasterxml.jackson.annotation.JsonValue;
+import io.swagger.v3.oas.annotations.media.Schema;
+import jakarta.annotation.Generated;
+import jakarta.validation.Valid;
+import jakarta.validation.constraints.NotNull;
+
+/**
+ * GeoJSon object The coordinate reference system for all GeoJSON coordinates is a
+ * geographic coordinate reference system, using the World Geodetic System 1984 (WGS 84)
+ * datum, with longitude and latitude units of decimal degrees. This is equivalent to the
+ * coordinate reference system identified by the Open Geospatial Consortium (OGC) URN An
+ * OPTIONAL third-position element SHALL be the height in meters above or below the WGS 84
+ * reference ellipsoid. In the absence of elevation values, applications sensitive to
+ * height or depth SHOULD interpret positions as being at local ground or sea level.
+ * Generated from OpenAPI document
+ * https://app.swaggerhub.com/apis/OlivierMartineau/GeoJSON/1.0.1
+ *
+ * @since 8.0
+ */
+@Schema(description = "GeoJSon object The coordinate reference system for all GeoJSON coordinates is a geographic coordinate reference system, using the World Geodetic System 1984 (WGS 84) datum, with longitude and latitude units of decimal degrees. This is equivalent to the coordinate reference system identified by the Open Geospatial Consortium (OGC) URN An OPTIONAL third-position element SHALL be the height in meters above or below the WGS 84 reference ellipsoid. In the absence of elevation values, applications sensitive to height or depth SHOULD interpret positions as being at local ground or sea level. ")
+@Generated(value = "io.swagger.codegen.v3.generators.java.JavaJerseyServerCodegen",
+		date = "2024-09-09T05:36:15.967036504Z[GMT]")
+@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "type")
+@JsonSubTypes({ @JsonSubTypes.Type(value = FeatureCollection.class, name = "FeatureCollection"),
+		@JsonSubTypes.Type(value = Feature.class, name = "Feature"),
+		@JsonSubTypes.Type(value = GeometryCollection.class, name = "GeometryCollection"),
+		@JsonSubTypes.Type(value = Point.class, name = "Point"),
+		@JsonSubTypes.Type(value = LineString.class, name = "LineString"),
+		@JsonSubTypes.Type(value = Polygon.class, name = "Polygon"),
+		@JsonSubTypes.Type(value = MultiPoint.class, name = "MultiPoint"),
+		@JsonSubTypes.Type(value = MultiLineString.class, name = "MultiLineString"),
+		@JsonSubTypes.Type(value = MultiPolygon.class, name = "MultiPolygon") })
+public class GeoJsonObject {
+
+	/**
+	 * Gets or Sets type
+	 */
+	public enum TypeEnum {
+
+		FEATURE("Feature"),
+
+		FEATURECOLLECTION("FeatureCollection"),
+
+		POINT("Point"),
+
+		MULTIPOINT("MultiPoint"),
+
+		LINESTRING("LineString"),
+
+		MULTILINESTRING("MultiLineString"),
+
+		POLYGON("Polygon"),
+
+		MULTIPOLYGON("MultiPolygon"),
+
+		GEOMETRYCOLLECTION("GeometryCollection");
+
+		private String value;
+
+		TypeEnum(String value) {
+			this.value = value;
+		}
+
+		@Override
+		@JsonValue
+		public String toString() {
+			return String.valueOf(value);
+		}
+
+		@JsonCreator
+		public static TypeEnum fromValue(String text) {
+			for (TypeEnum b : TypeEnum.values()) {
+				if (String.valueOf(b.value).equals(text)) {
+					return b;
+				}
+			}
+			return null;
+		}
+
+	}
+
+	@JsonProperty("type")
+	private TypeEnum type = null;
+
+	@JsonProperty("bbox")
+	private List<BigDecimal> bbox = null;
+
+	public GeoJsonObject type(TypeEnum type) {
+		this.type = type;
+		return this;
+	}
+
+	/**
+	 * Get type
+	 * @return type
+	 **/
+	@JsonProperty("type")
+	@Schema(required = true, description = "")
+	@NotNull
+	public TypeEnum getType() {
+		return type;
+	}
+
+	public void setType(TypeEnum type) {
+		this.type = type;
+	}
+
+	public GeoJsonObject bbox(List<BigDecimal> bbox) {
+		this.bbox = bbox;
+		return this;
+	}
+
+	public GeoJsonObject addBboxItem(BigDecimal bboxItem) {
+		if (this.bbox == null) {
+			this.bbox = new ArrayList<BigDecimal>();
+		}
+		this.bbox.add(bboxItem);
+		return this;
+	}
+
+	/**
+	 * A GeoJSON object MAY have a member named \&quot;bbox\&quot; to include information
+	 * on the coordinate range for its Geometries, Features, or FeatureCollections. The
+	 * value of the bbox member MUST be an array of length 2*n where n is the number of
+	 * dimensions represented in the contained geometries, with all axes of the most
+	 * southwesterly point followed by all axes of the more northeasterly point. The axes
+	 * order of a bbox follows the axes order of geometries.
+	 * @return bbox
+	 **/
+	@JsonProperty("bbox")
+	@Schema(description = "A GeoJSON object MAY have a member named \"bbox\" to include information on the coordinate range for its Geometries, Features, or FeatureCollections. The value of the bbox member MUST be an array of length 2*n where n is the number of dimensions represented in the contained geometries, with all axes of the most southwesterly point followed by all axes of the more northeasterly point. The axes order of a bbox follows the axes order of geometries. ")
+	@NotNull
+	@Valid
+	public List<BigDecimal> getBbox() {
+		return bbox;
+	}
+
+	public void setBbox(List<BigDecimal> bbox) {
+		this.bbox = bbox;
+	}
+
+	@Override
+	public boolean equals(Object o) {
+		if (this == o) {
+			return true;
+		}
+		if (o == null || getClass() != o.getClass()) {
+			return false;
+		}
+		GeoJsonObject geoJsonObject = (GeoJsonObject) o;
+		return Objects.equals(this.type, geoJsonObject.type) && Objects.equals(this.bbox, geoJsonObject.bbox);
+	}
+
+	@Override
+	public int hashCode() {
+		return Objects.hash(type, bbox);
+	}
+
+	@Override
+	public String toString() {
+		StringBuilder sb = new StringBuilder();
+		sb.append("class GeoJsonObject {\n");
+
+		sb.append("    type: ").append(toIndentedString(type)).append("\n");
+		sb.append("    bbox: ").append(toIndentedString(bbox)).append("\n");
+		sb.append("}");
+		return sb.toString();
+	}
+
+	/**
+	 * Convert the given object to string with each line indented by 4 spaces (except the
+	 * first line).
+	 */
+	private String toIndentedString(Object o) {
+		if (o == null) {
+			return "null";
+		}
+		return o.toString().replace("\n", "\n    ");
+	}
+
+}
diff --git a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Geometry.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Geometry.java
new file mode 100644
index 0000000000000000000000000000000000000000..5ee31fdb7057ec8d066a41ded00f3a392c1ac528
--- /dev/null
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Geometry.java
@@ -0,0 +1,67 @@
+/*
+ * GeoJSON format
+ * This document defines the GeoJSON format as an OpenAPI. It contains the definitions for 'Feature' object and 'FeatureCollection' objects, as well as the definitions for all 'Geometry' objects. It conforms with the 'RFC-7946' standard from IETF (August 2016 version) Kudos to @bubbobne and @idkw whose code helped me not start from scratch https://gist.github.com/bubbobne/fe5f2db65acf039be6a9fd92fc9c7233 
+ *
+ * OpenAPI spec version: 1.0.1
+ * Contact: zitoun@gmail.com
+ *
+ * NOTE: This class is auto generated by the swagger code generator program.
+ * https://github.com/swagger-api/swagger-codegen.git
+ * Do not edit the class manually.
+ */
+
+package de.latlon.xplan.validator.report.geojson.model;
+
+import java.util.Objects;
+
+import io.swagger.v3.oas.annotations.media.Schema;
+import jakarta.annotation.Generated;
+
+/**
+ * Abstract type for all GeoJSon object except Feature and FeatureCollection. Generated
+ * from OpenAPI document * https://app.swaggerhub.com/apis/OlivierMartineau/GeoJSON/1.0.1
+ *
+ * @since 8.0
+ */
+@Schema(description = "Abstract type for all GeoJSon object except Feature and FeatureCollection ")
+@Generated(value = "io.swagger.codegen.v3.generators.java.JavaJerseyServerCodegen",
+		date = "2024-09-09T05:36:15.967036504Z[GMT]")
+public class Geometry extends GeoJsonObject {
+
+	@Override
+	public boolean equals(java.lang.Object o) {
+		if (this == o) {
+			return true;
+		}
+		if (o == null || getClass() != o.getClass()) {
+			return false;
+		}
+		return true;
+	}
+
+	@Override
+	public int hashCode() {
+		return Objects.hash(super.hashCode());
+	}
+
+	@Override
+	public String toString() {
+		StringBuilder sb = new StringBuilder();
+		sb.append("class Geometry {\n");
+		sb.append("    ").append(toIndentedString(super.toString())).append("\n");
+		sb.append("}");
+		return sb.toString();
+	}
+
+	/**
+	 * Convert the given object to string with each line indented by 4 spaces (except the
+	 * first line).
+	 */
+	private String toIndentedString(Object o) {
+		if (o == null) {
+			return "null";
+		}
+		return o.toString().replace("\n", "\n    ");
+	}
+
+}
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/GeometryCollection.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/GeometryCollection.java
similarity index 95%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/GeometryCollection.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/GeometryCollection.java
index 25ae92f2cf433414f05d002e2abf116d3fb4a51b..7ee2ea91c1c5b3113b22a1627803313a8353c925 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/GeometryCollection.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/GeometryCollection.java
@@ -10,9 +10,9 @@
  * Do not edit the class manually.
  */
 
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
+package de.latlon.xplan.validator.report.geojson.model;
 
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.GEOMETRYCOLLECTION;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.GEOMETRYCOLLECTION;
 
 import java.util.ArrayList;
 import java.util.List;
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/GeometryElement.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/GeometryElement.java
similarity index 97%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/GeometryElement.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/GeometryElement.java
index e7d3a50ceb0f826c0878c18ac5b435d86ae7b876..6eeb45113d0266746b9488b30121d85a85807dd5 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/GeometryElement.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/GeometryElement.java
@@ -10,7 +10,7 @@
  * Do not edit the class manually.
  */
 
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
+package de.latlon.xplan.validator.report.geojson.model;
 
 import java.util.Objects;
 
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/LineString.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/LineString.java
similarity index 94%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/LineString.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/LineString.java
index 847586efe1c0312d895643bedfbb59f86f88ed63..34ad627c37d763b949a9047b552acaf8d373265d 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/LineString.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/LineString.java
@@ -10,9 +10,9 @@
  * Do not edit the class manually.
  */
 
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
+package de.latlon.xplan.validator.report.geojson.model;
 
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.LINESTRING;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.LINESTRING;
 
 import java.util.Objects;
 
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/LineStringCoordinates.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/LineStringCoordinates.java
similarity index 97%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/LineStringCoordinates.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/LineStringCoordinates.java
index 8ea76b92c32c2a95b5931f5149689dcd0e0e372c..0490c82471971e67649c0d61209c5c62803d6fd1 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/LineStringCoordinates.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/LineStringCoordinates.java
@@ -10,7 +10,7 @@
  * Do not edit the class manually.
  */
 
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
+package de.latlon.xplan.validator.report.geojson.model;
 
 import java.util.ArrayList;
 import java.util.Objects;
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/LinearRing.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/LinearRing.java
similarity index 97%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/LinearRing.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/LinearRing.java
index f8ae1da900da782967a071a735a446735429fdcc..066baa13721baaf7f4aca5bf6dc15e1d81e44e41 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/LinearRing.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/LinearRing.java
@@ -10,7 +10,7 @@
  * Do not edit the class manually.
  */
 
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
+package de.latlon.xplan.validator.report.geojson.model;
 
 import java.util.ArrayList;
 import java.util.Objects;
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/MultiLineString.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/MultiLineString.java
similarity index 95%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/MultiLineString.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/MultiLineString.java
index 5814bac5747418fadc5e47e544724b5b47708ae7..28eeb835d1f86bb563d6467e7167d7111ae4a10d 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/MultiLineString.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/MultiLineString.java
@@ -10,9 +10,9 @@
  * Do not edit the class manually.
  */
 
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
+package de.latlon.xplan.validator.report.geojson.model;
 
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.MULTILINESTRING;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.MULTILINESTRING;
 
 import java.util.ArrayList;
 import java.util.List;
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/MultiPoint.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/MultiPoint.java
similarity index 95%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/MultiPoint.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/MultiPoint.java
index 7fa22eb75e0ddda3f7cb901e83e012b0a07ba672..9eb11c0a863e6a088b59afcf88877a0472951800 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/MultiPoint.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/MultiPoint.java
@@ -10,9 +10,9 @@
  * Do not edit the class manually.
  */
 
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
+package de.latlon.xplan.validator.report.geojson.model;
 
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.MULTIPOINT;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.MULTIPOINT;
 
 import java.util.ArrayList;
 import java.util.List;
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/MultiPolygon.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/MultiPolygon.java
similarity index 95%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/MultiPolygon.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/MultiPolygon.java
index f5ca80ab10215083d44053223d265c0ecf9f628f..eeaa512f531cc25017b2d271ec883d99725c227e 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/MultiPolygon.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/MultiPolygon.java
@@ -10,9 +10,9 @@
  * Do not edit the class manually.
  */
 
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
+package de.latlon.xplan.validator.report.geojson.model;
 
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.MULTIPOLYGON;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.MULTIPOLYGON;
 
 import java.util.ArrayList;
 import java.util.List;
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Point.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Point.java
similarity index 94%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Point.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Point.java
index f9e2589713b2a3779725b8b13d4a42d71c534964..d72e161bd31a126022152dc1254f6b361cf9bdf1 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Point.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Point.java
@@ -10,9 +10,9 @@
  * Do not edit the class manually.
  */
 
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
+package de.latlon.xplan.validator.report.geojson.model;
 
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.POINT;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.POINT;
 
 import java.util.Objects;
 
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Polygon.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Polygon.java
similarity index 95%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Polygon.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Polygon.java
index 762980352568c329f3eee264e8b204fa95d8beb4..4b3527a3e91bcc4d6cca3b36f78aae9c123fc9b4 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Polygon.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Polygon.java
@@ -10,9 +10,9 @@
  * Do not edit the class manually.
  */
 
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
+package de.latlon.xplan.validator.report.geojson.model;
 
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.POLYGON;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.POLYGON;
 
 import java.util.ArrayList;
 import java.util.List;
diff --git a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Position.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Position.java
similarity index 98%
rename from xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Position.java
rename to xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Position.java
index e3f22afb0d604afb71c85dac3a788c7cfa265867..6407d31725ad92fc1480ec7a283666c1126ea5a8 100644
--- a/xplan-core/xplan-core-api/src/main/java/de/latlon/xplanbox/api/commons/v2/model/geojson/Position.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/geojson/model/Position.java
@@ -10,7 +10,7 @@
  * Do not edit the class manually.
  */
 
-package de.latlon.xplanbox.api.commons.v2.model.geojson;
+package de.latlon.xplan.validator.report.geojson.model;
 
 import java.math.BigDecimal;
 import java.util.ArrayList;
diff --git a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/pdf/ReportBuilder.java b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/pdf/ReportBuilder.java
index bbdfda3ad893775d0b2e2b92b70a29d94ca0ee6c..8f7ced85be52584ed129e94817574aac9860a0e7 100644
--- a/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/pdf/ReportBuilder.java
+++ b/xplan-core/xplan-core-validator/src/main/java/de/latlon/xplan/validator/report/pdf/ReportBuilder.java
@@ -148,7 +148,7 @@ class ReportBuilder {
 
 		table.addCell(createTableCell("Planname:", FONT_TEXT));
 		table.addCell(createTableCell(planInfo.getName(), FONT_TEXT));
-		table.addCell(createTableCell("Version XPlanGML:", FONT_TEXT));
+		table.addCell(createTableCell("XPlanGML-Version:", FONT_TEXT));
 		table.addCell(createTableCell(asLabel(planInfo.getVersion()), FONT_TEXT));
 		table.addCell(createTableCell("Planart:", FONT_TEXT));
 		String planType = planInfo.getType() != null ? planInfo.getType().name() : "-";
diff --git a/xplan-core/xplan-core-validator/src/main/resources/de/latlon/xplan/validator/i18n/validationMessages.properties b/xplan-core/xplan-core-validator/src/main/resources/de/latlon/xplan/validator/i18n/validationMessages.properties
index eb3a5f30dfecf06cfed00afdbe16af6d0e2a3f32..f993c2cf8a3d46bd95c1c73c84a28c6bc8c15f7d 100644
--- a/xplan-core/xplan-core-validator/src/main/resources/de/latlon/xplan/validator/i18n/validationMessages.properties
+++ b/xplan-core/xplan-core-validator/src/main/resources/de/latlon/xplan/validator/i18n/validationMessages.properties
@@ -62,21 +62,18 @@ GeltungsbereichInspector_invalid_geom=Der Geltungsbereich des Objekts mit der gm
 ## 2.2.1.1 - Flaechenschluss
 FlaechenschlussInspector_id=2.2.1.1
 FlaechenschlussInspector_title=Fl\u00e4chenschlussbedingung
-FlaechenschlussInspector_error=Das Fl\u00e4chenschlussobjekt mit der gml id %s erf\u00fcllt die Fl\u00e4chenschlussbedingung an folgender Stelle nicht: %s
-FlaechenschlussInspector_error_plan=Das Fl\u00e4chenschlussobjekt mit der gml id %s erf\u00fcllt die Fl\u00e4chenschlussbedingung bei der Pr\u00fcfung des Geltungsbereichs des Plans an folgender Stelle nicht: %s
-FlaechenschlussInspector_error_bereich=Das Fl\u00e4chenschlussobjekt mit der gml id %s erf\u00fcllt die Fl\u00e4chenschlussbedingung bei der Pr\u00fcfung des Geltungsbereichs des Bereichs an folgender Stelle nicht: %s
+FlaechenschlussInspector_error=Das Fl\u00e4chenschlussobjekt mit der gml id %s erf\u00fcllt die Fl\u00e4chenschlussbedingung hinsichtlich folgender Bedingungen nicht: %s. St\u00fctzpunkte: %s
 FlaechenschlussInspector_error_overlapping=Das Fl\u00e4chenschlussobjekt mit der gml id %s \u00fcberdeckt das Fl\u00e4chenschlussobjekt mit der gml id %s vollst\u00e4ndig.
-FlaechenschlussInspector_error_Luecke=Die Fl\u00e4chenschlussbedingung ist nicht erf\u00fcllt, es wurde ein L\u00fccke identifiziert. Die Geometrie mit der L\u00fccke wird in der Shape-Datei ausgegeben.
-FlaechenschlussInspector_error_plan_Luecke=Die Fl\u00e4chenschlussbedingung ist nicht erf\u00fcllt, es wurde ein L\u00fccke bei der Pr\u00fcfung des Geltungsbereichs des Plans identifiziert. Die Geometrie mit der L\u00fccke wird in der Shape-Datei ausgegeben.
-FlaechenschlussInspector_error_bereich_Luecke=Die Fl\u00e4chenschlussbedingung ist nicht erf\u00fcllt, es wurde ein L\u00fccke bei der Pr\u00fcfung des Geltungsbereichs des Bereichs identifiziert. Die Geometrie mit der L\u00fccke wird in der Shape-Datei ausgegeben.
-FlaechenschlussInspector_error_plan_disjoint=Die Fl\u00e4chenschlussbedingung ist nicht erf\u00fcllt, es wurde ein Fl\u00e4chenschlussobjekt au\u00dferhalb des Geltungsbereichs des Plans identifiziert. Die Geometrie des Fl\u00e4chenschlussobjekts wird in der Shape-Datei ausgegeben.
-FlaechenschlussInspector_error_bereich_disjoint=Die Fl\u00e4chenschlussbedingung ist nicht erf\u00fcllt, es wurde ein Fl\u00e4chenschlussobjekt au\u00dferhalb des Geltungsbereichs des Bereichs identifiziert. Die Geometrie des Fl\u00e4chenschlussobjekts wird in der Shape-Datei ausgegeben.
+FlaechenschlussInspector_error_Luecke=Das Fl\u00e4chenschlussobjekt mit der gml id %s erf\u00fcllt die Fl\u00e4chenschlussbedingung hinsichtlich folgender Bedingungen nicht: %s. Es wurde ein L\u00fccke identifiziert: %s
+FlaechenschlussInspector_error_plan_disjoint=Die Fl\u00e4chenschlussbedingung ist nicht erf\u00fcllt, es wurde ein Fl\u00e4chenschlussobjekt au\u00dferhalb des Geltungsbereichs des Plans identifiziert.
+FlaechenschlussInspector_error_bereich_disjoint=Die Fl\u00e4chenschlussbedingung ist nicht erf\u00fcllt, es wurde ein Fl\u00e4chenschlussobjekt au\u00dferhalb des Geltungsbereichs des Bereichs identifiziert.
 FlaechenschlussInspector_error_ueberlappung=Die Fl\u00e4chenschlussbedingung ist nicht erf\u00fcllt, die beiden Fl\u00e4chenschlussobjekte mit den gml ids %s und gml id %s \u00fcberlappen sich. Schnittbereich: %s
-FlaechenschlussInspector_possibleLuecke=Das Fl\u00e4chenschlussobjekt mit der gml id %s erf\u00fcllt die Fl\u00e4chenschlussbedingung an folgender Stelle nicht. Es wurde eine L\u00fccke identifiziert. Bitte pr\u00fcfen Sie, ob es sich um eine gewollte L\u00fccke handelt: %s
-FlaechenschlussInspector_possibleLuecke_plan=Das Fl\u00e4chenschlussobjekt mit der gml id %s erf\u00fcllt die Fl\u00e4chenschlussbedingung bei der Pr\u00fcfung des Geltungsbereichs des Plans an folgender Stelle nicht. Es wurde eine L\u00fccke identifiziert. Bitte pr\u00fcfen Sie, ob es sich um eine gewollte L\u00fccke handelt: %s
-FlaechenschlussInspector_possibleLuecke_bereich=Das Fl\u00e4chenschlussobjekt mit der gml id %s erf\u00fcllt die Fl\u00e4chenschlussbedingung bei der Pr\u00fcfung des Geltungsbereichs des Bereichs an folgender Stelle nicht. Es wurde eine L\u00fccke identifiziert. Bitte pr\u00fcfen Sie, ob es sich um eine gewollte L\u00fccke handelt: %s
+FlaechenschlussInspector_warning_Luecke=Das Fl\u00e4chenschlussobjekt mit der gml id %s erf\u00fcllt die Fl\u00e4chenschlussbedingung hinsichtlich folgender Bedingungen nicht: %s. Bitte pr\u00fcfen Sie, ob es sich um eine gewollte L\u00fccke handelt: %s
 FlaechenschlussInspector_abort=Die Fl\u00e4chenschlusspr\u00fcfung wurde aufgrund eines unerwarteten Fehlers abgebrochen.
 FlaechenschlussInspector_geom_abort=Die Fl\u00e4chenschlusspr\u00fcfung wurde aufgrund von schwerwiegenden Geometriefehlern abgebrochen.
+FlaechenschlussInspector_flaechenschluss=\u00dcberdeckung des Fl\u00e4chenschluss
+FlaechenschlussInspector_geltungsbereich_plan=\u00dcberdeckung des Geltungsbereichs des Plans
+FlaechenschlussInspector_geltungsbereich_bereich=\u00dcberdeckung des Geltungsbereichs des Bereichs
 ## 2.2.2.1 - geometrische Korrektheit
 XPlanGeometryInspector_id=2.2.2.1
 XPlanGeometryInspector_title=Verwendung geometrisch korrekter Fl\u00e4chen
diff --git a/xplan-core/xplan-core-validator/src/main/resources/xslt/report.xslt b/xplan-core/xplan-core-validator/src/main/resources/xslt/report.xslt
index b2b0cb4fe3cbf38ee77a43d54934caf5340eeb1c..fadcbfb244d7e526e45751122d4aebe20f9d7d0c 100644
--- a/xplan-core/xplan-core-validator/src/main/resources/xslt/report.xslt
+++ b/xplan-core/xplan-core-validator/src/main/resources/xslt/report.xslt
@@ -66,12 +66,12 @@
             </head>
             <body>
                 <h1>Validierungsbericht</h1>
-                <p>Name:
+                <p>Validierungsname:
                     <b>
                         <xsl:value-of select="ValidationReport/name"/>
                     </b>
                 </p>
-                <p>XPlan Archivname:
+                <p>Dateiname:
                     <b>
                         <xsl:value-of select="ValidationReport/fileName"/>
                     </b>
@@ -93,42 +93,39 @@
 
     <xsl:template match="Plan">
       <hr/>
-      <h2>Validierungergebnis des Planwerkes <xsl:value-of select="Plan/name"/></h2>
+      <h2>Validierungergebnis für Planwerk <xsl:value-of select="Plan/name"/></h2>
       <p>
-        <b>
-          <p>Planname:
-            <b>
-              <xsl:value-of select="Plan/name"/>
-            </b>
-          </p>
-          <p>XPlanGML Version:
-            <b>
-              <xsl:value-of select="Plan/version"/>
-            </b>
-          </p>
-          <p>Ergebnis:
-            <b>
-              <xsl:choose>
-                <xsl:when test="isValid='true'">
-                  <font color="#00C000">valide</font>
-                </xsl:when>
-                <xsl:otherwise>
-                  <font color="#FF0000">nicht valide</font>
-                </xsl:otherwise>
-              </xsl:choose>
-            </b>
-          </p>
-          <xsl:apply-templates select="ExternalReferences"/>
-          <xsl:apply-templates select="Validation/Sem"/>
-          <xsl:apply-templates select="Validation/Geom"/>
-          <xsl:apply-templates select="Validation/Profile"/>
-        </b>
+        <p>Planname:
+          <b>
+            <xsl:value-of select="Plan/name"/>
+          </b>
+        </p>
+        <p>XPlanGML-Version:
+          <b>
+            <xsl:value-of select="Plan/version"/>
+          </b>
+        </p>
+        <p>Validierungsergebnis:
+          <b>
+            <xsl:choose>
+              <xsl:when test="isValid='true'">
+                <font color="#00C000">valide</font>
+              </xsl:when>
+              <xsl:otherwise>
+                <font color="#FF0000">nicht valide</font>
+              </xsl:otherwise>
+            </xsl:choose>
+          </b>
+        </p>
+        <xsl:apply-templates select="ExternalReferences"/>
+        <xsl:apply-templates select="Validation/Sem"/>
+        <xsl:apply-templates select="Validation/Geom"/>
+        <xsl:apply-templates select="Validation/Profile"/>
       </p>
     </xsl:template>
 
-    <xsl:template match="ValidationReport/ExternalReferences">
+    <xsl:template match="ExternalReferences">
       <p><h3>Externe Referenzen</h3>
-        <b>
           <xsl:choose>
             <xsl:when test="SkipMessage">
               <xsl:value-of select="SkipMessage"/>
@@ -156,11 +153,10 @@
               </ul>
             </xsl:otherwise>
           </xsl:choose>
-        </b>
       </p>
     </xsl:template>
 
-    <xsl:template match="Validation/Sem | Validation/Geom | ValidationReport/Syn | ValidationReport/Geom">
+    <xsl:template match="Validation/Sem | Validation/Geom | ValidationReport/Syn">
         <p><h3>
             Ergebnis der
             <xsl:choose>
@@ -215,12 +211,14 @@
 
     <xsl:template match="RulesMetadata">
       <div>Informationen zu den Regeln:</div>
-      <p>Version: <xsl:value-of select="version"/></p>
-      <p>Quelle:
-        <xsl:call-template name="tokenize">
-          <xsl:with-param name="string" select="normalize-space(source)"/>
-        </xsl:call-template>
-      </p>
+      <ul style="list-style-type: none;">
+        <li>Version: <xsl:value-of select="version"/></li>
+        <li>Quelle:
+          <xsl:call-template name="tokenize">
+            <xsl:with-param name="string" select="normalize-space(source)"/>
+          </xsl:call-template>
+        </li>
+      </ul>
     </xsl:template>
 
     <xsl:template match="Rules">
diff --git a/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/geometric/inspector/flaechenschluss/OptimisedFlaechenschlussInspectorTest.java b/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/geometric/inspector/flaechenschluss/OptimisedFlaechenschlussInspectorTest.java
index 79d90adf93cdaf64de82e54faa8d7be581218a1b..45ecfade90814216d4d8db07179383fec8e8f5ba 100644
--- a/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/geometric/inspector/flaechenschluss/OptimisedFlaechenschlussInspectorTest.java
+++ b/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/geometric/inspector/flaechenschluss/OptimisedFlaechenschlussInspectorTest.java
@@ -115,9 +115,9 @@ public class OptimisedFlaechenschlussInspectorTest {
 		assertThat(isValid, is(false));
 
 		List<GeometricValidationFinding> findings = flaechenschlussInspector.getFindings();
-		assertThat(findings.size(), is(37));
+		assertThat(findings.size(), is(19));
 		assertThat(noOfErrors(findings), is(1));
-		assertThat(noOfWarnings(findings), is(36));
+		assertThat(noOfWarnings(findings), is(18));
 
 		GeometricValidationFinding finding = findings.get(0);
 		assertThat(finding.getLevel(), is(ERROR));
@@ -157,8 +157,8 @@ public class OptimisedFlaechenschlussInspectorTest {
 		assertThat(isValid, is(true));
 
 		List<GeometricValidationFinding> findings = flaechenschlussInspector.getFindings();
-		assertThat(findings.size(), is(7));
-		assertThat(noOfWarnings(findings), is(7));
+		assertThat(findings.size(), is(4));
+		assertThat(noOfWarnings(findings), is(4));
 	}
 
 	@Test
@@ -174,8 +174,8 @@ public class OptimisedFlaechenschlussInspectorTest {
 		assertThat(isValid, is(true));
 
 		List<GeometricValidationFinding> findings = flaechenschlussInspector.getFindings();
-		assertThat(findings.size(), is(7));
-		assertThat(noOfWarnings(findings), is(7));
+		assertThat(findings.size(), is(4));
+		assertThat(noOfWarnings(findings), is(4));
 	}
 
 	@Test
@@ -188,8 +188,8 @@ public class OptimisedFlaechenschlussInspectorTest {
 		assertThat(isValid, is(true));
 
 		List<GeometricValidationFinding> findings = flaechenschlussInspector.getFindings();
-		assertThat(findings.size(), is(2));
-		assertThat(noOfWarnings(findings), is(2));
+		assertThat(findings.size(), is(1));
+		assertThat(noOfWarnings(findings), is(1));
 	}
 
 	@Test
@@ -279,16 +279,19 @@ public class OptimisedFlaechenschlussInspectorTest {
 		assertThat(isValid, is(true));
 
 		List<GeometricValidationFinding> findings = flaechenschlussInspector.getFindings();
-		assertThat(findings.size(), is(2));
-		assertThat(noOfWarnings(findings), is(2));
+		assertThat(findings.size(), is(1));
+		assertThat(noOfWarnings(findings), is(1));
 		List<String> warnings = findings.stream()
 			.filter(f -> WARNING.equals(f.getLevel()))
 			.map(GeometricValidationFinding::getMessage)
 			.toList();
 		assertThat(warnings, hasItem(
-				"Die Flächenschlussbedingung ist nicht erfüllt, es wurde ein Lücke bei der Prüfung des Geltungsbereichs des Bereichs identifiziert. Die Geometrie mit der Lücke wird in der Shape-Datei ausgegeben."));
-		assertThat(warnings, hasItem(
-				"Die Flächenschlussbedingung ist nicht erfüllt, es wurde ein Lücke bei der Prüfung des Geltungsbereichs des Bereichs identifiziert. Die Geometrie mit der Lücke wird in der Shape-Datei ausgegeben."));
+				"Das Flächenschlussobjekt mit der gml id Gml_3E40CD06-7F9E-4301-B244-9C93B5B9F81C, Gml_4C6F208C-300A-4DC5-91AA-ABF379F51244, Gml_702A30AF-09E5-4FDD-A2D7-4924C20ED521, Gml_E776F534-00C5-4A18-8B52-CE999F89DD2A erfüllt die Flächenschlussbedingung hinsichtlich folgender Bedingungen nicht: Überdeckung des Geltungsbereichs des Bereichs, Überdeckung des Geltungsbereichs des Plans. Bitte prüfen Sie, ob es sich um eine gewollte Lücke handelt: POLYGON ((576676.293500 5954490.416900,576956.752400 5954069.728500,576835.043800 5954053.853500,576441.057500 5953961.902400,576397.418700 5954130.402900,576676.293500 5954490.416900))"));
+		GeometricValidationFinding finding = findings.get(0);
+		assertThat(finding.getGmlIds(),
+				hasItems("Gml_3E40CD06-7F9E-4301-B244-9C93B5B9F81C", "Gml_4C6F208C-300A-4DC5-91AA-ABF379F51244",
+						"Gml_702A30AF-09E5-4FDD-A2D7-4924C20ED521", "Gml_E776F534-00C5-4A18-8B52-CE999F89DD2A"));
+		assertNotNull(finding.getMarkerGeom());
 	}
 
 	@Test
@@ -302,17 +305,20 @@ public class OptimisedFlaechenschlussInspectorTest {
 		assertThat(isValid, is(true));
 
 		List<GeometricValidationFinding> findings = flaechenschlussInspector.getFindings();
-		assertThat(findings.size(), is(2));
-		assertThat(noOfWarnings(findings), is(2));
+		assertThat(findings.size(), is(1));
+		assertThat(noOfWarnings(findings), is(1));
 
 		List<String> warnings = findings.stream()
 			.filter(f -> WARNING.equals(f.getLevel()))
 			.map(GeometricValidationFinding::getMessage)
 			.toList();
 		assertThat(warnings, hasItem(
-				"Die Flächenschlussbedingung ist nicht erfüllt, es wurde ein Lücke bei der Prüfung des Geltungsbereichs des Plans identifiziert. Die Geometrie mit der Lücke wird in der Shape-Datei ausgegeben."));
-		assertThat(warnings, hasItem(
-				"Die Flächenschlussbedingung ist nicht erfüllt, es wurde ein Lücke bei der Prüfung des Geltungsbereichs des Bereichs identifiziert. Die Geometrie mit der Lücke wird in der Shape-Datei ausgegeben."));
+				"Das Flächenschlussobjekt mit der gml id Gml_3E40CD06-7F9E-4301-B244-9C93B5B9F81C, Gml_4C6F208C-300A-4DC5-91AA-ABF379F51244, Gml_702A30AF-09E5-4FDD-A2D7-4924C20ED521, Gml_E776F534-00C5-4A18-8B52-CE999F89DD2A erfüllt die Flächenschlussbedingung hinsichtlich folgender Bedingungen nicht: Überdeckung des Geltungsbereichs des Bereichs, Überdeckung des Geltungsbereichs des Plans. Bitte prüfen Sie, ob es sich um eine gewollte Lücke handelt: POLYGON ((576676.293500 5954490.416900,576956.752400 5954069.728500,576835.043800 5954053.853500,576441.057500 5953961.902400,576397.418700 5954130.402900,576676.293500 5954490.416900))"));
+		GeometricValidationFinding finding = findings.get(0);
+		assertThat(finding.getGmlIds(),
+				hasItems("Gml_3E40CD06-7F9E-4301-B244-9C93B5B9F81C", "Gml_4C6F208C-300A-4DC5-91AA-ABF379F51244",
+						"Gml_702A30AF-09E5-4FDD-A2D7-4924C20ED521", "Gml_E776F534-00C5-4A18-8B52-CE999F89DD2A"));
+		assertNotNull(finding.getMarkerGeom());
 	}
 
 	@Test
@@ -326,17 +332,20 @@ public class OptimisedFlaechenschlussInspectorTest {
 		assertThat(isValid, is(true));
 
 		List<GeometricValidationFinding> findings = flaechenschlussInspector.getFindings();
-		assertThat(findings.size(), is(2));
-		assertThat(noOfWarnings(findings), is(2));
+		assertThat(findings.size(), is(1));
+		assertThat(noOfWarnings(findings), is(1));
 
 		List<String> warnings = findings.stream()
 			.filter(f -> WARNING.equals(f.getLevel()))
 			.map(GeometricValidationFinding::getMessage)
 			.toList();
 		assertThat(warnings, hasItem(
-				"Die Flächenschlussbedingung ist nicht erfüllt, es wurde ein Lücke bei der Prüfung des Geltungsbereichs des Plans identifiziert. Die Geometrie mit der Lücke wird in der Shape-Datei ausgegeben."));
-		assertThat(warnings, hasItem(
-				"Die Flächenschlussbedingung ist nicht erfüllt, es wurde ein Lücke bei der Prüfung des Geltungsbereichs des Bereichs identifiziert. Die Geometrie mit der Lücke wird in der Shape-Datei ausgegeben."));
+				"Das Flächenschlussobjekt mit der gml id Gml_3E40CD06-7F9E-4301-B244-9C93B5B9F81C, Gml_4C6F208C-300A-4DC5-91AA-ABF379F51244, Gml_702A30AF-09E5-4FDD-A2D7-4924C20ED521, Gml_E776F534-00C5-4A18-8B52-CE999F89DD2A erfüllt die Flächenschlussbedingung hinsichtlich folgender Bedingungen nicht: Überdeckung des Geltungsbereichs des Bereichs, Überdeckung des Geltungsbereichs des Plans. Bitte prüfen Sie, ob es sich um eine gewollte Lücke handelt: POLYGON ((576676.293500 5954490.416900,576956.752400 5954069.728500,576835.043800 5954053.853500,576441.057500 5953961.902400,576397.418700 5954130.402900,576676.293500 5954490.416900))"));
+		GeometricValidationFinding finding = findings.get(0);
+		assertThat(finding.getGmlIds(),
+				hasItems("Gml_3E40CD06-7F9E-4301-B244-9C93B5B9F81C", "Gml_4C6F208C-300A-4DC5-91AA-ABF379F51244",
+						"Gml_702A30AF-09E5-4FDD-A2D7-4924C20ED521", "Gml_E776F534-00C5-4A18-8B52-CE999F89DD2A"));
+		assertNotNull(finding.getMarkerGeom());
 	}
 
 	@Test
diff --git a/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/ReportWriterTest.java b/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/ReportWriterTest.java
index e422c39246558519ad7fb6b7b7b2699d07556a3f..95182cae1dffe273a763daaa4fd39a8f7ddf7c73 100644
--- a/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/ReportWriterTest.java
+++ b/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/ReportWriterTest.java
@@ -22,7 +22,7 @@ package de.latlon.xplan.validator.report;
 
 import static de.latlon.xplan.commons.XPlanType.BP_Plan;
 import static de.latlon.xplan.commons.XPlanVersion.XPLAN_60;
-import static de.latlon.xplan.validator.web.shared.ArtifactType.HTML;
+import static de.latlon.xplan.validator.web.shared.ReportFormatType.HTML;
 import static java.util.Collections.singletonMap;
 import static org.hamcrest.CoreMatchers.is;
 import static org.hamcrest.MatcherAssert.assertThat;
diff --git a/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/geojson/GeoJsonBuilderTest.java b/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/geojson/GeoJsonBuilderTest.java
new file mode 100644
index 0000000000000000000000000000000000000000..bb0d29041de6d8adae0db3a98a5800b9b960a779
--- /dev/null
+++ b/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/geojson/GeoJsonBuilderTest.java
@@ -0,0 +1,160 @@
+package de.latlon.xplan.validator.report.geojson;
+
+import static de.latlon.xplan.commons.XPlanType.BP_Plan;
+import static de.latlon.xplan.commons.XPlanVersion.XPLAN_52;
+import static de.latlon.xplan.validator.geometric.result.GeometricValidationFindingLevel.ERROR;
+import static de.latlon.xplan.validator.geometric.result.GeometricValidationFindingLevel.WARNING;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.FEATURE;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.FEATURECOLLECTION;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.POINT;
+import static org.hamcrest.CoreMatchers.equalTo;
+import static org.hamcrest.CoreMatchers.notNullValue;
+import static org.hamcrest.CoreMatchers.nullValue;
+import static org.hamcrest.MatcherAssert.assertThat;
+
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import de.latlon.xplan.validator.geometric.report.GeometricValidatorResult;
+import de.latlon.xplan.validator.geometric.result.GeometricValidationFinding;
+import de.latlon.xplan.validator.geometric.result.GeometricValidationRule;
+import de.latlon.xplan.validator.planinfo.PlanInfo;
+import de.latlon.xplan.validator.planinfo.PlanInfoReport;
+import de.latlon.xplan.validator.report.ReportGenerationException;
+import de.latlon.xplan.validator.report.ValidatorReport;
+import de.latlon.xplan.validator.report.geojson.model.Feature;
+import de.latlon.xplan.validator.report.geojson.model.FeatureCollection;
+import de.latlon.xplan.validator.report.geojson.model.Point;
+import org.deegree.cs.exceptions.UnknownCRSException;
+import org.deegree.cs.persistence.CRSManager;
+import org.deegree.geometry.Geometry;
+import org.deegree.geometry.GeometryFactory;
+import org.junit.Test;
+
+/**
+ * @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a>
+ */
+public class GeoJsonBuilderTest {
+
+	@Test
+	public void test_createGeoJsonFailures_NoFindings() throws ReportGenerationException {
+		ValidatorReport reportWithoutFindings = createReportWithoutFindings();
+		FeatureCollection geoJsonFailures = GeoJsonBuilder.createGeoJsonFailures(reportWithoutFindings);
+
+		assertThat(geoJsonFailures, nullValue());
+	}
+
+	@Test
+	public void test_createGeoJsonFailures_WithFinding() throws UnknownCRSException, ReportGenerationException {
+		ValidatorReport reportWithoutFindings = createReportWithFinding();
+		FeatureCollection geoJsonFailures = GeoJsonBuilder.createGeoJsonFailures(reportWithoutFindings);
+
+		assertThat(geoJsonFailures, notNullValue());
+		assertThat(geoJsonFailures.getType(), equalTo(FEATURECOLLECTION));
+		assertThat(geoJsonFailures.getFeatures().size(), equalTo(1));
+
+		Feature feature = geoJsonFailures.getFeatures().get(0);
+		assertThat(feature.getGeometry(), notNullValue());
+		assertThat(feature.getType(), equalTo(FEATURE));
+		assertThat(feature.getGeometry().getType(), equalTo(POINT));
+		assertThat(((Point) feature.getGeometry()).getPosition().get(0).doubleValue(), equalTo(9.991965747700812));
+		assertThat(((Point) feature.getGeometry()).getPosition().get(1).doubleValue(), equalTo(53.665150839846035));
+		Map<String, Object> properties = feature.getProperties();
+		assertThat(properties.size(), equalTo(6));
+
+		PlanInfo planInfo = reportWithoutFindings.getPlanInfoReport()
+			.getPlanInfos()
+			.values()
+			.stream()
+			.findFirst()
+			.get();
+		GeometricValidationRule rule = planInfo.getGeometricValidatorResult().getRules().get(0);
+		GeometricValidationFinding finding = rule.getFindings().get(0);
+
+		assertThat(properties.get("id"), equalTo(rule.getId()));
+		assertThat(properties.get("title"), equalTo(rule.getTitle()));
+		assertThat(properties.get("planName"), equalTo(planInfo.getName()));
+		assertThat(properties.get("level"), equalTo(finding.getLevel().name()));
+		assertThat(properties.get("message"), equalTo(finding.getMessage()));
+		assertThat(properties.get("gmlIds"), equalTo("Gml_001, Gml_002"));
+	}
+
+	@Test
+	public void test_createGeoJsonFailures_WithMultiplePlansAndFindings()
+			throws UnknownCRSException, ReportGenerationException {
+		ValidatorReport reportWithoutFindings = createReportWithMultiplePlansAndFindings();
+		FeatureCollection geoJsonFailures = GeoJsonBuilder.createGeoJsonFailures(reportWithoutFindings);
+
+		assertThat(geoJsonFailures, notNullValue());
+		assertThat(geoJsonFailures.getFeatures().size(), equalTo(3));
+	}
+
+	private static ValidatorReport createReportWithoutFindings() {
+		PlanInfo planInfo = new PlanInfo("GML_plan1").name("planName").version(XPLAN_52).type(BP_Plan);
+		PlanInfoReport planInfoReport = new PlanInfoReport().planInfos(Collections.singletonMap("GML_plan1", planInfo));
+		ValidatorReport sourceReport = new ValidatorReport();
+		sourceReport.setPlanInfoReport(planInfoReport);
+		return sourceReport;
+	}
+
+	private static ValidatorReport createReportWithFinding() throws UnknownCRSException {
+		GeometricValidatorResult geometricValidatorResult = createGeometricValidatorResult();
+		PlanInfo planInfo = new PlanInfo("GML_plan1").name("planName")
+			.version(XPLAN_52)
+			.type(BP_Plan)
+			.geometricValidatorResult(geometricValidatorResult);
+		PlanInfoReport planInfoReport = new PlanInfoReport().planInfos(Collections.singletonMap("GML_plan1", planInfo));
+		ValidatorReport sourceReport = new ValidatorReport();
+		sourceReport.setPlanInfoReport(planInfoReport);
+		return sourceReport;
+	}
+
+	private static ValidatorReport createReportWithMultiplePlansAndFindings() throws UnknownCRSException {
+		PlanInfo planInfo1 = new PlanInfo("GML_plan1").name("planName2")
+			.version(XPLAN_52)
+			.type(BP_Plan)
+			.geometricValidatorResult(createGeometricValidatorResult());
+		PlanInfo planInfo2 = new PlanInfo("GML_plan2").name("planName2")
+			.version(XPLAN_52)
+			.type(BP_Plan)
+			.geometricValidatorResult(createGeometricValidatorResultWithErrorAndWarning());
+		HashMap<String, PlanInfo> planInfos = new HashMap<>();
+		planInfos.put(planInfo1.getPlanGmlId(), planInfo1);
+		planInfos.put(planInfo2.getPlanGmlId(), planInfo2);
+		PlanInfoReport planInfoReport = new PlanInfoReport().planInfos(planInfos);
+		ValidatorReport sourceReport = new ValidatorReport();
+		sourceReport.setPlanInfoReport(planInfoReport);
+		return sourceReport;
+	}
+
+	private static GeometricValidatorResult createGeometricValidatorResult() throws UnknownCRSException {
+		GeometricValidationRule rule = new GeometricValidationRule("1.1", "test1")
+			.addFinding(new GeometricValidationFinding().message("fehler")
+				.level(ERROR)
+				.gmlIds("Gml_001", "Gml_002")
+				.markerGeom(createPoint()));
+		return new GeometricValidatorResult(Collections.singletonList(rule));
+	}
+
+	private static GeometricValidatorResult createGeometricValidatorResultWithErrorAndWarning()
+			throws UnknownCRSException {
+		GeometricValidationRule ruleError = new GeometricValidationRule("1.1", "test1")
+			.addFinding(new GeometricValidationFinding().message("fehler")
+				.level(ERROR)
+				.gmlIds("Gml_001")
+				.markerGeom(createPoint()));
+		GeometricValidationRule ruleWarning = new GeometricValidationRule("1.1", "test1")
+			.addFinding(new GeometricValidationFinding().message("warnung")
+				.level(WARNING)
+				.gmlIds("Gml_004")
+				.markerGeom(createPoint()));
+		return new GeometricValidatorResult(List.of(ruleError, ruleWarning));
+	}
+
+	private static Geometry createPoint() throws UnknownCRSException {
+		return new GeometryFactory().createPoint("id", 565542.625, 5946724.305, CRSManager.lookup("EPSG:25832"));
+	}
+
+}
diff --git a/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/GeoJsonGeometryBuilderTest.java b/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/geojson/GeoJsonGeometryBuilderTest.java
similarity index 50%
rename from xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/GeoJsonGeometryBuilderTest.java
rename to xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/geojson/GeoJsonGeometryBuilderTest.java
index f612c25b41b3c99c2d2458c484cf79316192cc77..b244c1299698332de7d6ab8c7bed41ffca2c17a8 100644
--- a/xplan-core/xplan-core-api/src/test/java/de/latlon/xplanbox/api/commons/GeoJsonGeometryBuilderTest.java
+++ b/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/geojson/GeoJsonGeometryBuilderTest.java
@@ -1,39 +1,37 @@
-package de.latlon.xplanbox.api.commons;
-
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.GEOMETRYCOLLECTION;
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.LINESTRING;
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.MULTILINESTRING;
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.MULTIPOINT;
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.MULTIPOLYGON;
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.POINT;
-import static de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry.TypeEnum.POLYGON;
-import static org.assertj.core.api.Assertions.assertThat;
-
-import java.io.ByteArrayOutputStream;
-import java.io.IOException;
+package de.latlon.xplan.validator.report.geojson;
+
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.GEOMETRYCOLLECTION;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.LINESTRING;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.MULTILINESTRING;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.MULTIPOINT;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.MULTIPOLYGON;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.POINT;
+import static de.latlon.xplan.validator.report.geojson.model.GeoJsonObject.TypeEnum.POLYGON;
+import static org.hamcrest.CoreMatchers.instanceOf;
+import static org.hamcrest.CoreMatchers.is;
+import static org.hamcrest.MatcherAssert.assertThat;
+
 import java.util.Collections;
 import java.util.List;
 
-import com.fasterxml.jackson.databind.ObjectMapper;
-import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
-import de.latlon.xplanbox.api.commons.v2.model.ValidationReport;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Geometry;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.GeometryCollection;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.LineString;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.MultiLineString;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.MultiPoint;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.MultiPolygon;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Point;
-import de.latlon.xplanbox.api.commons.v2.model.geojson.Polygon;
+import de.latlon.xplan.validator.report.geojson.model.Geometry;
+import de.latlon.xplan.validator.report.geojson.model.GeometryCollection;
+import de.latlon.xplan.validator.report.geojson.model.LineString;
+import de.latlon.xplan.validator.report.geojson.model.MultiLineString;
+import de.latlon.xplan.validator.report.geojson.model.MultiPoint;
+import de.latlon.xplan.validator.report.geojson.model.MultiPolygon;
+import de.latlon.xplan.validator.report.geojson.model.Point;
+import de.latlon.xplan.validator.report.geojson.model.Polygon;
 import org.deegree.cs.coordinatesystems.ICRS;
 import org.deegree.cs.exceptions.UnknownCRSException;
 import org.deegree.cs.persistence.CRSManager;
 import org.deegree.geometry.GeometryFactory;
 import org.deegree.geometry.composite.CompositeGeometry;
+import org.deegree.geometry.multi.MultiGeometry;
 import org.deegree.geometry.points.Points;
 import org.deegree.geometry.primitive.GeometricPrimitive;
 import org.deegree.geometry.primitive.Ring;
-import org.junit.jupiter.api.Test;
+import org.junit.Test;
 
 /**
  * @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a>
@@ -43,100 +41,125 @@ public class GeoJsonGeometryBuilderTest {
 	private final GeometryFactory geometryFactory = new GeometryFactory();
 
 	@Test
-	void test_Point() throws UnknownCRSException {
+	public void test_Point() throws UnknownCRSException {
 		org.deegree.geometry.primitive.Point point = createPoint(5.4, 10.8);
 
 		Geometry geometry = GeoJsonGeometryBuilder.createGeometry(point);
-		assertThat(geometry).isInstanceOf(Point.class);
-		assertThat(geometry.getType()).isEqualTo(POINT);
-		assertThat(((Point) geometry).getPosition().get(0).doubleValue()).isEqualTo(point.get0());
-		assertThat(((Point) geometry).getPosition().get(1).doubleValue()).isEqualTo(point.get1());
+		assertThat(geometry, instanceOf(Point.class));
+		assertThat(geometry.getType(), is(POINT));
+		assertThat(((Point) geometry).getPosition().get(0).doubleValue(), is(point.get0()));
+		assertThat(((Point) geometry).getPosition().get(1).doubleValue(), is(point.get1()));
 	}
 
 	@Test
-	void test_MultiPoint() throws UnknownCRSException {
+	public void test_MultiPoint() throws UnknownCRSException {
 		org.deegree.geometry.primitive.Point point1 = createPoint(5.4, 10.8);
 		org.deegree.geometry.primitive.Point point2 = createPoint(6.4, 10.5);
 		org.deegree.geometry.multi.MultiPoint multiPoint = geometryFactory.createMultiPoint("id", crs(),
 				List.of(point1, point2));
 
 		Geometry geometry = GeoJsonGeometryBuilder.createGeometry(multiPoint);
-		assertThat(geometry).isInstanceOf(MultiPoint.class);
-		assertThat(geometry.getType()).isEqualTo(MULTIPOINT);
-		assertThat(((MultiPoint) geometry).getPositions().size()).isEqualTo(2);
-		assertThat(((MultiPoint) geometry).getPositions().get(0).get(0).doubleValue()).isEqualTo(point1.get0());
-		assertThat(((MultiPoint) geometry).getPositions().get(0).get(1).doubleValue()).isEqualTo(point1.get1());
+		assertThat(geometry, instanceOf(MultiPoint.class));
+		assertThat(geometry.getType(), is(MULTIPOINT));
+		assertThat(((MultiPoint) geometry).getPositions().size(), is(2));
+		assertThat(((MultiPoint) geometry).getPositions().get(0).get(0).doubleValue(), is(point1.get0()));
+		assertThat(((MultiPoint) geometry).getPositions().get(0).get(1).doubleValue(), is(point1.get1()));
 	}
 
 	@Test
-	void test_LineString() throws UnknownCRSException {
+	public void test_LineString() throws UnknownCRSException {
 		org.deegree.geometry.primitive.LineString lineString = createLineString1();
 
 		Geometry geometry = GeoJsonGeometryBuilder.createGeometry(lineString);
-		assertThat(geometry).isInstanceOf(LineString.class);
-		assertThat(geometry.getType()).isEqualTo(LINESTRING);
-		assertThat(((LineString) geometry).getCoordinates().size()).isEqualTo(3);
-		assertThat(((LineString) geometry).getCoordinates().get(0).get(0).doubleValue())
-			.isEqualTo(lineString.getControlPoints().get(0).get0());
-		assertThat(((LineString) geometry).getCoordinates().get(0).get(1).doubleValue())
-			.isEqualTo(lineString.getControlPoints().get(0).get1());
+		assertThat(geometry, instanceOf(LineString.class));
+		assertThat(geometry.getType(), is(LINESTRING));
+		assertThat(((LineString) geometry).getCoordinates().size(), is(3));
+		assertThat(((LineString) geometry).getCoordinates().get(0).get(0).doubleValue(),
+				is(lineString.getControlPoints().get(0).get0()));
+		assertThat(((LineString) geometry).getCoordinates().get(0).get(1).doubleValue(),
+				is(lineString.getControlPoints().get(0).get1()));
 	}
 
 	@Test
-	void test_MultiLineString() throws UnknownCRSException {
+	public void test_MultiLineString() throws UnknownCRSException {
 		org.deegree.geometry.primitive.LineString lineString1 = createLineString1();
 		org.deegree.geometry.primitive.LineString lineString2 = createLineString2();
 		org.deegree.geometry.multi.MultiLineString multiLineString = geometryFactory.createMultiLineString("id", crs(),
 				List.of(lineString1, lineString2));
 
 		Geometry geometry = GeoJsonGeometryBuilder.createGeometry(multiLineString);
-		assertThat(geometry).isInstanceOf(MultiLineString.class);
-		assertThat(geometry.getType()).isEqualTo(MULTILINESTRING);
-		assertThat(((MultiLineString) geometry).getLineStringCoordinates().size()).isEqualTo(2);
-		assertThat(((MultiLineString) geometry).getLineStringCoordinates().get(0).get(0).get(0).doubleValue())
-			.isEqualTo(multiLineString.get(0).getControlPoints().get(0).get0());
-		assertThat(((MultiLineString) geometry).getLineStringCoordinates().get(0).get(0).get(1).doubleValue())
-			.isEqualTo(multiLineString.get(0).getControlPoints().get(0).get1());
+		assertThat(geometry, instanceOf(MultiLineString.class));
+		assertThat(geometry.getType(), is(MULTILINESTRING));
+		assertThat(((MultiLineString) geometry).getLineStringCoordinates().size(), is(2));
+		assertThat(((MultiLineString) geometry).getLineStringCoordinates().get(0).get(0).get(0).doubleValue(),
+				is(multiLineString.get(0).getControlPoints().get(0).get0()));
+		assertThat(((MultiLineString) geometry).getLineStringCoordinates().get(0).get(0).get(1).doubleValue(),
+				is(multiLineString.get(0).getControlPoints().get(0).get1()));
 	}
 
 	@Test
-	void test_Polygon() throws UnknownCRSException {
+	public void test_Polygon() throws UnknownCRSException {
 		org.deegree.geometry.primitive.Polygon polygon = createPolygon1();
 
 		Geometry geometry = GeoJsonGeometryBuilder.createGeometry(polygon);
-		assertThat(geometry).isInstanceOf(Polygon.class);
-		assertThat(geometry.getType()).isEqualTo(POLYGON);
-		assertThat(((Polygon) geometry).getLinearRings().size()).isEqualTo(1);
-		assertThat(((Polygon) geometry).getLinearRings().get(0).size()).isEqualTo(4);
-
-		assertThat(((Polygon) geometry).getLinearRings().get(0).get(0).get(0).doubleValue())
-			.isEqualTo(polygon.getExteriorRing().getControlPoints().get(0).get0());
-		assertThat(((Polygon) geometry).getLinearRings().get(0).get(0).get(1).doubleValue())
-			.isEqualTo(polygon.getExteriorRing().getControlPoints().get(0).get1());
+		assertThat(geometry, instanceOf(Polygon.class));
+		assertThat(geometry.getType(), is(POLYGON));
+		assertThat(((Polygon) geometry).getLinearRings().size(), is(1));
+		assertThat(((Polygon) geometry).getLinearRings().get(0).size(), is(4));
+
+		assertThat(((Polygon) geometry).getLinearRings().get(0).get(0).get(0).doubleValue(),
+				is(polygon.getExteriorRing().getControlPoints().get(0).get0()));
+		assertThat(((Polygon) geometry).getLinearRings().get(0).get(0).get(1).doubleValue(),
+				is(polygon.getExteriorRing().getControlPoints().get(0).get1()));
 	}
 
 	@Test
-	void test_MultiPolygon() throws UnknownCRSException {
+	public void test_MultiPolygon() throws UnknownCRSException {
 		org.deegree.geometry.primitive.Polygon polygon1 = createPolygon1();
 		org.deegree.geometry.primitive.Polygon polygon2 = createPolygon1();
 		org.deegree.geometry.multi.MultiPolygon multiPolygon = geometryFactory.createMultiPolygon("id", crs(),
 				List.of(polygon1, polygon2));
 
 		Geometry geometry = GeoJsonGeometryBuilder.createGeometry(multiPolygon);
-		assertThat(geometry).isInstanceOf(MultiPolygon.class);
-		assertThat(geometry.getType()).isEqualTo(MULTIPOLYGON);
-		assertThat(((MultiPolygon) geometry).getLinearRings().size()).isEqualTo(2);
-		assertThat(((MultiPolygon) geometry).getLinearRings().get(0).size()).isEqualTo(1);
-		assertThat(((MultiPolygon) geometry).getLinearRings().get(0).get(0).size()).isEqualTo(4);
-
-		assertThat(((MultiPolygon) geometry).getLinearRings().get(0).get(0).get(0).get(0).doubleValue())
-			.isEqualTo(multiPolygon.get(0).getExteriorRing().getControlPoints().get(0).get0());
-		assertThat(((MultiPolygon) geometry).getLinearRings().get(0).get(0).get(0).get(1).doubleValue())
-			.isEqualTo(multiPolygon.get(0).getExteriorRing().getControlPoints().get(0).get1());
+		assertThat(geometry, instanceOf(MultiPolygon.class));
+		assertThat(geometry.getType(), is(MULTIPOLYGON));
+		assertThat(((MultiPolygon) geometry).getLinearRings().size(), is(2));
+		assertThat(((MultiPolygon) geometry).getLinearRings().get(0).size(), is(1));
+		assertThat(((MultiPolygon) geometry).getLinearRings().get(0).get(0).size(), is(4));
+
+		assertThat(((MultiPolygon) geometry).getLinearRings().get(0).get(0).get(0).get(0).doubleValue(),
+				is(multiPolygon.get(0).getExteriorRing().getControlPoints().get(0).get0()));
+		assertThat(((MultiPolygon) geometry).getLinearRings().get(0).get(0).get(0).get(1).doubleValue(),
+				is(multiPolygon.get(0).getExteriorRing().getControlPoints().get(0).get1()));
 	}
 
 	@Test
-	void test_GeometryCollection() throws UnknownCRSException {
+	public void test_MultiGeometry() throws UnknownCRSException {
+		org.deegree.geometry.primitive.Point point1 = createPoint(5.4, 10.8);
+		org.deegree.geometry.primitive.LineString lineString1 = createLineString1();
+		org.deegree.geometry.primitive.Polygon polygon1 = createPolygon1();
+		MultiGeometry<org.deegree.geometry.Geometry> multiGeometry = geometryFactory.createMultiGeometry("id", crs(),
+				List.of(point1, lineString1, polygon1));
+
+		Geometry geometry = GeoJsonGeometryBuilder.createGeometry(multiGeometry);
+		assertThat(geometry, instanceOf(GeometryCollection.class));
+		assertThat(geometry.getType(), is(GEOMETRYCOLLECTION));
+		assertThat(((GeometryCollection) geometry).getGeometries().size(), is(3));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(0), instanceOf(Point.class));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(0).getType(), is(POINT));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(1), instanceOf(LineString.class));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(1).getType(), is(LINESTRING));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(2), instanceOf(Polygon.class));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(2).getType(), is(POLYGON));
+
+		assertThat(((Point) ((GeometryCollection) geometry).getGeometries().get(0)).getPosition().get(0).doubleValue(),
+				is(point1.get0()));
+		assertThat(((Point) ((GeometryCollection) geometry).getGeometries().get(0)).getPosition().get(1).doubleValue(),
+				is(point1.get1()));
+	}
+
+	@Test
+	public void test_GeometryCollection() throws UnknownCRSException {
 		org.deegree.geometry.primitive.Point point1 = createPoint(5.4, 10.8);
 		org.deegree.geometry.primitive.LineString lineString1 = createLineString1();
 		org.deegree.geometry.primitive.Polygon polygon1 = createPolygon1();
@@ -144,20 +167,20 @@ public class GeoJsonGeometryBuilderTest {
 				List.of(point1, lineString1, polygon1));
 
 		Geometry geometry = GeoJsonGeometryBuilder.createGeometry(compositeGeometry);
-		assertThat(geometry).isInstanceOf(GeometryCollection.class);
-		assertThat(geometry.getType()).isEqualTo(GEOMETRYCOLLECTION);
-		assertThat(((GeometryCollection) geometry).getGeometries().size()).isEqualTo(3);
-		assertThat(((GeometryCollection) geometry).getGeometries().get(0)).isInstanceOf(Point.class);
-		assertThat(((GeometryCollection) geometry).getGeometries().get(0).getType()).isEqualTo(POINT);
-		assertThat(((GeometryCollection) geometry).getGeometries().get(1)).isInstanceOf(LineString.class);
-		assertThat(((GeometryCollection) geometry).getGeometries().get(1).getType()).isEqualTo(LINESTRING);
-		assertThat(((GeometryCollection) geometry).getGeometries().get(2)).isInstanceOf(Polygon.class);
-		assertThat(((GeometryCollection) geometry).getGeometries().get(2).getType()).isEqualTo(POLYGON);
-
-		assertThat(((Point) ((GeometryCollection) geometry).getGeometries().get(0)).getPosition().get(0).doubleValue())
-			.isEqualTo(point1.get0());
-		assertThat(((Point) ((GeometryCollection) geometry).getGeometries().get(0)).getPosition().get(1).doubleValue())
-			.isEqualTo(point1.get1());
+		assertThat(geometry, instanceOf(GeometryCollection.class));
+		assertThat(geometry.getType(), is(GEOMETRYCOLLECTION));
+		assertThat(((GeometryCollection) geometry).getGeometries().size(), is(3));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(0), instanceOf(Point.class));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(0).getType(), is(POINT));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(1), instanceOf(LineString.class));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(1).getType(), is(LINESTRING));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(2), instanceOf(Polygon.class));
+		assertThat(((GeometryCollection) geometry).getGeometries().get(2).getType(), is(POLYGON));
+
+		assertThat(((Point) ((GeometryCollection) geometry).getGeometries().get(0)).getPosition().get(0).doubleValue(),
+				is(point1.get0()));
+		assertThat(((Point) ((GeometryCollection) geometry).getGeometries().get(0)).getPosition().get(1).doubleValue(),
+				is(point1.get1()));
 	}
 
 	private org.deegree.geometry.primitive.LineString createLineString1() throws UnknownCRSException {
@@ -190,20 +213,6 @@ public class GeoJsonGeometryBuilderTest {
 		return CRSManager.lookup("EPSG:4326");
 	}
 
-	private static void serialize(Geometry geometry) {
-		ByteArrayOutputStream bos = new ByteArrayOutputStream();
-		ObjectMapper objectMapper = new ObjectMapperContextResolver().getContext(ValidationReport.class);
-		objectMapper.registerModule(new JavaTimeModule());
-		try {
-			objectMapper.writerWithDefaultPrettyPrinter().writeValue(bos, geometry);
-			String serializedReport = bos.toString();
-			System.out.println(serializedReport);
-		}
-		catch (IOException e) {
-			throw new RuntimeException(e);
-		}
-	}
-
 	private org.deegree.geometry.primitive.Point createPoint(double x, double y) throws UnknownCRSException {
 		return geometryFactory.createPoint("id", x, y, crs());
 	}
diff --git a/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/html/HtmlReportGeneratorTest.java b/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/html/HtmlReportGeneratorTest.java
index 58d6a0aef639b880faa2c4062ed8fe67c6ea288f..aeaa57edda8cf6ade51cab6654d821fe1a21cb3e 100644
--- a/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/html/HtmlReportGeneratorTest.java
+++ b/xplan-core/xplan-core-validator/src/test/java/de/latlon/xplan/validator/report/html/HtmlReportGeneratorTest.java
@@ -70,13 +70,13 @@ public class HtmlReportGeneratorTest {
 
 		htmlReportGenerator.generateHtmlReport(createValidatorReportWithSemanticFailures(), html);
 
-		assertThat(html.toString(), hasXPath("/html/body/p[4]/b/p[4]", containsString("semantischen")));
+		assertThat(html.toString(), hasXPath("/html/body/p[4]/p[4]", containsString("semantischen")));
 		assertThat(html.toString(),
-				hasXPath("/html/body/p[4]/b/p[4]/p/ul/li[1]", containsString("2 Validierungsregeln")));
+				hasXPath("/html/body/p[4]/p[4]/p/ul/li[1]", containsString("2 Validierungsregeln")));
 		assertThat(html.toString(),
-				hasXPath("/html/body/p[4]/b/p[4]/p/ul/li[2]", containsString("1 Validierungsregeln nicht")));
+				hasXPath("/html/body/p[4]/p[4]/p/ul/li[2]", containsString("1 Validierungsregeln nicht")));
 		assertThat(html.toString(),
-				hasXPath("/html/body/p[4]/b/p[4]/p/ul/li[3]", containsString("1 Validierungsregeln")));
+				hasXPath("/html/body/p[4]/p[4]/p/ul/li[3]", containsString("1 Validierungsregeln")));
 	}
 
 	@Test
@@ -96,8 +96,8 @@ public class HtmlReportGeneratorTest {
 
 		htmlReportGenerator.generateHtmlReport(createValidatorReportWithGeometricWarnings(), html);
 
-		assertThat(html.toString(), hasXPath("/html/body/p[4]/b/p[4]", containsString("geometrischen")));
-		assertThat(html.toString(), hasXPath("/html/body/p[4]/b/p[4]/p[2]", containsString("1 Warnungen")));
+		assertThat(html.toString(), hasXPath("/html/body/p[4]/p[4]", containsString("geometrischen")));
+		assertThat(html.toString(), hasXPath("/html/body/p[4]/p[4]/p[2]", containsString("1 Warnungen")));
 	}
 
 	@Test
@@ -108,8 +108,8 @@ public class HtmlReportGeneratorTest {
 		htmlReportGenerator.generateHtmlReport(createValidatorReportWithAllTypes(), html);
 
 		assertThat(html.toString(), hasXPath("/html/body/p[4]", containsString("syntaktischen")));
-		assertThat(html.toString(), hasXPath("/html/body/p[5]/b/p[4]", containsString("semantischen")));
-		assertThat(html.toString(), hasXPath("/html/body/p[5]/b/p[5]", containsString("geometrischen")));
+		assertThat(html.toString(), hasXPath("/html/body/p[5]/p[4]", containsString("semantischen")));
+		assertThat(html.toString(), hasXPath("/html/body/p[5]/p[5]", containsString("geometrischen")));
 	}
 
 	@Test
@@ -120,9 +120,9 @@ public class HtmlReportGeneratorTest {
 		htmlReportGenerator.generateHtmlReport(createValidatorReportWithAllTypesAndProfile(), html);
 
 		assertThat(html.toString(), hasXPath("/html/body/p[4]", containsString("syntaktischen")));
-		assertThat(html.toString(), hasXPath("/html/body/p[5]/b/p[4]", containsString("semantischen")));
-		assertThat(html.toString(), hasXPath("/html/body/p[5]/b/p[5]", containsString("geometrischen")));
-		assertThat(html.toString(), hasXPath("/html/body/p[5]/b/p[6]", containsString("gegen das Profil")));
+		assertThat(html.toString(), hasXPath("/html/body/p[5]/p[4]", containsString("semantischen")));
+		assertThat(html.toString(), hasXPath("/html/body/p[5]/p[5]", containsString("geometrischen")));
+		assertThat(html.toString(), hasXPath("/html/body/p[5]/p[6]", containsString("gegen das Profil")));
 	}
 
 	@Test(expected = IllegalArgumentException.class)
diff --git a/xplan-database/xplan-database-docker/Dockerfile b/xplan-database/xplan-database-docker/Dockerfile
index e76863d0c060fc64d5248cb32c387824f90ab15a..26e9779a110fea8d19bcde255ed73b464356f9fd 100644
--- a/xplan-database/xplan-database-docker/Dockerfile
+++ b/xplan-database/xplan-database-docker/Dockerfile
@@ -1,5 +1,5 @@
-# latest postgis/postgis:14-3.4 on 18.09.24
-FROM postgis/postgis@sha256:5dd86178d215734186c28a1d28f44b8bea08798441faab06eb2deabb778d898d
+# latest postgis/postgis:14-3.4 on 24.09.24
+FROM postgis/postgis@sha256:70e61250ca30ae0b18bebf1a528b026e39f99a55d276f3daa5eac3a7ed15f3e9
 
 ARG BUILD_DATE=?
 ARG DOCKER_IMAGE_NAME=?
diff --git a/xplan-documentation/xplan-benutzerhandbuch/src/main/asciidoc/images/validator/Validierungsbericht_download.png b/xplan-documentation/xplan-benutzerhandbuch/src/main/asciidoc/images/validator/Validierungsbericht_download.png
index 13d1a8a825fc142c43f19483291f46f758126b4d..599ae3a19a5458632fe83304c9f484486238bbfa 100644
Binary files a/xplan-documentation/xplan-benutzerhandbuch/src/main/asciidoc/images/validator/Validierungsbericht_download.png and b/xplan-documentation/xplan-benutzerhandbuch/src/main/asciidoc/images/validator/Validierungsbericht_download.png differ
diff --git a/xplan-manager/xplan-manager-api/pom.xml b/xplan-manager/xplan-manager-api/pom.xml
index 19b21f30c128f45805a7189346e62f2d64e95022..0e3712ac3f23cdac8ea029c59716e703ee2e8933 100644
--- a/xplan-manager/xplan-manager-api/pom.xml
+++ b/xplan-manager/xplan-manager-api/pom.xml
@@ -329,6 +329,11 @@
       <artifactId>hsqldb</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.skyscreamer</groupId>
+      <artifactId>jsonassert</artifactId>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>de.latlon.product.xplanbox</groupId>
       <artifactId>xplan-core-validator-events</artifactId>
diff --git a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/PlanInfoBuilder.java b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/PlanInfoBuilder.java
index b3fc24c43460653774426ef61336285963e375ab..2dea72d5ae5b6a435949e027b7c35fefb9626814 100644
--- a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/PlanInfoBuilder.java
+++ b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/PlanInfoBuilder.java
@@ -45,6 +45,7 @@ import de.latlon.xplanbox.api.commons.v1.model.PlanInfoBbox;
 import de.latlon.xplanbox.api.commons.v1.model.VersionEnum;
 import de.latlon.xplanbox.api.manager.config.ManagerApiConfiguration;
 import de.latlon.xplanbox.api.manager.openapi.v1.ApiV1Config;
+import de.latlon.xplanbox.api.manager.openapi.v2.ApiV2Config;
 import de.latlon.xplanbox.api.manager.v1.model.Bereich;
 import de.latlon.xplanbox.api.manager.v1.model.Gemeinde;
 import de.latlon.xplanbox.api.manager.v1.model.Link;
@@ -131,7 +132,7 @@ public class PlanInfoBuilder {
 			.version(version())
 			.planStatus(planStatus())
 			.bbox(bbox())
-			.links(links())
+			.links(links(ApiV1Config.APP_PATH))
 			.type(xPlan.getType())
 			.xplanModelData(xPlanModelData());
 	}
@@ -145,7 +146,7 @@ public class PlanInfoBuilder {
 			.version(version())
 			.planStatus(planStatus())
 			.bbox(bbox())
-			.links(links())
+			.links(links(ApiV2Config.APP_PATH))
 			.type(xPlan.getType())
 			.xplanModelData(xPlanModelDataV2());
 	}
@@ -185,9 +186,9 @@ public class PlanInfoBuilder {
 		return VersionEnum.fromValue(xPlan.getVersion());
 	}
 
-	private List<Link> links() {
+	private List<Link> links(String appPath) {
 		List<Link> links = new ArrayList<>();
-		URI selfRef = createSelfRef();
+		URI selfRef = createSelfRef(appPath);
 		if (selfRef != null) {
 			Link selfLink = (Link) new Link().rel(SELF).href(selfRef).type(selfMediaType).title(xPlan.getName());
 			links.add(selfLink);
@@ -209,14 +210,14 @@ public class PlanInfoBuilder {
 		return links;
 	}
 
-	private URI createSelfRef() {
+	private URI createSelfRef(String appPath) {
 		URI apiUrl = managerApiConfiguration.getApiUrl();
 		URIBuilder uriBuilder = new URIBuilder(apiUrl);
 
 		List<String> pathSegments = new ArrayList<>();
 		if (apiUrl.getPath() != null && !apiUrl.getPath().isEmpty())
 			pathSegments.addAll(Arrays.asList(apiUrl.getPath().split("/")));
-		pathSegments.addAll(Arrays.asList(ApiV1Config.APP_PATH.split("/")));
+		pathSegments.addAll(Arrays.asList(appPath.split("/")));
 		pathSegments.add("plan");
 		pathSegments.add(xPlan.getId());
 		uriBuilder.setPathSegments(pathSegments.stream()
diff --git a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/AbstractApiConfig.java b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/AbstractApiConfig.java
index 1b6f429a6fbca356e7c9b79a9c4dfe2456c8890f..bbe1fef3bdba65c54d99cb9469bd79eb2edfe59b 100644
--- a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/AbstractApiConfig.java
+++ b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/AbstractApiConfig.java
@@ -49,9 +49,9 @@ import org.glassfish.jersey.server.ServerProperties;
 /**
  * Application configuration for XPlanManager REST API. Example mapping for proxy mapping:
  * http://xplanbox.lat-lon.de/xmanager/api/v1/ ->
- * http://host:8080/xplan-api-manager/xmanager/api/v1/ Public address:
+ * http://host:8080/xplan-manager-api/xmanager/api/v1/ Public address:
  * http://xplanbox.lat-lon.de/xmanager/api/v1 Internal address:
- * http://host:8080/xplan-api-manager/xmanager/api/v1
+ * http://host:8080/xplan-manager-api/xmanager/api/v1
  *
  * @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a>
  */
diff --git a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/v1/ApiV1Config.java b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/v1/ApiV1Config.java
index 296df583c2f80ded701d3f80f19e3cc34654d721..607bda466dd475f3a9da21294f1a6aff39b0c11c 100644
--- a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/v1/ApiV1Config.java
+++ b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/v1/ApiV1Config.java
@@ -52,9 +52,9 @@ import org.springframework.context.annotation.Configuration;
 /**
  * Application configuration for XPlanManager REST API. Example mapping for proxy mapping:
  * http://xplanbox.lat-lon.de/xmanager/api/v1/ ->
- * http://host:8080/xplan-api-manager/xmanager/api/v1/ Public address:
+ * http://host:8080/xplan-manager-api/xmanager/api/v1/ Public address:
  * http://xplanbox.lat-lon.de/xmanager/api/v1 Internal address:
- * http://host:8080/xplan-api-manager/xmanager/api/v1
+ * http://host:8080/xplan-manager-api/xmanager/api/v1
  *
  * @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a>
  * @since 8.0
diff --git a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/v2/ApiV2Config.java b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/v2/ApiV2Config.java
index fd6c206e5c5b006ee9c0714939c0a1b9c84b91fc..6380019f2ded3a157f7cc3f2f4ba917eb7d5da77 100644
--- a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/v2/ApiV2Config.java
+++ b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/openapi/v2/ApiV2Config.java
@@ -51,9 +51,9 @@ import org.springframework.context.annotation.Configuration;
 
 /**
  * Application configuration for XPlanManager REST API. Example mapping for proxy mapping:
- * http://xplanbox.lat-lon.de/api/v2/ -> http://host:8080/xplan-api-manager/api/v2/ Public
+ * http://xplanbox.lat-lon.de/api/v2/ -> http://host:8080/xplan-manager-api/api/v2/ Public
  * address: http://xplanbox.lat-lon.de/api/v2 Internal address:
- * http://host:8080/xplan-api-manager/api/v2
+ * http://host:8080/xplan-manager-api/api/v2
  *
  * @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a>
  * @since 8.0
diff --git a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v1/PlanApi.java b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v1/PlanApi.java
index c2bf46f6468bdc6106a30b5c91d237da4ab753f4..6ef844ec0da82258d4dd0203cbde87e22f4b7b0a 100644
--- a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v1/PlanApi.java
+++ b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v1/PlanApi.java
@@ -45,9 +45,7 @@ import static de.latlon.xplanbox.validator.storage.StatusType.IMPORT_REQUESTED;
 import static de.latlon.xplanbox.validator.storage.StatusType.VALIDATION_FAILED;
 import static de.latlon.xplanbox.validator.storage.ValidationExecutionStorage.ReportType.JSON;
 import static io.swagger.v3.oas.annotations.enums.Explode.FALSE;
-import static jakarta.ws.rs.core.MediaType.APPLICATION_JSON;
 import static jakarta.ws.rs.core.MediaType.APPLICATION_JSON_TYPE;
-import static jakarta.ws.rs.core.MediaType.APPLICATION_XML;
 import static jakarta.ws.rs.core.MediaType.APPLICATION_XML_TYPE;
 import static org.slf4j.LoggerFactory.getLogger;
 
@@ -62,7 +60,6 @@ import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 import java.util.stream.Collectors;
 
-import com.fasterxml.jackson.core.type.TypeReference;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import de.latlon.core.validator.events.EventSender;
 import de.latlon.core.validator.events.ValidationRequestedEvent;
@@ -138,9 +135,12 @@ public class PlanApi {
 
 	private static final Logger LOG = getLogger(PlanApi.class);
 
-	private final static MediaType[] MEDIA_TYPES_SEARCH = { APPLICATION_JSON_TYPE, XPLANBOX_NO_VERSION_JSON_TYPE,
+	private final static MediaType[] MEDIA_TYPES_IMPORT = { APPLICATION_JSON_TYPE, XPLANBOX_NO_VERSION_JSON_TYPE,
 			XPLANBOX_V1_JSON_TYPE, XPLANBOX_V2_JSON_TYPE, APPLICATION_XML_TYPE, APPLICATION_ZIP_TYPE };
 
+	private final static MediaType[] MEDIA_TYPES_PLAN_BY_ID = { APPLICATION_JSON_TYPE, APPLICATION_XML_TYPE,
+			APPLICATION_ZIP_TYPE };
+
 	private static final boolean WITH_SKIP_GEOMETRISCH_VALIDATION = false;
 
 	private static final boolean WITH_SKIP_RASTER_EVALUATION = false;
@@ -281,7 +281,7 @@ public class PlanApi {
 			@PathParam("planId") @Parameter(description = "ID of the plan to be returned",
 					example = "123") String planId)
 			throws Exception {
-		MediaType requestedMediaType = requestedMediaType(request);
+		MediaType requestedMediaType = requestedMediaType(request, MEDIA_TYPES_PLAN_BY_ID);
 		if (APPLICATION_ZIP_TYPE.equals(requestedMediaType)) {
 			StreamingOutput plan = planHandler.exportPlan(planId);
 			return Response.ok(plan)
@@ -333,14 +333,8 @@ public class PlanApi {
 					example = "bplan_123, fplan-123, rplan20200803") String planName)
 			throws Exception {
 		List<XPlan> plans = planHandler.findPlansByName(planName);
-		List<PlanInfo> planInfos = plans.stream().map(xPlan -> {
-			List<Bereich> bereiche = planHandler.findBereiche(xPlan.getId());
-			List<Gemeinde> gemeinden = planHandler.findGemeinden(xPlan.getId());
-			return new PlanInfoBuilder(xPlan, bereiche, gemeinden, managerApiConfiguration)
-				.selfMediaType(APPLICATION_JSON)
-				.alternateMediaType(Arrays.asList(APPLICATION_XML, APPLICATION_ZIP))
-				.build();
-		}).collect(Collectors.toList());
+		MediaType requestedMediaType = requestedMediaType(request, MEDIA_TYPES_PLAN_BY_ID);
+		List<PlanInfo> planInfos = createPlanInfo(requestedMediaType, plans);
 		return Response.ok().entity(planInfos).build();
 	}
 
@@ -386,7 +380,7 @@ public class PlanApi {
 			throw new UnexpectedError(status.getErrorMsg());
 		}
 		List<XPlan> xPlans = planHandler.findPlansById(status.getImportedPlanIds());
-		MediaType requestedMediaType = requestedMediaType(request);
+		MediaType requestedMediaType = requestedMediaType(request, MEDIA_TYPES_IMPORT);
 		if (XPLANBOX_V2_JSON_TYPE.equals(requestedMediaType)) {
 			List<PlanInfo> planInfos = createPlanInfo(requestedMediaType, xPlans);
 			return Response.created(getSelfLink(planInfos)).entity(planInfos).build();
@@ -400,11 +394,16 @@ public class PlanApi {
 	}
 
 	private List<PlanInfo> createPlanInfo(MediaType requestedMediaType, List<XPlan> plans) {
-		return plans.stream().map(plan -> createPlanInfo(requestedMediaType, plan)).collect(Collectors.toList());
+		if (!APPLICATION_XML_TYPE.equals(requestedMediaType))
+			requestedMediaType = APPLICATION_JSON_TYPE;
+		MediaType finalRequestedMediaType = requestedMediaType;
+		return plans.stream().map(plan -> createPlanInfo(finalRequestedMediaType, plan)).collect(Collectors.toList());
 	}
 
 	private PlanInfo createPlanInfo(MediaType requestedMediaType, XPlan planById) {
-		List<String> alternateMediaTypes = alternateMediaTypes(requestedMediaType);
+		if (!APPLICATION_XML_TYPE.equals(requestedMediaType))
+			requestedMediaType = APPLICATION_JSON_TYPE;
+		List<String> alternateMediaTypes = alternateMediaTypes(requestedMediaType, MEDIA_TYPES_PLAN_BY_ID);
 		List<Bereich> bereiche = planHandler.findBereiche(planById.getId());
 		List<Gemeinde> gemeinden = planHandler.findGemeinden(planById.getId());
 		return new PlanInfoBuilder(planById, bereiche, gemeinden, managerApiConfiguration)
@@ -431,18 +430,18 @@ public class PlanApi {
 		return null;
 	}
 
-	private MediaType requestedMediaType(Request request) {
-		Variant.VariantListBuilder acceptedMediaTypes = Variant.mediaTypes(MEDIA_TYPES_SEARCH);
+	private MediaType requestedMediaType(Request request, MediaType[] availableMediaTypes) {
+		Variant.VariantListBuilder acceptedMediaTypes = Variant.mediaTypes(availableMediaTypes);
 		Variant selectVariant = request.selectVariant(acceptedMediaTypes.build());
 		if (selectVariant == null)
 			return APPLICATION_JSON_TYPE;
 		return selectVariant.getMediaType();
 	}
 
-	private List<String> alternateMediaTypes(MediaType requestedMediaType) {
-		return Arrays.stream(MEDIA_TYPES_SEARCH)
+	private List<String> alternateMediaTypes(MediaType requestedMediaType, MediaType[] availableMediaTypes) {
+		return Arrays.stream(availableMediaTypes)
 			.filter(mediaType -> !mediaType.equals(requestedMediaType))
-			.map(mediaType -> mediaType.toString())
+			.map(MediaType::toString)
 			.collect(Collectors.toList());
 	}
 
@@ -487,14 +486,6 @@ public class PlanApi {
 		}
 	}
 
-	private List<PlanInfo> createPlanInfoFileFrom(byte[] planInfoAsJsonInByte) throws IOException {
-		ObjectMapper mapper = new ObjectMapperContextResolver().getContext(PlanInfo.class);
-		List<de.latlon.xplanbox.api.manager.v2.model.PlanInfo> planInfosV1 = mapper.readValue(planInfoAsJsonInByte,
-				new TypeReference<List<de.latlon.xplanbox.api.manager.v2.model.PlanInfo>>() {
-				});
-		return PlanInfoBuilder.convertToV1(planInfosV1);
-	}
-
 	private ValidationReport createReportFileFrom(byte[] reportAsJsonInByte) throws IOException {
 		ObjectMapper mapper = new ObjectMapperContextResolver().getContext(ValidationReport.class);
 		return mapper.readValue(reportAsJsonInByte, ValidationReport.class);
diff --git a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v1/PlansApi.java b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v1/PlansApi.java
index 741461e65a727ea69696d65f7073d4514c0a486f..d8d8dd176c8e2b5ec04b46015c9f958e45ce7087 100644
--- a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v1/PlansApi.java
+++ b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v1/PlansApi.java
@@ -91,6 +91,7 @@ public class PlansApi {
 			List<Gemeinde> gemeinden = planHandler.findGemeinden(xPlan.getId());
 			return new PlanInfoBuilder(xPlan, bereiche, gemeinden, managerApiConfiguration)
 				.selfMediaType(APPLICATION_JSON)
+				.alternateMediaType(List.of("application/xml", "application/zip"))
 				.build();
 		}).collect(Collectors.toList());
 		return Response.ok().entity(planInfos).build();
diff --git a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v2/PlanApi2.java b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v2/PlanApi2.java
index 9f6600bff0f00116c66294b535a8c50e2ba183a3..5a6ce31ecc2eee2606fd70a4b3f6855e55f62051 100644
--- a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v2/PlanApi2.java
+++ b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v2/PlanApi2.java
@@ -26,10 +26,10 @@ import static de.latlon.xplan.commons.util.TextPatternConstants.SIMPLE_NAME_PATT
 import static de.latlon.xplanbox.api.commons.ValidatorConverter.createValidationSettings;
 import static de.latlon.xplanbox.api.commons.ValidatorConverter.detectOrCreateValidationName;
 import static de.latlon.xplanbox.api.commons.XPlanMediaType.APPLICATION_ZIP;
-import static de.latlon.xplanbox.api.commons.XPlanMediaType.APPLICATION_ZIP_TYPE;
 import static de.latlon.xplanbox.api.commons.v2.model.ResponseLink.RelEnum.STATUS;
 import static de.latlon.xplanbox.validator.storage.StatusType.IMPORT_REQUESTED;
 import static io.swagger.v3.oas.annotations.enums.Explode.FALSE;
+import static jakarta.ws.rs.core.MediaType.APPLICATION_JSON;
 
 import java.io.File;
 import java.net.URI;
@@ -282,7 +282,7 @@ public class PlanApi2 {
 		List<Bereich> bereiche = planHandler.findBereiche(planById.getId());
 		List<Gemeinde> gemeinden = planHandler.findGemeinden(planById.getId());
 		return new PlanInfoBuilder(planById, bereiche, gemeinden, managerApiConfiguration)
-			.selfMediaType(APPLICATION_ZIP_TYPE.toString())
+			.selfMediaType(APPLICATION_JSON)
 			.buildV2();
 	}
 
diff --git a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v2/ReportApi.java b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v2/ReportApi.java
index a013bcb23628900cc665f628d418f52df7738b23..2d37837469f1e47a98407020dabdef31da7157ff 100644
--- a/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v2/ReportApi.java
+++ b/xplan-manager/xplan-manager-api/src/main/java/de/latlon/xplanbox/api/manager/v2/ReportApi.java
@@ -21,11 +21,13 @@
 package de.latlon.xplanbox.api.manager.v2;
 
 import static de.latlon.xplanbox.api.commons.XPlanMediaType.APPLICATION_PDF_TYPE;
+import static de.latlon.xplanbox.validator.storage.ValidationExecutionStorage.ReportType.GEOJSON;
 import static de.latlon.xplanbox.validator.storage.ValidationExecutionStorage.ReportType.JSON;
 import static de.latlon.xplanbox.validator.storage.ValidationExecutionStorage.ReportType.PDF;
 import static jakarta.ws.rs.core.MediaType.APPLICATION_JSON_TYPE;
 
 import de.latlon.xplan.commons.s3.StorageException;
+import de.latlon.xplan.validator.report.geojson.model.FeatureCollection;
 import de.latlon.xplanbox.api.commons.exception.InvalidValidationUuid;
 import de.latlon.xplanbox.api.commons.v2.model.ValidationReport;
 import de.latlon.xplanbox.validator.storage.ValidationExecutionStorage;
@@ -91,6 +93,55 @@ public class ReportApi {
 		}
 	}
 
+	@GET
+	@Path("/{uuid}/geomfindings")
+	@Produces({ "application/geo+json" })
+	@Operation(summary = "Return ValidationReport",
+			description = "Returns the findings of the geometrical validation with {uuid} as GeoJSON",
+			responses = {
+					@ApiResponse(responseCode = "200", description = "successful operation",
+							content = @Content(schema = @Schema(implementation = FeatureCollection.class))),
+					@ApiResponse(responseCode = "404",
+							description = "Findings of the geometrical validation with {uuid} is not available or is expired"),
+					@ApiResponse(responseCode = "406", description = "Requested format is not available") })
+	public Response geomfindingsByUuid(
+			@PathParam("uuid") @Parameter(description = "UUID of the validation to be returned",
+					example = "uuid") String uuid)
+			throws EventExecutionException, StorageException, InvalidValidationUuid {
+		return geomfindings(uuid);
+	}
+
+	@GET
+	@Path("/{uuid}/geomfindings.json")
+	@Produces({ "application/geo+json" })
+	@Operation(summary = "Return ValidationReport",
+			description = "Returns the findings of the geometrical validation with {uuid} as GeoJSON",
+			responses = {
+					@ApiResponse(responseCode = "200", description = "successful operation",
+							content = @Content(schema = @Schema(implementation = FeatureCollection.class))),
+					@ApiResponse(responseCode = "404",
+							description = "Findings of the geometrical validation with {uuid} is not available or is expired"),
+					@ApiResponse(responseCode = "406", description = "Requested format is not available") })
+	public Response geomfindingsJsonByUuid(
+			@PathParam("uuid") @Parameter(description = "UUID of the validation to be returned",
+					example = "uuid") String uuid)
+			throws EventExecutionException, StorageException, InvalidValidationUuid {
+		return geomfindings(uuid);
+	}
+
+	private Response geomfindings(String uuid) throws EventExecutionException, InvalidValidationUuid, StorageException {
+		try {
+			byte[] report = validationExecutionStorage.retrieveReport(uuid, GEOJSON);
+			return Response.ok().entity(report).build();
+		}
+		catch (StorageException e) {
+			if (e.getStatusCode() == 404) {
+				throw new InvalidValidationUuid(uuid);
+			}
+			throw e;
+		}
+	}
+
 	private MediaType detectRequestedMediaType(Request request) {
 		Variant.VariantListBuilder acceptedMediaTypes = Variant.mediaTypes(APPLICATION_JSON_TYPE, APPLICATION_PDF_TYPE);
 		Variant selectVariant = request.selectVariant(acceptedMediaTypes.build());
diff --git a/xplan-manager/xplan-manager-api/src/main/resources/application.properties b/xplan-manager/xplan-manager-api/src/main/resources/application.properties
index 16e0bb6797b2a7602b67edd579220c13c9402bb3..4297b6a58a90f42c2285718c477dbff5982c39ec 100644
--- a/xplan-manager/xplan-manager-api/src/main/resources/application.properties
+++ b/xplan-manager/xplan-manager-api/src/main/resources/application.properties
@@ -1,6 +1,6 @@
 ###
 # #%L
-# xplan-api-manager - Modul zur Gruppierung der REST-API
+# xplan-manager-api - Modul zur Gruppierung der REST-API
 # %%
 # Copyright (C) 2008 - 2024 Freie und Hansestadt Hamburg, developed by lat/lon gesellschaft für raumbezogene Informationssysteme mbH
 # %%
diff --git a/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/config/TestContext.java b/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/config/TestContext.java
index 18f89812d4a42c093e50a4599e0a06af55f95013..8dfb8a5097c897d1537a067c6e1ec9e950ca5af4 100644
--- a/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/config/TestContext.java
+++ b/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/config/TestContext.java
@@ -32,12 +32,8 @@ import static org.mockito.Mockito.mock;
 import static org.mockito.Mockito.when;
 import static org.slf4j.LoggerFactory.getLogger;
 
-import java.io.IOException;
 import java.net.URI;
 import java.net.URISyntaxException;
-import java.nio.file.Files;
-import java.nio.file.Path;
-import java.nio.file.Paths;
 import java.sql.Connection;
 import java.sql.DatabaseMetaData;
 import java.sql.ResultSet;
@@ -180,7 +176,7 @@ public class TestContext {
 	@Primary
 	public ManagerApiConfiguration managerApiConfiguration() throws URISyntaxException {
 		ManagerApiConfiguration managerApiConfiguration = mock(ManagerApiConfiguration.class);
-		when(managerApiConfiguration.getApiUrl()).thenReturn(new URI("http://localhost:8080/xplan-api-manager/"));
+		when(managerApiConfiguration.getApiUrl()).thenReturn(new URI("http://localhost:8080/xplan-manager-api/"));
 		when(managerApiConfiguration.getDefaultValidationConfiguration())
 			.thenReturn(new DefaultValidationConfiguration());
 		return managerApiConfiguration;
@@ -221,37 +217,6 @@ public class TestContext {
 		return new XPlanRasterManager(rasterStorage, applicationEventPublisher);
 	}
 
-	private void initWorkspace(Path dir) throws IOException, URISyntaxException {
-		Path themesDir = dir.resolve("themes");
-		java.nio.file.Files.createDirectory(themesDir);
-		Files.copy(Paths.get(getClass().getResource("/bplanraster.xml").toURI()), themesDir.resolve("bplanraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/bplanraster.xml").toURI()),
-				themesDir.resolve("bplanpreraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/bplanraster.xml").toURI()),
-				themesDir.resolve("bplanarchiveraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/fplanraster.xml").toURI()), themesDir.resolve("fplanraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/fplanraster.xml").toURI()),
-				themesDir.resolve("fplanpreraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/fplanraster.xml").toURI()),
-				themesDir.resolve("fplanarchiveraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/rplanraster.xml").toURI()), themesDir.resolve("rplanraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/rplanraster.xml").toURI()),
-				themesDir.resolve("rplanpreraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/rplanraster.xml").toURI()),
-				themesDir.resolve("rplanarchiveraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/lplanraster.xml").toURI()), themesDir.resolve("lplanraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/lplanraster.xml").toURI()),
-				themesDir.resolve("lplanpreraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/lplanraster.xml").toURI()),
-				themesDir.resolve("lplanarchiveraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/soplanraster.xml").toURI()),
-				themesDir.resolve("soplanraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/soplanraster.xml").toURI()),
-				themesDir.resolve("soplanpreraster.xml"));
-		Files.copy(Paths.get(getClass().getResource("/soplanraster.xml").toURI()),
-				themesDir.resolve("soplanarchiveraster.xml"));
-	}
-
 	@Bean
 	@Primary
 	public XPlanDao xPlanDao(ManagerWorkspaceWrapper managerWorkspaceWrapper, ManagerConfiguration managerConfiguration)
diff --git a/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v1/PlanApiTest.java b/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v1/PlanApiTest.java
index c2ca4e0e6793e7632e35a49f853ccd64360020b5..4bea338c46080f491fa13e1bfa8b9f13a869b131 100644
--- a/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v1/PlanApiTest.java
+++ b/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v1/PlanApiTest.java
@@ -37,6 +37,7 @@ import java.io.IOException;
 import java.net.URISyntaxException;
 import java.nio.file.Files;
 import java.nio.file.Paths;
+import java.util.List;
 
 import de.latlon.xplanbox.api.manager.ManagerApiJerseyTest;
 import jakarta.ws.rs.client.Entity;
@@ -183,8 +184,9 @@ class PlanApiTest extends ManagerApiJerseyTest<PlanApi> {
 		assertThat(json.from(responseBody)).extractingJsonPathStringValue("$.version").isEqualTo(XPLAN_41.name());
 		assertThat(json.from(responseBody)).extractingJsonPathStringValue("$.planStatus")
 			.isEqualTo(FESTGESTELLT.name());
-		assertThat(json.from(responseBody)).hasJsonPath(
-				"$.links[?(@.rel=='self' && @.href=='http:\\/\\/localhost:8080\\/xplan-api-manager\\/xmanager\\/api\\/v1\\/plan\\/123')]");
+		assertThat(json.from(responseBody))
+			.extractingJsonPathArrayValue("$.links[?(@.rel=='self' && @.type=='application/json')].href")
+			.containsExactlyElementsOf(List.of("http://localhost:8080/xplan-manager-api/xmanager/api/v1/plan/123"));
 	}
 
 	@Test
@@ -198,7 +200,7 @@ class PlanApiTest extends ManagerApiJerseyTest<PlanApi> {
 		XmlAssert.assertThat(responseBody).valueByXPath("/planInfo/planStatus").isEqualTo(FESTGESTELLT.name());
 		XmlAssert.assertThat(responseBody)
 			.valueByXPath("/planInfo/links[rel='SELF']/href")
-			.isEqualTo("http://localhost:8080/xplan-api-manager/xmanager/api/v1/plan/123");
+			.isEqualTo("http://localhost:8080/xplan-manager-api/xmanager/api/v1/plan/123");
 	}
 
 	@Test
diff --git a/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v2/PlanApi2Test.java b/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v2/PlanApi2Test.java
index fd1c9c28e83d527a5cf213b3c9c76d98fa8bbcb0..7aa7510b0e69c77cec9c64d624f338b373cc0be5 100644
--- a/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v2/PlanApi2Test.java
+++ b/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v2/PlanApi2Test.java
@@ -35,6 +35,7 @@ import java.io.IOException;
 import java.net.URISyntaxException;
 import java.nio.file.Files;
 import java.nio.file.Paths;
+import java.util.List;
 
 import de.latlon.xplanbox.api.manager.ManagerApiJerseyTest;
 import jakarta.ws.rs.client.Entity;
@@ -166,8 +167,9 @@ class PlanApi2Test extends ManagerApiJerseyTest<PlanApi2> {
 		assertThat(json.from(responseBody)).extractingJsonPathStringValue("$.version").isEqualTo(XPLAN_41.name());
 		assertThat(json.from(responseBody)).extractingJsonPathStringValue("$.planStatus")
 			.isEqualTo(FESTGESTELLT.name());
-		assertThat(json.from(responseBody)).hasJsonPath(
-				"$.links[?(@.rel=='self' && @.href=='http:\\/\\/localhost:8080\\/xplan-api-manager\\/xmanager\\/api\\/v1\\/plan\\/123')]");
+		assertThat(json.from(responseBody))
+			.extractingJsonPathArrayValue("$.links[?(@.rel=='self' && @.type=='application/json')].href")
+			.containsExactlyElementsOf(List.of("http://localhost:8080/xplan-manager-api/api/v2/plan/123"));
 	}
 
 	@Test
diff --git a/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v2/ReportApiTest.java b/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v2/ReportApiTest.java
index f76b73b40f0d5bc75d4bfaae349037e3705c2f01..005a9dd8245254fa954cb2d6a1d10c6a2bc99060 100644
--- a/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v2/ReportApiTest.java
+++ b/xplan-manager/xplan-manager-api/src/test/java/de/latlon/xplanbox/api/manager/v2/ReportApiTest.java
@@ -20,4 +20,18 @@ public class ReportApiTest extends ManagerApiJerseyTest<ReportApi> {
 		assertEquals(Response.Status.NOT_FOUND.getStatusCode(), response.getStatus());
 	}
 
+	@Test
+	void verifyThat_reportGeomfindings_Response_withInvalidUuid() {
+		final Response response = target("/report/invalidUuid/geomfindings").request().get();
+
+		assertEquals(Response.Status.NOT_FOUND.getStatusCode(), response.getStatus());
+	}
+
+	@Test
+	void verifyThat_reportGeomfindingsJson_Response_withInvalidUuid() {
+		final Response response = target("/report/invalidUuid/geomfindings.json").request().get();
+
+		assertEquals(Response.Status.NOT_FOUND.getStatusCode(), response.getStatus());
+	}
+
 }
diff --git a/xplan-manager/xplan-manager-web/src/main/java/de/latlon/xplan/manager/web/server/service/ManagerReportProvider.java b/xplan-manager/xplan-manager-web/src/main/java/de/latlon/xplan/manager/web/server/service/ManagerReportProvider.java
index 867e024fb44426bdb24e65db0fbb04c74810e4f8..f4342d27dcce481b27e2aea79aa7a75f42ced40d 100644
--- a/xplan-manager/xplan-manager-web/src/main/java/de/latlon/xplan/manager/web/server/service/ManagerReportProvider.java
+++ b/xplan-manager/xplan-manager-web/src/main/java/de/latlon/xplan/manager/web/server/service/ManagerReportProvider.java
@@ -22,7 +22,7 @@ package de.latlon.xplan.manager.web.server.service;
 
 import de.latlon.xplan.validator.report.ReportWriter;
 import de.latlon.xplanbox.core.gwt.commons.server.service.ReportProvider;
-import de.latlon.xplan.validator.web.shared.ArtifactType;
+import de.latlon.xplan.validator.web.shared.ReportFormatType;
 import org.springframework.beans.factory.annotation.Autowired;
 
 import jakarta.servlet.http.HttpServletResponse;
@@ -58,7 +58,7 @@ public class ManagerReportProvider implements ReportProvider {
 
 	@Override
 	public void writeZipReport(HttpServletResponse response, String planUuid, String validationName,
-			List<ArtifactType> artifacts) throws IOException {
+			List<ReportFormatType> artifacts) throws IOException {
 		Path planDirectory = planArchiveManager.createReportDirectory(planUuid);
 		reportWriter.writeZipWithArtifacts(response.getOutputStream(), validationName, artifacts, planDirectory);
 	}
diff --git a/xplan-tests/xplan-tests-integration/README.md b/xplan-tests/xplan-tests-integration/README.md
index 0c81964974fb77690301011e13374c0b86ffd3f3..0d13aef372cb5238c00ae6acf71909c4aff0a17d 100644
--- a/xplan-tests/xplan-tests-integration/README.md
+++ b/xplan-tests/xplan-tests-integration/README.md
@@ -2,6 +2,8 @@
 
 Die Tests in diesem Projekt sind nicht gedacht, um direkt als Teil vom Build ausgeführt zu werden sondern eher zu einem späteren Zeitpunkt, wenn die Anwendungen schon deployt worden sind.
 
+Bei einer lokale Ausführung der Tests muss der Webbrowser "Google Chrome" installiert sein.
+
 ## Ausführung mit Maven
 
 ```
diff --git a/xplan-tests/xplan-tests-integration/src/test/java/de/latlon/xplanbox/tests/selenium/validatorweb/XPlanValidatorWebIT.java b/xplan-tests/xplan-tests-integration/src/test/java/de/latlon/xplanbox/tests/selenium/validatorweb/XPlanValidatorWebIT.java
index a0fdbb32ca62c6bbcaa212ef508afce1c9d3c00f..31e4eae60177c96b21a15d07148f409aa3a5eebe 100644
--- a/xplan-tests/xplan-tests-integration/src/test/java/de/latlon/xplanbox/tests/selenium/validatorweb/XPlanValidatorWebIT.java
+++ b/xplan-tests/xplan-tests-integration/src/test/java/de/latlon/xplanbox/tests/selenium/validatorweb/XPlanValidatorWebIT.java
@@ -230,8 +230,8 @@ class XPlanValidatorWebIT {
 		driver.switchTo().frame(iframe);
 
 		String validationName = driver.findElement(By.xpath("//body/p[1]/b")).getText();
-		String planName = driver.findElement(By.xpath("//body/p[7]/b/b")).getText();
-		String valide = driver.findElement(By.xpath("//body/b[1]/p[2]/b/font")).getText();
+		String planName = driver.findElement(By.xpath("//body/p[7]/b")).getText();
+		String valide = driver.findElement(By.xpath("//body/p[9]/b/font")).getText();
 
 		assertEquals(expectedValidationName, validationName);
 		assertEquals(expectedPlanName, planName);
diff --git a/xplan-tests/xplan-tests-soapui/src/main/resources/xplan-manager-api-soapui-project.xml b/xplan-tests/xplan-tests-soapui/src/main/resources/xplan-manager-api-soapui-project.xml
index f975c73e704e516f6b6d87bb96f8e78416a84915..94a502271daca1e22bd95e1b6c9e28d33a981d7b 100644
--- a/xplan-tests/xplan-tests-soapui/src/main/resources/xplan-manager-api-soapui-project.xml
+++ b/xplan-tests/xplan-tests-soapui/src/main/resources/xplan-manager-api-soapui-project.xml
@@ -63,6 +63,12 @@ OpenAPI document</con:description>
           <con:params/>
           <con:element>data</con:element>
         </con:representation>
+        <con:representation type="RESPONSE">
+          <con:mediaType xsi:nil="true"/>
+          <con:status>0</con:status>
+          <con:params/>
+          <con:element>data</con:element>
+        </con:representation>
         <con:request name="Request 1" id="e8223f9a-1c6b-40dd-b28d-ce2681af9b55" mediaType="application/json">
           <con:settings/>
           <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/xmanager/api/v1</con:endpoint>
@@ -325,6 +331,42 @@ Import the plan</con:description>
           <con:mediaType>application/gml+xml</con:mediaType>
           <con:params/>
         </con:representation>
+        <con:representation type="RESPONSE">
+          <con:mediaType xsi:nil="true"/>
+          <con:status>0</con:status>
+          <con:params/>
+          <con:element>data</con:element>
+        </con:representation>
+        <con:representation type="RESPONSE">
+          <con:mediaType xsi:nil="true"/>
+          <con:status>0</con:status>
+          <con:params/>
+          <con:element>data</con:element>
+        </con:representation>
+        <con:representation type="RESPONSE">
+          <con:mediaType xsi:nil="true"/>
+          <con:status>0</con:status>
+          <con:params/>
+          <con:element>data</con:element>
+        </con:representation>
+        <con:representation type="RESPONSE">
+          <con:mediaType xsi:nil="true"/>
+          <con:status>0</con:status>
+          <con:params/>
+          <con:element>data</con:element>
+        </con:representation>
+        <con:representation type="RESPONSE">
+          <con:mediaType xsi:nil="true"/>
+          <con:status>0</con:status>
+          <con:params/>
+          <con:element>data</con:element>
+        </con:representation>
+        <con:representation type="RESPONSE">
+          <con:mediaType xsi:nil="true"/>
+          <con:status>0</con:status>
+          <con:params/>
+          <con:element>data</con:element>
+        </con:representation>
         <con:request name="Request 1" id="0ab9bfa6-1c76-41df-b253-dabff57568f7" mediaType="application/json" postQueryString="false">
           <con:settings/>
           <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/xmanager/api/v1</con:endpoint>
@@ -2210,9 +2252,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="9c116865-1397-455f-9261-af3b7d0f17cb" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -2220,6 +2291,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="9c116865-1397-455f-9261-af3b7d0f17cb" name="link planwerk">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -2402,9 +2482,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="031ac702-0dd7-4ee6-b0a2-af9b263d6af3" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/vnd.xplanbox.api+json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -2412,6 +2521,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="201ce67b-392b-4c79-b660-bcac1981f760" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -2538,7 +2656,36 @@ assert actualHeader != null</scriptText>
             </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
               <con:configuration>
-                <path>$[0].links[?(@.rel == 'self' &amp;&amp; @.type == 'application/vnd.xplanbox.api.v2+json')].href</path>
+                <path>$[0].links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -2546,6 +2693,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="76746657-6e7d-4550-a451-403b37a970e0" name="link planwerkwms">
               <con:configuration>
                 <path>$[0].links[?(@.rel == 'planwerkwms')].href</path>
@@ -2727,9 +2883,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="1c5514d8-72bf-4781-87eb-227faffc6315" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/vnd.xplanbox.api.v1+json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -2737,6 +2922,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="1c5514d8-72bf-4781-87eb-227faffc6315" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -2902,9 +3096,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="abf825ba-2931-4771-aec7-ce9676321275" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$[0].links[?(@.rel == 'self' &amp;&amp; @.type == 'application/vnd.xplanbox.api.v2+json')].href</path>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -2912,6 +3135,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="abf825ba-2931-4771-aec7-ce9676321275" name="link planwerkwms">
               <con:configuration>
                 <path>$[0].links[?(@.rel == 'planwerkwms')].href</path>
@@ -3140,9 +3372,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="d66e6bfc-96cf-4ab7-9fd1-b3fc16a50325" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -3150,6 +3411,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="d66e6bfc-96cf-4ab7-9fd1-b3fc16a50325" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -3265,9 +3535,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="e1a6634c-04ec-4828-b6b6-abfbdd1868ea" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/vnd.xplanbox.api+json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -3275,6 +3574,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="e1a6634c-04ec-4828-b6b6-abfbdd1868ea" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -3459,9 +3767,9 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="af4ba2fe-caa2-4617-9f25-5523e3406462" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/vnd.xplanbox.api+json')].href</path>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -3469,17 +3777,55 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="af4ba2fe-caa2-4617-9f25-5523e3406462" name="link planwerkwms">
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
               <con:configuration>
-                <path>$.links[?(@.rel == 'planwerkwms')].href</path>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
                 <ignoreComments>false</ignoreComments>
-                <regEx>^.*/services/planwerkwms/planname/.*$</regEx>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
-            <con:credentials>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="af4ba2fe-caa2-4617-9f25-5523e3406462" name="link planwerkwms">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'planwerkwms')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/services/planwerkwms/planname/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:credentials>
               <con:username>${#Project#username}</con:username>
               <con:password>${#Project#password}</con:password>
               <con:domain xsi:nil="true"/>
@@ -3806,9 +4152,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="6ea52527-2a67-45db-be8c-5c5db7cd4e2e" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$[0].links[?(@.rel == 'self' &amp;&amp; @.type == 'application/vnd.xplanbox.api.v2+json')].href</path>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -3816,6 +4191,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="6ea52527-2a67-45db-be8c-5c5db7cd4e2e" name="link planwerkwms">
               <con:configuration>
                 <path>$[0].links[?(@.rel == 'planwerkwms')].href</path>
@@ -3936,9 +4320,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="766fb9a5-8bf7-472d-9365-6259e042b62f" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -3946,6 +4359,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="766fb9a5-8bf7-472d-9365-6259e042b62f" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -4116,9 +4538,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="4823fa45-b923-4621-8a26-1cf2777f11d3" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -4126,6 +4577,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="4823fa45-b923-4621-8a26-1cf2777f11d3" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -4246,9 +4706,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="c62350b9-98d9-4816-bd38-931acba8f34f" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -4256,6 +4745,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="c62350b9-98d9-4816-bd38-931acba8f34f" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -4385,9 +4883,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="9153eaa6-ceea-42c0-a549-1c2eb912c705" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$[0].links[?(@.rel == 'self' &amp;&amp; @.type == 'application/vnd.xplanbox.api.v2+json')].href</path>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -4395,6 +4922,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="9153eaa6-ceea-42c0-a549-1c2eb912c705" name="link planwerkwms">
               <con:configuration>
                 <path>$[0].links[?(@.rel == 'planwerkwms')].href</path>
@@ -4510,9 +5046,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="11f6bdb1-6e35-43b9-aaab-19f19bb9fce5" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -4520,6 +5085,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="11f6bdb1-6e35-43b9-aaab-19f19bb9fce5" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -4642,9 +5216,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="529a68b9-7584-4c7c-85b3-7a64cef98107" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -4652,6 +5255,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="529a68b9-7584-4c7c-85b3-7a64cef98107" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -4772,9 +5384,9 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="4f6d7a6b-5d7f-4341-8e62-26b8afbb0db7" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -4782,33 +5394,71 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="4f6d7a6b-5d7f-4341-8e62-26b8afbb0db7" name="link planwerkwms">
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
               <con:configuration>
-                <path>$.links[?(@.rel == 'planwerkwms')].href</path>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
                 <ignoreComments>false</ignoreComments>
-                <regEx>^.*/services/planwerkwms/planname/.*$</regEx>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
-            <con:credentials>
-              <con:username>${#Project#username}</con:username>
-              <con:password>${#Project#password}</con:password>
-              <con:domain xsi:nil="true"/>
-              <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
-              <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
-              <con:preemptive>true</con:preemptive>
-              <con:authType>Preemptive</con:authType>
-            </con:credentials>
-            <con:attachment>
-              <con:name>BPlan003_6-0.zip</con:name>
-              <con:contentType>application/octet-stream</con:contentType>
-              <con:contentId>BPlan003_6-0.zip</con:contentId>
-              <con:url>${projectDir}/xplan-manager-api/plans/BPlan003_6-0.zip</con:url>
-              <con:id>0c70fade-2e59-43eb-a59a-ee6dcbd05e46</con:id>
-            </con:attachment>
-            <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="4f6d7a6b-5d7f-4341-8e62-26b8afbb0db7" name="link planwerkwms">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'planwerkwms')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/services/planwerkwms/planname/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:credentials>
+              <con:username>${#Project#username}</con:username>
+              <con:password>${#Project#password}</con:password>
+              <con:domain xsi:nil="true"/>
+              <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+              <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+              <con:preemptive>true</con:preemptive>
+              <con:authType>Preemptive</con:authType>
+            </con:credentials>
+            <con:attachment>
+              <con:name>BPlan003_6-0.zip</con:name>
+              <con:contentType>application/octet-stream</con:contentType>
+              <con:contentId>BPlan003_6-0.zip</con:contentId>
+              <con:url>${projectDir}/xplan-manager-api/plans/BPlan003_6-0.zip</con:url>
+              <con:id>0c70fade-2e59-43eb-a59a-ee6dcbd05e46</con:id>
+            </con:attachment>
+            <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
             <con:jmsPropertyConfig/>
             <con:parameters>
               <entry key="skipLaufrichtung" value="" xmlns="http://eviware.com/soapui/config"/>
@@ -4902,9 +5552,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="81108919-8476-43a4-ac18-159e41f544e6" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -4912,6 +5591,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="81108919-8476-43a4-ac18-159e41f544e6" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -5032,9 +5720,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="dfb288e8-2f67-4e67-b6f9-e513800fd317" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -5042,6 +5759,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="dfb288e8-2f67-4e67-b6f9-e513800fd317" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -5153,9 +5879,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="9406a6f9-31e9-4e4d-b5bd-fe9114559d7e" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -5163,6 +5918,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="9406a6f9-31e9-4e4d-b5bd-fe9114559d7e" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -5487,9 +6251,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="bf38df3f-26d1-46dd-a36e-dd867f43d213" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -5497,6 +6290,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="bf38df3f-26d1-46dd-a36e-dd867f43d213" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -5612,9 +6414,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="0c1db00d-5c3a-4c39-8115-1461a362cdf7" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -5622,6 +6453,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="0c1db00d-5c3a-4c39-8115-1461a362cdf7" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -5734,9 +6574,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="0d992970-3dec-42a4-8eab-e40496494b23" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -5744,6 +6613,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="0d992970-3dec-42a4-8eab-e40496494b23" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -5867,9 +6745,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="5216eb6b-85a7-4122-9389-62bf3bedfcdd" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -5877,6 +6784,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="5216eb6b-85a7-4122-9389-62bf3bedfcdd" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -6008,9 +6924,9 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="76366bea-4f40-4e20-b8dd-9d1a5d4293c1" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -6018,17 +6934,55 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="76366bea-4f40-4e20-b8dd-9d1a5d4293c1" name="link planwerkwms">
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
               <con:configuration>
-                <path>$.links[?(@.rel == 'planwerkwms')].href</path>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
                 <ignoreComments>false</ignoreComments>
-                <regEx>^.*/services/planwerkwmspre/planname/.*$</regEx>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
-            <con:credentials>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="76366bea-4f40-4e20-b8dd-9d1a5d4293c1" name="link planwerkwms">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'planwerkwms')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/services/planwerkwmspre/planname/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:credentials>
               <con:username>${#Project#username}</con:username>
               <con:password>${#Project#password}</con:password>
               <con:domain xsi:nil="true"/>
@@ -6540,9 +7494,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="16562d56-38a6-4e35-95e1-fdc39fe008fa" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$[0].links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -6550,6 +7533,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="16562d56-38a6-4e35-95e1-fdc39fe008fa" name="link planwerkwms">
               <con:configuration>
                 <path>$[0].links[?(@.rel == 'planwerkwms')].href</path>
@@ -6715,9 +7707,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="4a57e07a-a8c7-4341-92cd-ce53cb3a5cc2" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$[0].links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -6725,6 +7746,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="4a57e07a-a8c7-4341-92cd-ce53cb3a5cc2" name="link planwerkwms">
               <con:configuration>
                 <path>$[0].links[?(@.rel == 'planwerkwms')].href</path>
@@ -6821,9 +7851,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="a882fdf6-8bd3-4a7e-af73-632f788811b6" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$[0].links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -6831,6 +7890,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="a882fdf6-8bd3-4a7e-af73-632f788811b6" name="link planwerkwms">
               <con:configuration>
                 <path>$[0].links[?(@.rel == 'planwerkwms')].href</path>
@@ -6918,9 +7986,38 @@ assert actualHeader != null</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="6d6a0d2d-70e8-4ede-9ebe-9d543ad40610" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$[0].links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$[0].links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -6928,6 +8025,15 @@ assert actualHeader != null</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$[0].links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="6d6a0d2d-70e8-4ede-9ebe-9d543ad40610" name="link planwerkwms">
               <con:configuration>
                 <path>$[0].links[?(@.rel == 'planwerkwms')].href</path>
@@ -18072,9 +19178,38 @@ if (documentUrl != "null"){
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="8b3c24e4-9eb8-4676-9a4e-57a4c6f3747b" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -18082,6 +19217,15 @@ if (documentUrl != "null"){
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="8b3c24e4-9eb8-4676-9a4e-57a4c6f3747b" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -18186,6 +19330,42 @@ if (documentUrl != "null"){
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="XPath Match" id="319a5f6f-d339-465f-9f40-a0a0ec856134" name="link self count">
+              <con:configuration>
+                <path>count(/planInfo/links[rel='SELF']/href[contains(., '/api/v1/plan/')])</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="XPath Match" id="319a5f6f-d339-465f-9f40-a0a0ec856134" name="link alternate json">
+              <con:configuration>
+                <path>contains(/planInfo/links[rel='ALTERNATE'][type='application/json']/href, '/api/v1/plan/')</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="XPath Match" id="319a5f6f-d339-465f-9f40-a0a0ec856134" name="link alternate zip">
+              <con:configuration>
+                <path>contains(/planInfo/links[rel='ALTERNATE'][type='application/zip']/href, '/api/v1/plan/')</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="XPath Match" id="319a5f6f-d339-465f-9f40-a0a0ec856134" name="link alternate count">
+              <con:configuration>
+                <path>count(/planInfo/links[rel='ALTERNATE']/href[contains(., '/api/v1/plan/')])</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="XPath Match" id="319a5f6f-d339-465f-9f40-a0a0ec856134" name="link planwerkwms">
               <con:configuration>
                 <path>contains(/planInfo/links[rel='PLANWERKWMS']/href, '/services/planwerkwms/planname/')</path>
@@ -18359,9 +19539,38 @@ assert expectedHeader == actualHeader</scriptText>
                 <ignoreComments>false</ignoreComments>
               </con:configuration>
             </con:assertion>
-            <con:assertion type="JsonPath RegEx Match" id="5d67e227-dc12-474d-887c-a831ad62b6bd" name="link self">
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'self')]</path>
+                <content>1</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate xml">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/xml')].href</path>
+                <content>true</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+                <regEx>^.*/api/v1/plan/.*$</regEx>
+              </con:configuration>
+            </con:assertion>
+            <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link alternate zip">
               <con:configuration>
-                <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+                <path>$.links[?(@.rel == 'alternate' &amp;&amp; @.type == 'application/zip')].href</path>
                 <content>true</content>
                 <allowWildcards>false</allowWildcards>
                 <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
@@ -18369,6 +19578,15 @@ assert expectedHeader == actualHeader</scriptText>
                 <regEx>^.*/api/v1/plan/.*$</regEx>
               </con:configuration>
             </con:assertion>
+            <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link alternate count">
+              <con:configuration>
+                <path>$.links[?(@.rel == 'alternate')]</path>
+                <content>2</content>
+                <allowWildcards>false</allowWildcards>
+                <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+                <ignoreComments>false</ignoreComments>
+              </con:configuration>
+            </con:assertion>
             <con:assertion type="JsonPath RegEx Match" id="5d67e227-dc12-474d-887c-a831ad62b6bd" name="link planwerkwms">
               <con:configuration>
                 <path>$.links[?(@.rel == 'planwerkwms')].href</path>
@@ -21233,64 +22451,100 @@ assert expectedHeader == actualHeader</scriptText>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Match" id="338faceb-131f-43eb-bf38-2bf035ec149f" name="path /">
+          <con:assertion type="JsonPath RegEx Match" id="c7bcd776-0947-4d88-923d-e40eb4bb599c" name="info.version">
             <con:configuration>
-              <path>$.paths./.get.operationId</path>
-              <content>openApi</content>
+              <path>$.info.version</path>
+              <content>true</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
+              <regEx>2.*</regEx>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Match" id="338faceb-131f-43eb-bf38-2bf035ec149f" name="path /report/{uuid}">
+          <con:assertion type="JsonPath Match" id="338faceb-131f-43eb-bf38-2bf035ec149f" name="path /">
             <con:configuration>
-              <path>$.paths./report/{uuid}.get.operationId</path>
-              <content>reportByUuid</content>
+              <path>$.paths./.get.operationId</path>
+              <content>openApi</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath RegEx Match" id="c7bcd776-0947-4d88-923d-e40eb4bb599c" name="version">
+          <con:assertion type="JsonPath Match" id="338faceb-131f-43eb-bf38-2bf035ec149f" name="path /plan response 200 description">
             <con:configuration>
-              <path>$.info.version</path>
-              <content>true</content>
+              <path>$.paths./plan.post.responses.200.description</path>
+              <content>ImportReceipt with uuid of the import</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
-              <regEx>2.*</regEx>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Existence Match" id="baefa2ef-b925-44ef-b1bb-3e43e1a95a34" name="PlanInfo">
+          <con:assertion type="JsonPath Match" id="338faceb-131f-43eb-bf38-2bf035ec149f" name="path /report/{uuid}">
             <con:configuration>
-              <path>$.components.schemas.PlanInfo</path>
-              <content>true</content>
+              <path>$.paths./report/{uuid}.get.operationId</path>
+              <content>reportByUuid</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Existence Match" id="baefa2ef-b925-44ef-b1bb-3e43e1a95a34" name="ValidationReport">
+          <con:assertion type="JsonPath Match" id="2397109c-69bb-40f6-9b5a-2f5db5d69ade" name="path /report/{uuid}/geomfindings">
             <con:configuration>
-              <path>$.components.schemas.ValidationReport</path>
-              <content>true</content>
+              <path>$.paths./report/{uuid}/geomfindings.get.operationId</path>
+              <content>geomfindingsByUuid</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Match" id="338faceb-131f-43eb-bf38-2bf035ec149f" name="path /plan response 200 description">
+          <con:assertion type="JsonPath Existence Match" id="fc254bba-c565-40fd-be0b-d265e6144a76" name="path /report/{uuid}/geomfindings response 406 exists">
             <con:configuration>
-              <path>$.paths./plan.post.responses.200.description</path>
-              <content>ImportReceipt with uuid of the import</content>
+              <path>$.paths./report/{uuid}/geomfindings.get.responses.406</path>
+              <content>true</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:credentials>
-            <con:username>${#Project#username}</con:username>
-            <con:password>${#Project#password}</con:password>
+          <con:assertion type="GroovyScriptAssertion" id="eb77ee0a-79c2-4ea5-a3c0-4bc0011fcd06" name="path /report/{uuid}/geomfindings.json">
+            <con:configuration>
+              <scriptText>import groovy.json.JsonSlurper
+
+def json = new JsonSlurper().parseText(messageExchange.response.responseContent)
+
+assert json.paths.'/report/{uuid}/geomfindings.json'.get.operationId == 'geomfindingsJsonByUuid'</scriptText>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="GroovyScriptAssertion" id="01846f0c-e87d-4974-9eb6-38ed2e944029" name="path /report/{uuid}/geomfindings.json response 406 exists">
+            <con:configuration>
+              <scriptText>import groovy.json.JsonSlurper
+
+def json = new JsonSlurper().parseText(messageExchange.response.responseContent)
+
+assert json.paths.'/report/{uuid}/geomfindings.json'.get.responses.'406'</scriptText>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Existence Match" id="baefa2ef-b925-44ef-b1bb-3e43e1a95a34" name="schema PlanInfo">
+            <con:configuration>
+              <path>$.components.schemas.PlanInfo</path>
+              <content>true</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="a0fe450e-b235-4d07-bf3b-edd930c011f6" name="schema ValidationReport geomfindings">
+            <con:configuration>
+              <path>$.components.schemas.ValidationReport.properties.geomfindings.$ref</path>
+              <content>#/components/schemas/FeatureCollection</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
             <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
             <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
             <con:preemptive>true</con:preemptive>
@@ -22145,55 +23399,301 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
           <con:parameters/>
         </con:config>
       </con:testStep>
-      <con:testStep type="groovy" name="pollStatusMismatchingTypes" id="3babb438-a8e0-4474-a305-647b06b616da">
-        <con:settings/>
-        <con:config>
-          <script>import groovy.json.JsonSlurper
-
-def testStepName = "GET BP 6.0.2 XX pollStatusMismatchingTypes"
-def response = testRunner.testCase.getTestStepByName(testStepName).getPropertyValue("Response")
-def json = new JsonSlurper().parseText(response)
-
-if( context.loopIndex == null )
-	context.loopIndex = 0
-
-if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
-	sleep(1000)
-	testRunner.gotoStepByName(testStepName)
-} else if (context.loopIndex == 40) {
-	context.loopIndex = null
-	assert(false)
-} else {
-	context.loopIndex = null
-}</script>
-        </con:config>
-      </con:testStep>
-      <con:testStep type="httprequest" name="GET BP 6.0.2 XX mismatchingContentTypeAndFileType" id="376bae1d-09d7-4f00-803a-cb9da3c4b22b">
+      <con:testStep type="groovy" name="pollStatusMismatchingTypes" id="3babb438-a8e0-4474-a305-647b06b616da">
+        <con:settings/>
+        <con:config>
+          <script>import groovy.json.JsonSlurper
+
+def testStepName = "GET BP 6.0.2 XX pollStatusMismatchingTypes"
+def response = testRunner.testCase.getTestStepByName(testStepName).getPropertyValue("Response")
+def json = new JsonSlurper().parseText(response)
+
+if( context.loopIndex == null )
+	context.loopIndex = 0
+
+if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
+	sleep(1000)
+	testRunner.gotoStepByName(testStepName)
+} else if (context.loopIndex == 40) {
+	context.loopIndex = null
+	assert(false)
+} else {
+	context.loopIndex = null
+}</script>
+        </con:config>
+      </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX mismatchingContentTypeAndFileType" id="376bae1d-09d7-4f00-803a-cb9da3c4b22b">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="d219264b-19a2-4e32-bda8-d1d431e563e9" name="GET BP 6.0.2 XX mismatchingContentTypeAndFileType" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/status/${#TestSuite#uuidMismatchingTypes}</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="706a255f-d031-4dfe-b078-d7098c7d2b4a" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>200</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="4f337b40-5001-46e3-ae48-6c4fcc1920a5" name="status">
+            <con:configuration>
+              <path>$.status</path>
+              <content>VALIDATION_FAILED</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="c1848a54-240f-4a71-a77d-d352334d6b1f" name="errorMsg">
+            <con:configuration>
+              <path>$.errorMsg</path>
+              <content>Could not read attached file as XPlanGML</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidUuidExpectError404" id="bbb4f23e-2fd0-4cab-856f-8cae8679b1a6">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="d219264b-19a2-4e32-bda8-d1d431e563e9" name="GET BP 6.0.2 XX invalidUuidExpectError404" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/status/invalid</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="706a255f-d031-4dfe-b078-d7098c7d2b4a" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>404</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" id="6d808e19-6722-4ed2-ae65-8c16efcc698f">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="d219264b-19a2-4e32-bda8-d1d431e563e9" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="invalid" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/status/${#TestSuite#uuid}</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="706a255f-d031-4dfe-b078-d7098c7d2b4a" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>406</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:properties/>
+    </con:testCase>
+    <con:testCase id="67870df1-23e1-4192-889c-1215d60abdef" failOnError="false" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="/report/{uuid} TestCase" searchProperties="true" timeout="0" wsrmEnabled="false" wsrmVersion="1.0" wsrmAckTo="" amfAuthorisation="false" amfEndpoint="" amfLogin="" amfPassword="">
+      <con:description>Tests für den "/status/{uuid}"-Pfad</con:description>
+      <con:settings/>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX retrieveReportJson" id="85410f40-220a-4e1a-9010-c0ea528c6445">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX retrieveReportJson" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestSuite#uuid}</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>200</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="f1ed37db-538c-4c70-b650-bde8b1c510e2" name="plans.name">
+            <con:configuration>
+              <path>$.plans[?(@.name == 'BPlan_SO-Objekte-Test_6-0-2_SoapUI-XPlanManagerAPI')].name</path>
+              <content>[BPlan_SO-Objekte-Test_6-0-2_SoapUI-XPlanManagerAPI]</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="f1ed37db-538c-4c70-b650-bde8b1c510e2" name="plans.type">
+            <con:configuration>
+              <path>$.plans[?(@.name == 'BPlan_SO-Objekte-Test_6-0-2_SoapUI-XPlanManagerAPI')].type</path>
+              <content>[BP_Plan]</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX retrieveReportPdf" id="e6cae4d0-b1ed-4ebd-980e-1258d6608047">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX retrieveReportPdf" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/pdf" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestSuite#uuid}</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>200</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="XPath Match" id="e6a3edaf-71fd-4bc3-b441-7ed174a5932c" name="contentType">
+            <con:configuration>
+              <path>/data/@contentType</path>
+              <content>application/pdf</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidUuidExpectError404" id="b62b4284-57e9-49e4-8f2c-b675d679c233">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="d219264b-19a2-4e32-bda8-d1d431e563e9" name="GET BP 6.0.2 XX invalidUuidExpectError404" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/invalid</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="706a255f-d031-4dfe-b078-d7098c7d2b4a" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>404</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" id="b41034a8-dd5c-4b35-98a9-43ab9b8e2baa">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="d219264b-19a2-4e32-bda8-d1d431e563e9" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="invalid" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestSuite#uuid}</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="706a255f-d031-4dfe-b078-d7098c7d2b4a" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>406</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:properties/>
+    </con:testCase>
+    <con:testCase id="9bed2e5b-6a9c-4da6-a527-01affd76103e" failOnError="false" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="/report/{uuid}/geomfindings TestCase" searchProperties="true" timeout="0" wsrmEnabled="false" wsrmVersion="1.0" wsrmAckTo="" amfAuthorisation="false" amfEndpoint="" amfLogin="" amfPassword="">
+      <con:description>Tests für den "/report/{uuid}/geomfindings"-Pfad</con:description>
+      <con:settings/>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX retrieveGeomfindings" id="88b564b2-2628-4f72-ac57-5d4ee11976eb">
         <con:settings/>
-        <con:config method="GET" xsi:type="con:HttpRequest" id="d219264b-19a2-4e32-bda8-d1d431e563e9" name="GET BP 6.0.2 XX mismatchingContentTypeAndFileType" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX retrieveGeomfindings" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <con:settings>
-            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/geo+json" xmlns="http://eviware.com/soapui/config"/></con:setting>
           </con:settings>
-          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/status/${#TestSuite#uuidMismatchingTypes}</con:endpoint>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestSuite#uuid}/geomfindings</con:endpoint>
           <con:request/>
-          <con:assertion type="Valid HTTP Status Codes" id="706a255f-d031-4dfe-b078-d7098c7d2b4a" name="Valid HTTP Status Codes">
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
             <con:configuration>
               <codes>200</codes>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Match" id="4f337b40-5001-46e3-ae48-6c4fcc1920a5" name="status">
+          <con:assertion type="JsonPath Match" id="d7f432a9-5dd7-46bb-80ad-e8e78f623aa8" name="type">
             <con:configuration>
-              <path>$.status</path>
-              <content>VALIDATION_FAILED</content>
+              <path>$.type</path>
+              <content>FeatureCollection</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Match" id="c1848a54-240f-4a71-a77d-d352334d6b1f" name="errorMsg">
+          <con:assertion type="JsonPath Match" id="d7f432a9-5dd7-46bb-80ad-e8e78f623aa8" name="bbox">
             <con:configuration>
-              <path>$.errorMsg</path>
-              <content>Could not read attached file as XPlanGML</content>
+              <path>$.bbox</path>
+              <content>null</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="d7f432a9-5dd7-46bb-80ad-e8e78f623aa8" name="features">
+            <con:configuration>
+              <path>$.features</path>
+              <content>[]</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
@@ -22212,15 +23712,15 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
           <con:parameters/>
         </con:config>
       </con:testStep>
-      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidUuidExpectError404" id="bbb4f23e-2fd0-4cab-856f-8cae8679b1a6">
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidUuidExpectError404" id="29a869ba-0b72-4035-8d1d-37453b496b54">
         <con:settings/>
-        <con:config method="GET" xsi:type="con:HttpRequest" id="d219264b-19a2-4e32-bda8-d1d431e563e9" name="GET BP 6.0.2 XX invalidUuidExpectError404" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX invalidUuidExpectError404" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <con:settings>
-            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/geo+json" xmlns="http://eviware.com/soapui/config"/></con:setting>
           </con:settings>
-          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/status/invalid</con:endpoint>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/invalid/geomfindings</con:endpoint>
           <con:request/>
-          <con:assertion type="Valid HTTP Status Codes" id="706a255f-d031-4dfe-b078-d7098c7d2b4a" name="Valid HTTP Status Codes">
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
             <con:configuration>
               <codes>404</codes>
             </con:configuration>
@@ -22238,15 +23738,15 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
           <con:parameters/>
         </con:config>
       </con:testStep>
-      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" id="6d808e19-6722-4ed2-ae65-8c16efcc698f">
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" id="19ca2181-ad13-4ae6-b4fb-4b34de7568b6">
         <con:settings/>
-        <con:config method="GET" xsi:type="con:HttpRequest" id="d219264b-19a2-4e32-bda8-d1d431e563e9" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <con:settings>
-            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="invalid" xmlns="http://eviware.com/soapui/config"/></con:setting>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
           </con:settings>
-          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/status/${#TestSuite#uuid}</con:endpoint>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestSuite#uuid}/geomfindings</con:endpoint>
           <con:request/>
-          <con:assertion type="Valid HTTP Status Codes" id="706a255f-d031-4dfe-b078-d7098c7d2b4a" name="Valid HTTP Status Codes">
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
             <con:configuration>
               <codes>406</codes>
             </con:configuration>
@@ -22266,35 +23766,44 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
       </con:testStep>
       <con:properties/>
     </con:testCase>
-    <con:testCase id="67870df1-23e1-4192-889c-1215d60abdef" failOnError="false" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="/report/{uuid} TestCase" searchProperties="true" timeout="0" wsrmEnabled="false" wsrmVersion="1.0" wsrmAckTo="" amfAuthorisation="false" amfEndpoint="" amfLogin="" amfPassword="">
-      <con:description>Tests für den "/status/{uuid}"-Pfad</con:description>
+    <con:testCase id="9b6558ff-76b1-4c95-9911-f521141fbcd9" failOnError="false" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="/report/{uuid}/geomfindings.json TestCase" searchProperties="true" timeout="0" wsrmEnabled="false" wsrmVersion="1.0" wsrmAckTo="" amfAuthorisation="false" amfEndpoint="" amfLogin="" amfPassword="">
+      <con:description>Tests für den "/report/{uuid}/geomfindings.json"-Pfad</con:description>
       <con:settings/>
-      <con:testStep type="httprequest" name="GET BP 6.0.2 XX retrieveReportJson" id="85410f40-220a-4e1a-9010-c0ea528c6445">
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX retrieveGeomfindings" id="81505cf3-1b14-42ef-b175-3484cce434a0">
         <con:settings/>
-        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX retrieveReportJson" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX retrieveGeomfindings" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <con:settings>
-            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/geo+json" xmlns="http://eviware.com/soapui/config"/></con:setting>
           </con:settings>
-          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestSuite#uuid}</con:endpoint>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestSuite#uuid}/geomfindings.json</con:endpoint>
           <con:request/>
           <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
             <con:configuration>
               <codes>200</codes>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Match" id="f1ed37db-538c-4c70-b650-bde8b1c510e2" name="plans.name">
+          <con:assertion type="JsonPath Match" id="d7f432a9-5dd7-46bb-80ad-e8e78f623aa8" name="type">
             <con:configuration>
-              <path>$.plans[?(@.name == 'BPlan_SO-Objekte-Test_6-0-2_SoapUI-XPlanManagerAPI')].name</path>
-              <content>[BPlan_SO-Objekte-Test_6-0-2_SoapUI-XPlanManagerAPI]</content>
+              <path>$.type</path>
+              <content>FeatureCollection</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Match" id="f1ed37db-538c-4c70-b650-bde8b1c510e2" name="plans.type">
+          <con:assertion type="JsonPath Match" id="d7f432a9-5dd7-46bb-80ad-e8e78f623aa8" name="bbox">
             <con:configuration>
-              <path>$.plans[?(@.name == 'BPlan_SO-Objekte-Test_6-0-2_SoapUI-XPlanManagerAPI')].type</path>
-              <content>[BP_Plan]</content>
+              <path>$.bbox</path>
+              <content>null</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="d7f432a9-5dd7-46bb-80ad-e8e78f623aa8" name="features">
+            <con:configuration>
+              <path>$.features</path>
+              <content>[]</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
@@ -22313,23 +23822,41 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
           <con:parameters/>
         </con:config>
       </con:testStep>
-      <con:testStep type="httprequest" name="GET BP 6.0.2 XX retrieveReportPdf" id="e6cae4d0-b1ed-4ebd-980e-1258d6608047">
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX retrieveGeomfindingsNoAcceptHeader" id="27a26a43-bd93-40e2-833c-48af5b6d3c7e">
         <con:settings/>
-        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX retrieveReportPdf" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX retrieveGeomfindingsNoAcceptHeader" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <con:settings>
-            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/pdf" xmlns="http://eviware.com/soapui/config"/></con:setting>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting>
           </con:settings>
-          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestSuite#uuid}</con:endpoint>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestSuite#uuid}/geomfindings.json</con:endpoint>
           <con:request/>
           <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
             <con:configuration>
               <codes>200</codes>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="XPath Match" id="e6a3edaf-71fd-4bc3-b441-7ed174a5932c" name="contentType">
+          <con:assertion type="JsonPath Match" id="d7f432a9-5dd7-46bb-80ad-e8e78f623aa8" name="type">
             <con:configuration>
-              <path>/data/@contentType</path>
-              <content>application/pdf</content>
+              <path>$.type</path>
+              <content>FeatureCollection</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="d7f432a9-5dd7-46bb-80ad-e8e78f623aa8" name="bbox">
+            <con:configuration>
+              <path>$.bbox</path>
+              <content>null</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="d7f432a9-5dd7-46bb-80ad-e8e78f623aa8" name="features">
+            <con:configuration>
+              <path>$.features</path>
+              <content>[]</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
@@ -22348,15 +23875,15 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
           <con:parameters/>
         </con:config>
       </con:testStep>
-      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidUuidExpectError404" id="b62b4284-57e9-49e4-8f2c-b675d679c233">
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidUuidExpectError404" id="c917f544-3f02-4f23-a1f1-7e7835e246e6">
         <con:settings/>
-        <con:config method="GET" xsi:type="con:HttpRequest" id="d219264b-19a2-4e32-bda8-d1d431e563e9" name="GET BP 6.0.2 XX invalidUuidExpectError404" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX invalidUuidExpectError404" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <con:settings>
-            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/geo+json" xmlns="http://eviware.com/soapui/config"/></con:setting>
           </con:settings>
-          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/invalid</con:endpoint>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/invalid/geomfindings.json</con:endpoint>
           <con:request/>
-          <con:assertion type="Valid HTTP Status Codes" id="706a255f-d031-4dfe-b078-d7098c7d2b4a" name="Valid HTTP Status Codes">
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
             <con:configuration>
               <codes>404</codes>
             </con:configuration>
@@ -22374,15 +23901,15 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
           <con:parameters/>
         </con:config>
       </con:testStep>
-      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" id="b41034a8-dd5c-4b35-98a9-43ab9b8e2baa">
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" id="e24f5ec0-e242-44fd-9516-ed95e0f61ff3">
         <con:settings/>
-        <con:config method="GET" xsi:type="con:HttpRequest" id="d219264b-19a2-4e32-bda8-d1d431e563e9" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
           <con:settings>
-            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="invalid" xmlns="http://eviware.com/soapui/config"/></con:setting>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
           </con:settings>
-          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestSuite#uuid}</con:endpoint>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestSuite#uuid}/geomfindings.json</con:endpoint>
           <con:request/>
-          <con:assertion type="Valid HTTP Status Codes" id="706a255f-d031-4dfe-b078-d7098c7d2b4a" name="Valid HTTP Status Codes">
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
             <con:configuration>
               <codes>406</codes>
             </con:configuration>
@@ -22463,14 +23990,23 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath RegEx Match" id="39a75872-c3c6-4fe9-ac53-858e3008c208" name="link self">
+          <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
             <con:configuration>
-              <path>$[0].links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+              <path>$[0].links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
               <content>true</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
-              <regEx>^.*/api/v1/plan/.*$</regEx>
+              <regEx>^.*/api/v2/plan/.*$</regEx>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+            <con:configuration>
+              <path>$[0].links[?(@.rel == 'self')]</path>
+              <content>1</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
           <con:assertion type="JsonPath RegEx Match" id="39a75872-c3c6-4fe9-ac53-858e3008c208" name="link planwerkwms">
@@ -22560,14 +24096,23 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath RegEx Match" id="c4de6278-26a0-4499-b07a-a01eb57cafd2" name="link self">
+          <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
             <con:configuration>
-              <path>$[0].links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
+              <path>$[0].links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
               <content>true</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
-              <regEx>^.*/api/v1/plan/.*$</regEx>
+              <regEx>^.*/api/v2/plan/.*$</regEx>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+            <con:configuration>
+              <path>$[0].links[?(@.rel == 'self')]</path>
+              <content>1</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
           <con:assertion type="JsonPath RegEx Match" id="c4de6278-26a0-4499-b07a-a01eb57cafd2" name="link planwerkwms">
@@ -26308,14 +27853,23 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "VALIDATION_FAILED" ){
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath RegEx Match" id="ef5b8e76-d4eb-4b91-a20f-cfacbdaaa3d3" name="link self">
+          <con:assertion type="JsonPath RegEx Match" id="661feb7b-2379-46aa-a994-f7034df08aaf" name="link self">
             <con:configuration>
-              <path>$.links[?(@.rel == 'self' &amp;&amp; @.type == 'application/json')].href</path>
-              <content>false</content>
+              <path>$.links[?(@.rel == 'self' &amp;&amp; (@.type == 'application/json'))].href</path>
+              <content>true</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+              <regEx>^.*/api/v2/plan/.*$</regEx>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Count" id="1f02b841-df99-4f50-bc12-f75834e396e0" name="link self count">
+            <con:configuration>
+              <path>$.links[?(@.rel == 'self')]</path>
+              <content>1</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
-              <regEx>^.*/api/v1/plan/.*$</regEx>
             </con:configuration>
           </con:assertion>
           <con:assertion type="JsonPath RegEx Match" id="ef5b8e76-d4eb-4b91-a20f-cfacbdaaa3d3" name="link planwerkwms">
@@ -28652,6 +30206,78 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "IMPORT_ABORTED" ){
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="geomfindings.type">
+            <con:configuration>
+              <path>$.geomfindings.type</path>
+              <content>FeatureCollection</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="geomfindings.features.type">
+            <con:configuration>
+              <path>$.geomfindings.features[0].type</path>
+              <content>Feature</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="geomfindings.features.geometry.type">
+            <con:configuration>
+              <path>$.geomfindings.features[0].geometry.type</path>
+              <content>Point</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="geomfindings.features.geometry.coordinates">
+            <con:configuration>
+              <path>$.geomfindings.features[0].geometry.coordinates</path>
+              <content>[10.04024134282035,53.581840521708514]</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="geomfindings.features.properties.level">
+            <con:configuration>
+              <path>$.geomfindings.features[0].properties.level</path>
+              <content>ERROR</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="geomfindings.features.properties.gmlIds">
+            <con:configuration>
+              <path>$.geomfindings.features[0].properties.gmlIds</path>
+              <content>Gml_C7986975-B702-46BF-9669-E8A2794BCF23</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="geomfindings.features.properties.planName">
+            <con:configuration>
+              <path>$.geomfindings.features[0].properties.planName</path>
+              <content>BP_5.2-geometricErrorSelbstueberschneidung_SoapUI-XPlanValidatorAPI</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="geomfindings.features.properties.id">
+            <con:configuration>
+              <path>$.geomfindings.features[0].properties.id</path>
+              <content>2.2.2.1</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
           <con:credentials>
             <con:username>${#Project#username}</con:username>
             <con:password>${#Project#password}</con:password>
@@ -28691,6 +30317,104 @@ if( ++context.loopIndex &lt; 40 &amp;&amp; json.status != "IMPORT_ABORTED" ){
           <con:parameters/>
         </con:config>
       </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 5.2 XX retrieveGeomfindings" id="b95c9898-c9b8-4a47-bcc8-409bad9234c5">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="80a79ed8-fcfd-4604-9220-f7c650063d0c" name="GET BP 5.2 XX retrieveGeomfindings" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/geo+json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlManagerApi}/xplan-manager-api/api/v2/report/${#TestCase#uuid}/geomfindings</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="84472359-c38c-468b-b28a-f03bbd016181" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>200</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="type">
+            <con:configuration>
+              <path>$.type</path>
+              <content>FeatureCollection</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="features.type">
+            <con:configuration>
+              <path>$.features[0].type</path>
+              <content>Feature</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="features.geometry.type">
+            <con:configuration>
+              <path>$.features[0].geometry.type</path>
+              <content>Point</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="features.geometry.coordinates">
+            <con:configuration>
+              <path>$.features[0].geometry.coordinates</path>
+              <content>[10.04024134282035,53.581840521708514]</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="features.properties.level">
+            <con:configuration>
+              <path>$.features[0].properties.level</path>
+              <content>ERROR</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="features.properties.gmlIds">
+            <con:configuration>
+              <path>$.features[0].properties.gmlIds</path>
+              <content>Gml_C7986975-B702-46BF-9669-E8A2794BCF23</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="features.properties.planName">
+            <con:configuration>
+              <path>$.features[0].properties.planName</path>
+              <content>BP_5.2-geometricErrorSelbstueberschneidung_SoapUI-XPlanValidatorAPI</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="21c11a00-e6f6-48e4-ace1-097d95c9e88a" name="features.properties.id">
+            <con:configuration>
+              <path>$.features[0].properties.id</path>
+              <content>2.2.2.1</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
       <con:testStep type="transfer" name="CleanUp Properties" id="78e7db8d-3bf3-4b27-b4e3-2237c17b771f">
         <con:settings/>
         <con:config xsi:type="con:PropertyTransfersStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
diff --git a/xplan-tests/xplan-tests-soapui/src/main/resources/xplan-validator-api-soapui-project.xml b/xplan-tests/xplan-tests-soapui/src/main/resources/xplan-validator-api-soapui-project.xml
index db346ff1e22ffaf234b5cdcc33e6e240834a0d4e..6f8ade5e9739dc337933a1eac3e82a7f54093aaf 100644
--- a/xplan-tests/xplan-tests-soapui/src/main/resources/xplan-validator-api-soapui-project.xml
+++ b/xplan-tests/xplan-tests-soapui/src/main/resources/xplan-validator-api-soapui-project.xml
@@ -4727,6 +4727,16 @@ assert json.version != null</scriptText>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
+          <con:assertion type="JsonPath RegEx Match" id="534d31b6-21c0-44aa-980a-66a47460ddc3" name="info.version">
+            <con:configuration>
+              <path>$.info.version</path>
+              <content>true</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+              <regEx>2.*</regEx>
+            </con:configuration>
+          </con:assertion>
           <con:assertion type="JsonPath Match" id="fb838b6f-0eaa-45a1-8a43-f87364021182" name="path /">
             <con:configuration>
               <path>$.paths./.get.operationId</path>
@@ -4826,47 +4836,64 @@ assert json.version != null</scriptText>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Match" id="634b1a88-6df2-49f0-9e23-8babb820f690" name="schemas ValidationReport externalReferences items type" disabled="true">
+          <con:assertion type="JsonPath Match" id="3a711a3a-80f6-4f4b-92d2-412784d41ae8" name="path /report/{uuid}/geomfindings">
             <con:configuration>
-              <path>$.components.schemas.ValidationReport.properties.externalReferences.items.type</path>
-              <content>string</content>
+              <path>$.paths./report/{uuid}/geomfindings.get.operationId</path>
+              <content>geomfindingsByUuid</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Match" id="634b1a88-6df2-49f0-9e23-8babb820f690" name="schemas ValidationReport externalReferencesResult items ref" disabled="true">
+          <con:assertion type="JsonPath Existence Match" id="63de7bfa-def9-425f-acb6-d9cd23032741" name="path /report/{uuid}/geomfindings response 406 exists">
             <con:configuration>
-              <path>$.components.schemas.ValidationReport.properties.externalReferencesResult.items.$ref</path>
-              <content>#/components/schemas/ExternalReferenceResult</content>
+              <path>$.paths./report/{uuid}/geomfindings.get.responses.406</path>
+              <content>true</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Existence Match" id="21d4a0ad-da22-4876-8ecc-ce7ebc245f39" name="schemas DocumentSummary" disabled="true">
+          <con:assertion type="GroovyScriptAssertion" id="2b33a278-16ba-4b6d-8fbb-c80e74f8debd" name="path /report/{uuid}/geomfindings.json">
             <con:configuration>
-              <path>$.components.schemas.DocumentSummary</path>
-              <content>true</content>
+              <scriptText>import groovy.json.JsonSlurper
+
+def json = new JsonSlurper().parseText(messageExchange.response.responseContent)
+
+assert json.paths.'/report/{uuid}/geomfindings.json'.get.operationId == 'geomfindingsJsonByUuid'</scriptText>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="GroovyScriptAssertion" id="2b33a278-16ba-4b6d-8fbb-c80e74f8debd" name="path /report/{uuid}/geomfindings.json response 406 exists">
+            <con:configuration>
+              <scriptText>import groovy.json.JsonSlurper
+
+def json = new JsonSlurper().parseText(messageExchange.response.responseContent)
+
+assert json.paths.'/report/{uuid}/geomfindings.json'.get.responses.'406'</scriptText>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="634b1a88-6df2-49f0-9e23-8babb820f690" name="schemas ValidationReport geomfindings">
+            <con:configuration>
+              <path>$.components.schemas.ValidationReport.properties.geomfindings.$ref</path>
+              <content>#/components/schemas/FeatureCollection</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath RegEx Match" id="534d31b6-21c0-44aa-980a-66a47460ddc3" name="version">
+          <con:assertion type="JsonPath Match" id="634b1a88-6df2-49f0-9e23-8babb820f690" name="schema ValidationReportPlan externalReferencesResult type">
             <con:configuration>
-              <path>$.info.version</path>
-              <content>true</content>
+              <path>$.components.schemas.ValidationReportPlan.properties.externalReferencesResult.type</path>
+              <content>array</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
-              <regEx>2.*</regEx>
             </con:configuration>
           </con:assertion>
-          <con:assertion type="JsonPath Existence Match" id="83b62a19-de48-47c5-a3f3-73df0c915dc0" name="ValidationReport">
+          <con:assertion type="JsonPath Match" id="634b1a88-6df2-49f0-9e23-8babb820f690" name="schema ValidationReportPlan externalReferencesResult items ref">
             <con:configuration>
-              <path>$.components.schemas.ValidationReport</path>
-              <content>true</content>
+              <path>$.components.schemas.ValidationReportPlan.properties.externalReferencesResult.items.$ref</path>
+              <content>#/components/schemas/ExternalReferenceResult</content>
               <allowWildcards>false</allowWildcards>
               <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
               <ignoreComments>false</ignoreComments>
@@ -5859,6 +5886,279 @@ if( ++context.loopIndex &lt; 20 &amp;&amp; json.status != "VALIDATION_FAILED" ){
       </con:testStep>
       <con:properties/>
     </con:testCase>
+    <con:testCase id="8c332f54-4b06-4190-8e8f-2fdcfcb5f0c3" failOnError="false" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="/report/{uuid}/geomfindings TestCase" searchProperties="true" timeout="0" wsrmEnabled="false" wsrmVersion="1.0" wsrmAckTo="" amfAuthorisation="false" amfEndpoint="" amfLogin="" amfPassword="">
+      <con:description>Tests für den "/report/{uuid}/geomfindings"-Pfad</con:description>
+      <con:settings/>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX retrieveGeomfindings" id="f74148ad-0208-4eec-8229-eb79062e5bfc">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX retrieveGeomfindings" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/geo+json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlValidatorApi}/xplan-validator-api/api/v2/report/${#TestSuite#uuid}/geomfindings</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>200</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="4c25065a-9120-401a-a1bc-06c0129e9b8c" name="type">
+            <con:configuration>
+              <path>$.type</path>
+              <content>FeatureCollection</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="4c25065a-9120-401a-a1bc-06c0129e9b8c" name="bbox">
+            <con:configuration>
+              <path>$.bbox</path>
+              <content>null</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="4c25065a-9120-401a-a1bc-06c0129e9b8c" name="features">
+            <con:configuration>
+              <path>$.features</path>
+              <content>[]</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidUuidExpectError404" id="e1b3b4ae-c475-4e31-9efb-ce62959bd22e">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX invalidUuidExpectError404" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/geo+json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlValidatorApi}/xplan-validator-api/api/v2/report/invalid/geomfindings</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>404</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" id="872847f2-0792-4c11-b4cd-53ad289c9948">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlValidatorApi}/xplan-validator-api/api/v2/report/${#TestSuite#uuid}/geomfindings</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>406</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:properties/>
+    </con:testCase>
+    <con:testCase id="b4f37e2f-56c7-4ca0-9053-a94b3e6f37ad" failOnError="false" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="/report/{uuid}/geomfindings.json TestCase" searchProperties="true" timeout="0" wsrmEnabled="false" wsrmVersion="1.0" wsrmAckTo="" amfAuthorisation="false" amfEndpoint="" amfLogin="" amfPassword="">
+      <con:description>Tests für den "/report/{uuid}/geomfindings.json"-Pfad</con:description>
+      <con:settings/>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX retrieveGeomfindings" id="7917db44-c242-4500-b1c0-c45ea61dc62b">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX retrieveGeomfindings" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/geo+json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlValidatorApi}/xplan-validator-api/api/v2/report/${#TestSuite#uuid}/geomfindings.json</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>200</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="4c25065a-9120-401a-a1bc-06c0129e9b8c" name="type">
+            <con:configuration>
+              <path>$.type</path>
+              <content>FeatureCollection</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="4c25065a-9120-401a-a1bc-06c0129e9b8c" name="bbox">
+            <con:configuration>
+              <path>$.bbox</path>
+              <content>null</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="4c25065a-9120-401a-a1bc-06c0129e9b8c" name="features">
+            <con:configuration>
+              <path>$.features</path>
+              <content>[]</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX retrieveGeomfindingsNoAcceptHeader" id="4446c502-27a2-4e1d-80ff-317778aa75f7">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX retrieveGeomfindingsNoAcceptHeader" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;xml-fragment/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlValidatorApi}/xplan-validator-api/api/v2/report/${#TestSuite#uuid}/geomfindings.json</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>200</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="4c25065a-9120-401a-a1bc-06c0129e9b8c" name="type">
+            <con:configuration>
+              <path>$.type</path>
+              <content>FeatureCollection</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="4c25065a-9120-401a-a1bc-06c0129e9b8c" name="bbox">
+            <con:configuration>
+              <path>$.bbox</path>
+              <content>null</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="4c25065a-9120-401a-a1bc-06c0129e9b8c" name="features">
+            <con:configuration>
+              <path>$.features</path>
+              <content>[]</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidUuidExpectError404" id="d66a2ea2-9fde-4332-8368-2e11c890b61e">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX invalidUuidExpectError404" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/geo+json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlValidatorApi}/xplan-validator-api/api/v2/report/invalid/geomfindings.json</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>404</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" id="09e765bf-23e9-42ba-89fc-b1908b80e479">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="873abd32-15a2-4f63-a5cf-93aa57bee711" name="GET BP 6.0.2 XX invalidAcceptHeaderExpectError406" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlValidatorApi}/xplan-validator-api/api/v2/report/${#TestSuite#uuid}/geomfindings.json</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="2b121572-75dc-4331-8608-63651d9942fe" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>406</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
+      <con:properties/>
+    </con:testCase>
     <con:testCase id="9fd4d5d4-1361-4668-adc4-d026000695b0" failOnError="false" failTestCaseOnErrors="true" keepSession="false" maxResults="0" name="CleanUp Properties" searchProperties="true" timeout="0" wsrmEnabled="false" wsrmVersion="1.0" wsrmAckTo="" amfAuthorisation="false" amfEndpoint="" amfLogin="" amfPassword="">
       <con:description>Gesetzte Properties werden wieder geleert</con:description>
       <con:settings/>
@@ -7541,6 +7841,78 @@ if( ++context.loopIndex &lt; 20 &amp;&amp; json.status != "VALIDATION_FINISHED"
               <ignoreComments>false</ignoreComments>
             </con:configuration>
           </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="geomfindings.type">
+            <con:configuration>
+              <path>$.geomfindings.type</path>
+              <content>FeatureCollection</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="geomfindings.features.type">
+            <con:configuration>
+              <path>$.geomfindings.features[0].type</path>
+              <content>Feature</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="geomfindings.features.geometry.type">
+            <con:configuration>
+              <path>$.geomfindings.features[0].geometry.type</path>
+              <content>Point</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="geomfindings.features.geometry.coordinates">
+            <con:configuration>
+              <path>$.geomfindings.features[0].geometry.coordinates</path>
+              <content>[10.04024134282035,53.581840521708514]</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="geomfindings.features.properties.level">
+            <con:configuration>
+              <path>$.geomfindings.features[0].properties.level</path>
+              <content>ERROR</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="geomfindings.features.properties.gmlIds">
+            <con:configuration>
+              <path>$.geomfindings.features[0].properties.gmlIds</path>
+              <content>Gml_C7986975-B702-46BF-9669-E8A2794BCF23</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="geomfindings.features.properties.planName">
+            <con:configuration>
+              <path>$.geomfindings.features[0].properties.planName</path>
+              <content>BP_5.2-geometricErrorSelbstueberschneidung_SoapUI-XPlanValidatorAPI</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="geomfindings.features.properties.id">
+            <con:configuration>
+              <path>$.geomfindings.features[0].properties.id</path>
+              <content>2.2.2.1</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
           <con:credentials>
             <con:username>${#Project#username}</con:username>
             <con:password>${#Project#password}</con:password>
@@ -7580,6 +7952,104 @@ if( ++context.loopIndex &lt; 20 &amp;&amp; json.status != "VALIDATION_FINISHED"
           <con:parameters/>
         </con:config>
       </con:testStep>
+      <con:testStep type="httprequest" name="GET BP 5.2 XX retrieveGeomfindings" id="674b4627-509a-4b9e-86d8-b896b864e983">
+        <con:settings/>
+        <con:config method="GET" xsi:type="con:HttpRequest" id="80a79ed8-fcfd-4604-9220-f7c650063d0c" name="GET BP 5.2 XX retrieveGeomfindings" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+          <con:settings>
+            <con:setting id="com.eviware.soapui.impl.wsdl.WsdlRequest@request-headers">&lt;entry key="Accept" value="application/geo+json" xmlns="http://eviware.com/soapui/config"/></con:setting>
+          </con:settings>
+          <con:endpoint>${#Project#baseUrlValidatorApi}/xplan-validator-api/api/v2/report/${#TestCase#uuid}/geomfindings</con:endpoint>
+          <con:request/>
+          <con:assertion type="Valid HTTP Status Codes" id="84472359-c38c-468b-b28a-f03bbd016181" name="Valid HTTP Status Codes">
+            <con:configuration>
+              <codes>200</codes>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="type">
+            <con:configuration>
+              <path>$.type</path>
+              <content>FeatureCollection</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="features.type">
+            <con:configuration>
+              <path>$.features[0].type</path>
+              <content>Feature</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="features.geometry.type">
+            <con:configuration>
+              <path>$.features[0].geometry.type</path>
+              <content>Point</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="features.geometry.coordinates">
+            <con:configuration>
+              <path>$.features[0].geometry.coordinates</path>
+              <content>[10.04024134282035,53.581840521708514]</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="features.properties.level">
+            <con:configuration>
+              <path>$.features[0].properties.level</path>
+              <content>ERROR</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="features.properties.gmlIds">
+            <con:configuration>
+              <path>$.features[0].properties.gmlIds</path>
+              <content>Gml_C7986975-B702-46BF-9669-E8A2794BCF23</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="features.properties.planName">
+            <con:configuration>
+              <path>$.features[0].properties.planName</path>
+              <content>BP_5.2-geometricErrorSelbstueberschneidung_SoapUI-XPlanValidatorAPI</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:assertion type="JsonPath Match" id="fba6cda7-8de7-4745-be6a-53a6dd7db58b" name="features.properties.id">
+            <con:configuration>
+              <path>$.features[0].properties.id</path>
+              <content>2.2.2.1</content>
+              <allowWildcards>false</allowWildcards>
+              <ignoreNamspaceDifferences>false</ignoreNamspaceDifferences>
+              <ignoreComments>false</ignoreComments>
+            </con:configuration>
+          </con:assertion>
+          <con:credentials>
+            <con:username>${#Project#username}</con:username>
+            <con:password>${#Project#password}</con:password>
+            <con:selectedAuthProfile>Basic</con:selectedAuthProfile>
+            <con:addedBasicAuthenticationTypes>Basic</con:addedBasicAuthenticationTypes>
+            <con:preemptive>true</con:preemptive>
+            <con:authType>Preemptive</con:authType>
+          </con:credentials>
+          <con:jmsConfig JMSDeliveryMode="PERSISTENT"/>
+          <con:jmsPropertyConfig/>
+          <con:parameters/>
+        </con:config>
+      </con:testStep>
       <con:testStep type="transfer" name="CleanUp Properties" id="05519fd5-c866-4cce-8735-48bf8660526d">
         <con:settings/>
         <con:config xsi:type="con:PropertyTransfersStep" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
diff --git a/xplan-validator/xplan-validator-api/src/main/java/de/latlon/xplanbox/api/validator/v2/ReportApi.java b/xplan-validator/xplan-validator-api/src/main/java/de/latlon/xplanbox/api/validator/v2/ReportApi.java
index 781c68e3653aa6d191cbe7287d56c6ab7f2f8201..6b51de1694e437a21f4c5760b83a465816e1db5b 100644
--- a/xplan-validator/xplan-validator-api/src/main/java/de/latlon/xplanbox/api/validator/v2/ReportApi.java
+++ b/xplan-validator/xplan-validator-api/src/main/java/de/latlon/xplanbox/api/validator/v2/ReportApi.java
@@ -21,11 +21,13 @@
 package de.latlon.xplanbox.api.validator.v2;
 
 import static de.latlon.xplanbox.api.commons.XPlanMediaType.APPLICATION_PDF_TYPE;
+import static de.latlon.xplanbox.validator.storage.ValidationExecutionStorage.ReportType.GEOJSON;
 import static de.latlon.xplanbox.validator.storage.ValidationExecutionStorage.ReportType.JSON;
 import static de.latlon.xplanbox.validator.storage.ValidationExecutionStorage.ReportType.PDF;
 import static jakarta.ws.rs.core.MediaType.APPLICATION_JSON_TYPE;
 
 import de.latlon.xplan.commons.s3.StorageException;
+import de.latlon.xplan.validator.report.geojson.model.FeatureCollection;
 import de.latlon.xplanbox.api.commons.exception.InvalidValidationUuid;
 import de.latlon.xplanbox.api.commons.v2.model.ValidationReport;
 import de.latlon.xplanbox.validator.storage.ValidationExecutionStorage;
@@ -88,6 +90,55 @@ public class ReportApi {
 		}
 	}
 
+	@GET
+	@Path("/{uuid}/geomfindings")
+	@Produces({ "application/geo+json" })
+	@Operation(summary = "Return ValidationReport",
+			description = "Returns the findings of the geometrical validation with {uuid} as GeoJSON",
+			responses = {
+					@ApiResponse(responseCode = "200", description = "successful operation",
+							content = @Content(schema = @Schema(implementation = FeatureCollection.class))),
+					@ApiResponse(responseCode = "404",
+							description = "Findings of the geometrical validation with {uuid} is not available or is expired"),
+					@ApiResponse(responseCode = "406", description = "Requested format is not available") })
+	public Response geomfindingsByUuid(
+			@PathParam("uuid") @Parameter(description = "UUID of the validation to be returned",
+					example = "uuid") String uuid)
+			throws EventExecutionException, StorageException, InvalidValidationUuid {
+		return geomfindings(uuid);
+	}
+
+	@GET
+	@Path("/{uuid}/geomfindings.json")
+	@Produces({ "application/geo+json" })
+	@Operation(summary = "Return ValidationReport",
+			description = "Returns the findings of the geometrical validation with {uuid} as GeoJSON",
+			responses = {
+					@ApiResponse(responseCode = "200", description = "successful operation",
+							content = @Content(schema = @Schema(implementation = FeatureCollection.class))),
+					@ApiResponse(responseCode = "404",
+							description = "Findings of the geometrical validation with {uuid} is not available or is expired"),
+					@ApiResponse(responseCode = "406", description = "Requested format is not available") })
+	public Response geomfindingsJsonByUuid(
+			@PathParam("uuid") @Parameter(description = "UUID of the validation to be returned",
+					example = "uuid") String uuid)
+			throws EventExecutionException, StorageException, InvalidValidationUuid {
+		return geomfindings(uuid);
+	}
+
+	private Response geomfindings(String uuid) throws EventExecutionException, InvalidValidationUuid, StorageException {
+		try {
+			byte[] report = validationExecutionStorage.retrieveReport(uuid, GEOJSON);
+			return Response.ok().entity(report).build();
+		}
+		catch (StorageException e) {
+			if (e.getStatusCode() == 404) {
+				throw new InvalidValidationUuid(uuid);
+			}
+			throw e;
+		}
+	}
+
 	private MediaType detectRequestedMediaType(Request request) {
 		Variant.VariantListBuilder acceptedMediaTypes = Variant.mediaTypes(APPLICATION_JSON_TYPE, APPLICATION_PDF_TYPE);
 		Variant selectVariant = request.selectVariant(acceptedMediaTypes.build());
diff --git a/xplan-validator/xplan-validator-api/src/test/java/de/latlon/xplanbox/api/validator/v2/DefaultApi2Test.java b/xplan-validator/xplan-validator-api/src/test/java/de/latlon/xplanbox/api/validator/v2/DefaultApi2Test.java
index 4a5c1cf2dcce665551a42b2dbb2df4f02c17e2bc..c7da99f078eeea17972543d46ebddb849996bc55 100644
--- a/xplan-validator/xplan-validator-api/src/test/java/de/latlon/xplanbox/api/validator/v2/DefaultApi2Test.java
+++ b/xplan-validator/xplan-validator-api/src/test/java/de/latlon/xplanbox/api/validator/v2/DefaultApi2Test.java
@@ -74,7 +74,8 @@ class DefaultApi2Test extends ValidatorApiJerseyTest {
 
 		BasicJsonTester json = new BasicJsonTester(getClass());
 		assertThat(json.from(response)).extractingJsonPathMapValue("$.paths")
-			.containsOnlyKeys("/", "/info", "/status/{uuid}", "/validate", "/report/{uuid}");
+			.containsOnlyKeys("/", "/info", "/status/{uuid}", "/validate", "/report/{uuid}",
+					"/report/{uuid}/geomfindings", "/report/{uuid}/geomfindings.json");
 	}
 
 	@Test
diff --git a/xplan-validator/xplan-validator-api/src/test/java/de/latlon/xplanbox/api/validator/v2/ReportApiTest.java b/xplan-validator/xplan-validator-api/src/test/java/de/latlon/xplanbox/api/validator/v2/ReportApiTest.java
index ac9d23aa935cb6d6a4e09f1ce63484f9584b6630..8ffe2149b9b5e881e65e4ca3666984925b4f8a63 100644
--- a/xplan-validator/xplan-validator-api/src/test/java/de/latlon/xplanbox/api/validator/v2/ReportApiTest.java
+++ b/xplan-validator/xplan-validator-api/src/test/java/de/latlon/xplanbox/api/validator/v2/ReportApiTest.java
@@ -24,10 +24,24 @@ public class ReportApiTest extends ValidatorApiJerseyTest {
 	}
 
 	@Test
-	void verifyThat_Response_withInvalidUuid() {
+	void verifyThat_report_Response_withInvalidUuid() {
 		final Response response = target("/report/invalidUuid").request(APPLICATION_JSON).get();
 
 		assertEquals(Response.Status.NOT_FOUND.getStatusCode(), response.getStatus());
 	}
 
+	@Test
+	void verifyThat_reportGeomfindings_Response_withInvalidUuid() {
+		final Response response = target("/report/invalidUuid/geomfindings").request().get();
+
+		assertEquals(Response.Status.NOT_FOUND.getStatusCode(), response.getStatus());
+	}
+
+	@Test
+	void verifyThat_reportGeomfindingsJson_Response_withInvalidUuid() {
+		final Response response = target("/report/invalidUuid/geomfindings.json").request().get();
+
+		assertEquals(Response.Status.NOT_FOUND.getStatusCode(), response.getStatus());
+	}
+
 }
diff --git a/xplan-validator/xplan-validator-executor/pom.xml b/xplan-validator/xplan-validator-executor/pom.xml
index f4a22182cc332834fb010cf385b69d77f2e70800..a36c3b9cf7052fe1b3f69304a11c9d59f72e2f22 100644
--- a/xplan-validator/xplan-validator-executor/pom.xml
+++ b/xplan-validator/xplan-validator-executor/pom.xml
@@ -209,7 +209,7 @@
       <id>docker</id>
       <properties>
         <docker-image.skip>false</docker-image.skip>
-        <docker-contextTarFile.expectedSizeInMat10pct>75</docker-contextTarFile.expectedSizeInMat10pct>
+        <docker-contextTarFile.expectedSizeInMat10pct>84</docker-contextTarFile.expectedSizeInMat10pct>
       </properties>
       <dependencies>
         <dependency> <!-- to copy jmx exporter stuff from docker image  -->
@@ -231,4 +231,4 @@
     </profile>
   </profiles>
 
-</project>
\ No newline at end of file
+</project>
diff --git a/xplan-validator/xplan-validator-executor/src/main/java/de/latlon/xplanbox/validator/executor/PlanValidator.java b/xplan-validator/xplan-validator-executor/src/main/java/de/latlon/xplanbox/validator/executor/PlanValidator.java
index 24b569c77b44d790de25b458f9f036996be75f98..d0f0e8b3222a37b5ca6d2910cbd12f290eddd64c 100644
--- a/xplan-validator/xplan-validator-executor/src/main/java/de/latlon/xplanbox/validator/executor/PlanValidator.java
+++ b/xplan-validator/xplan-validator-executor/src/main/java/de/latlon/xplanbox/validator/executor/PlanValidator.java
@@ -1,5 +1,6 @@
 package de.latlon.xplanbox.validator.executor;
 
+import static de.latlon.xplan.validator.report.geojson.GeoJsonBuilder.createGeoJsonFailures;
 import static de.latlon.xplanbox.validator.storage.StatusType.VALIDATION_FAILED;
 import static de.latlon.xplanbox.validator.storage.exception.ErrorType.INTERNAL_ERROR;
 import static de.latlon.xplanbox.validator.storage.exception.ErrorType.INVALID_REQUEST;
@@ -19,7 +20,9 @@ import de.latlon.core.validator.events.v1.XPlanPublicV1Event;
 import de.latlon.core.validator.events.v1.XPlanPublicV1Event.EventType;
 import de.latlon.xplan.commons.archive.XPlanArchive;
 import de.latlon.xplan.validator.ValidatorException;
+import de.latlon.xplan.validator.report.ReportGenerationException;
 import de.latlon.xplan.validator.report.ValidatorReport;
+import de.latlon.xplan.validator.report.geojson.model.FeatureCollection;
 import de.latlon.xplanbox.api.commons.ObjectMapperContextResolver;
 import de.latlon.xplanbox.api.commons.ValidationReportBuilder;
 import de.latlon.xplanbox.api.commons.exception.XPlanApiException;
@@ -109,6 +112,7 @@ public class PlanValidator {
 			ValidationReport validationReport = createValidationReport(event, archive, validatorReport);
 
 			reports.put(ReportType.JSON, createJsonReportFile(validationReport));
+			reports.put(ReportType.GEOJSON, createGeoJsonReportFile(validatorReport));
 			reports.put(ReportType.PDF, createPdfReportFile(validatorReport));
 			reports.put(ReportType.ZIP, createZipReportFile(validatorReport));
 
@@ -146,7 +150,7 @@ public class PlanValidator {
 	}
 
 	private ValidationReport createValidationReport(ValidationRequestedEvent event, final XPlanArchive archive,
-			ValidatorReport validatorReport) {
+			ValidatorReport validatorReport) throws ReportGenerationException {
 		URI wmsUrl = validationHandler.addToWms(archive);
 		return new ValidationReportBuilder().validatorReport(validatorReport) //
 			.filename(event.getxFileName()) //
@@ -161,6 +165,17 @@ public class PlanValidator {
 		return reportFile;
 	}
 
+	private Path createGeoJsonReportFile(ValidatorReport validatorReport)
+			throws IOException, ReportGenerationException {
+		FeatureCollection geoJsonFailures = createGeoJsonFailures(validatorReport);
+		if (geoJsonFailures == null)
+			geoJsonFailures = new FeatureCollection();
+		ObjectMapper mapper = new ObjectMapperContextResolver().getContext(FeatureCollection.class);
+		Path reportFile = Files.createTempFile("", ".geojson");
+		mapper.writeValue(reportFile.toFile(), geoJsonFailures);
+		return reportFile;
+	}
+
 	private Path createPdfReportFile(ValidatorReport validatorReport) throws IOException {
 		return validationHandler.writePdfReport(validatorReport);
 	}
diff --git a/xplan-validator/xplan-validator-executor/src/main/java/de/latlon/xplanbox/validator/executor/handler/ValidationHandler.java b/xplan-validator/xplan-validator-executor/src/main/java/de/latlon/xplanbox/validator/executor/handler/ValidationHandler.java
index a7c511a257c326c5c69639d4a0a4abab7166f87c..50f6df0efda066dc1967593faddd1b8891fe034e 100644
--- a/xplan-validator/xplan-validator-executor/src/main/java/de/latlon/xplanbox/validator/executor/handler/ValidationHandler.java
+++ b/xplan-validator/xplan-validator-executor/src/main/java/de/latlon/xplanbox/validator/executor/handler/ValidationHandler.java
@@ -20,7 +20,8 @@
  */
 package de.latlon.xplanbox.validator.executor.handler;
 
-import static de.latlon.xplan.validator.web.shared.ArtifactType.PDF;
+import static de.latlon.xplan.validator.web.shared.ReportFormatType.GEOJSON;
+import static de.latlon.xplan.validator.web.shared.ReportFormatType.PDF;
 
 import javax.xml.stream.XMLStreamException;
 import java.io.File;
@@ -44,7 +45,7 @@ import de.latlon.xplan.validator.XPlanValidator;
 import de.latlon.xplan.validator.configuration.ValidatorConfiguration;
 import de.latlon.xplan.validator.report.ReportWriter;
 import de.latlon.xplan.validator.report.ValidatorReport;
-import de.latlon.xplan.validator.web.shared.ArtifactType;
+import de.latlon.xplan.validator.web.shared.ReportFormatType;
 import de.latlon.xplan.validator.web.shared.ValidationSettings;
 import de.latlon.xplan.validator.wms.ValidatorWmsManager;
 import de.latlon.xplanbox.api.commons.exception.InvalidXPlanGmlOrArchive;
@@ -94,7 +95,7 @@ public class ValidationHandler {
 		LOG.debug("Create zip report in directory {} with validationName {}", workDir, validationName);
 
 		reportWriter.writeArtefacts(validatorReport, workDir);
-		List<ArtifactType> artifacts = Arrays.asList(PDF);
+		List<ReportFormatType> artifacts = Arrays.asList(PDF, GEOJSON);
 
 		Path zipArchive = workDir.resolve(validationName + ".zip");
 		try (OutputStream zipOutput = Files.newOutputStream(zipArchive)) {
diff --git a/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report1.expected.json b/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report1.expected.json
index 603c6f2b27d590a2e79e14fe3eec381e3ffeb3ac..f7dcea424e342d5dfc3cd3d64c0fb06729b49dc3 100644
--- a/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report1.expected.json
+++ b/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report1.expected.json
@@ -1,1224 +1,1458 @@
 {
-    "date": "-fixed-for-comparison-",
-    "filename": null,
-    "syntaktisch": {
-        "valid": true,
-        "status": "COMPLETED"
-    },
-    "validationName": "edfd613e-b85d-4ea6-9b97-bb33712b1ba6",
-    "plans": [
-        {
-            "valid": false,
-            "externalReferencesResult": [],
-            "rasterEvaluationResult": [],
-            "validationResult": {
-                "semantisch": {
-                    "valid": true,
-                    "rulesMetadata": {
-                        "source": "https:\/\/gitlab.opencode.de\/xleitstelle\/xplanung\/validierungsregeln\/standard\/-\/tree\/v1.1.9",
-                        "version": "1.1.9"
-                    },
-                    "rules": [
-                        {
-                            "id": "2.1.2.1",
-                            "title": "Verwendung vorgegebenen URNs für das uom-Attribut von GML-MeasureType"
-                        },
-                        {
-                            "id": "2.1.3.1",
-                            "title": "Angabe eines Standard CRS"
-                        },
-                        {
-                            "id": "2.2.1.1",
-                            "title": "Flächenschlussbedingung"
-                        },
-                        {
-                            "id": "3.1.1.1",
-                            "title": "Relationen auf Text-Abschnitte"
-                        },
-                        {
-                            "id": "3.1.1.2",
-                            "title": "Relationen auf Begründungs-Abschnitte"
-                        },
-                        {
-                            "id": "3.1.2.1",
-                            "title": "Relation auf Präsentationsobjekte"
-                        },
-                        {
-                            "id": "3.1.2.2",
-                            "title": "Relation auf Fachobjekte"
-                        },
-                        {
-                            "id": "3.1.2.3",
-                            "title": "Relation auf Basis-Rasterplan"
-                        },
-                        {
-                            "id": "3.1.3.1",
-                            "title": "Relationen auf Text-Abschnitte"
-                        },
-                        {
-                            "id": "3.1.3.2",
-                            "title": "Relationen auf Begründungs-Abschnitte"
-                        },
-                        {
-                            "id": "3.1.3.3",
-                            "title": "Rückwärts-Referenzen auf Plan-Bereiche"
-                        },
-                        {
-                            "id": "3.1.3.4",
-                            "title": "Rückwärts-Referenzen auf Präsentationsobjekte"
-                        },
-                        {
-                            "id": "3.2.1.1",
-                            "title": "Spezifikation des Textinhalts"
-                        },
-                        {
-                            "id": "3.2.2.1",
-                            "title": "Spezifikation des Textinhalts"
-                        },
-                        {
-                            "id": "3.2.3.1",
-                            "title": "Konsistenz der verschiedenen Höhenangaben"
-                        },
-                        {
-                            "id": "3.2.3.2",
-                            "title": "Verwendung von Höhenangaben, die sich auf eine auf Bezugshöhe beziehen, die auf Planebene definiert ist"
-                        },
-                        {
-                            "id": "3.2.3.3",
-                            "title": "Konsistenz der Attribute hoehenbezug und abweichenderHoehenbezug"
-                        },
-                        {
-                            "id": "3.2.4.1",
-                            "title": "Verweis auf Dokumente."
-                        },
-                        {
-                            "id": "3.2.5.1",
-                            "title": "Konsistenz der Attribute ags (Amtlicher Gemeindeschlüssel) und rs (Regionalschlüssel)."
-                        },
-                        {
-                            "id": "3.3.1.1",
-                            "title": "Spezifikation des Fachobjekt-Attributs bei nicht-freien Präsentationsobjekten"
-                        },
-                        {
-                            "id": "3.3.1.2",
-                            "title": "Konsistenz der Attribute art und index"
-                        },
-                        {
-                            "id": "3.3.1.3",
-                            "title": "Rückwärts-Referenzen auf Plan-Bereiche"
-                        },
-                        {
-                            "id": "3.3.2.1",
-                            "title": "Einschränkung des Raumbezugs auf Punktgeometrie."
-                        },
-                        {
-                            "id": "3.3.3.1",
-                            "title": "Einschränkung des Raumbezugs auf Liniengeometrie."
-                        },
-                        {
-                            "id": "3.3.4.1",
-                            "title": "Einschränkung des Raumbezugs auf Flächengeometrie."
-                        },
-                        {
-                            "id": "4.1.1.1",
-                            "title": "Einschränkung der Relation bereich"
-                        },
-                        {
-                            "id": "4.1.2.1",
-                            "title": "Einschränkung der Relation inhaltBPlan"
-                        },
-                        {
-                            "id": "4.1.2.2",
-                            "title": "Einschränkung der Relation rasterAenderung"
-                        },
-                        {
-                            "id": "4.1.2.3",
-                            "title": "Einschränkung der Relation gehoertZuPlan"
-                        },
-                        {
-                            "id": "4.1.3.1",
-                            "title": "Einschränkung der Relation wirdAusgeglichenDurchFlaeche"
-                        },
-                        {
-                            "id": "4.1.3.2",
-                            "title": "Einschränkung der Relation wirdAusgeglichenDurchMassnahme"
-                        },
-                        {
-                            "id": "4.1.3.3",
-                            "title": "Einschränkung der Relation wirdAusgeglichenDurchSPEMassnahme"
-                        },
-                        {
-                            "id": "4.1.3.4",
-                            "title": "Einschränkung der Relation wirdAusgeglichenDurchSPEFlaeche"
-                        },
-                        {
-                            "id": "4.1.3.5",
-                            "title": "Rückwärts-Referenzen auf Plan-Bereiche"
-                        },
-                        {
-                            "id": "4.1.3.6",
-                            "title": "BPlan-Inhalte dürfen nicht gleichzeitig als originärer Planinhalt und nachrichtliche Übernahme in den Plan integriert werden."
-                        },
-                        {
-                            "id": "4.1.3.7",
-                            "title": "Einschränkung der Relation wirdAusgeglichenDurchABE"
-                        },
-                        {
-                            "id": "4.1.4.1",
-                            "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
-                        },
-                        {
-                            "id": "4.1.4.2",
-                            "title": "Einschränkung auf Flächengeometrie"
-                        },
-                        {
-                            "id": "4.1.5.1",
-                            "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
-                        },
-                        {
-                            "id": "4.1.5.2",
-                            "title": "Angabe des Attributs flaechenschluss bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "4.1.6.1",
-                            "title": "Überlagerungsobjekte gehören nie zum Flächenschluss."
-                        },
-                        {
-                            "id": "4.1.7.1",
-                            "title": "Flächenschlussobjekte auf Ebene 0 gehören immer zum Flächenschluss"
-                        },
-                        {
-                            "id": "4.1.8.1",
-                            "title": "Einschränkung auf Liniengeometrie"
-                        },
-                        {
-                            "id": "4.1.9.1",
-                            "title": "Einschränkung auf Punktgeometrie"
-                        },
-                        {
-                            "id": "4.2.1",
-                            "title": "Konsistenz der Angaben zur GFZ"
-                        },
-                        {
-                            "id": "4.2.2",
-                            "title": "Konsistenz der Angaben zur GF"
-                        },
-                        {
-                            "id": "4.2.3",
-                            "title": "Konsistenz der Angaben zur GFZ und GF"
-                        },
-                        {
-                            "id": "4.2.4",
-                            "title": "Konsistenz der Angaben zur BMZ"
-                        },
-                        {
-                            "id": "4.2.5",
-                            "title": "Konsistenz der Angaben zur BM"
-                        },
-                        {
-                            "id": "4.2.6",
-                            "title": "Konsistenz der Angaben zur BMZ und BM"
-                        },
-                        {
-                            "id": "4.2.7",
-                            "title": "Konsistenz der Angaben zur GRZ"
-                        },
-                        {
-                            "id": "4.2.8",
-                            "title": "Konsistenz der Angaben zur GR"
-                        },
-                        {
-                            "id": "4.2.9",
-                            "title": "Konsistenz der Angaben zur GRZ und GR"
-                        },
-                        {
-                            "id": "4.2.10",
-                            "title": "Konsistenz der Angaben zu Z"
-                        },
-                        {
-                            "id": "4.2.11",
-                            "title": "Konsistenz der Angaben zu ZU"
-                        },
-                        {
-                            "id": "4.3.1",
-                            "title": "Konsistenz der Angaben zur Dachneigung"
-                        },
-                        {
-                            "id": "4.3.2",
-                            "title": "Konsistenz der Attribute dachform und detaillierteDachform"
-                        },
-                        {
-                            "id": "4.5.1.1",
-                            "title": "Relation abweichungText"
-                        },
-                        {
-                            "id": "4.5.1.2",
-                            "title": "Konsistenz der Attribute allgArtDerBaulNutzung und besondereArtDerBaulNutzung"
-                        },
-                        {
-                            "id": "4.5.1.3",
-                            "title": "Konsistenz der Attribute besondereArtDerBaulNutzung und sondernutzung"
-                        },
-                        {
-                            "id": "4.5.1.4",
-                            "title": "Konsistenz der Attribute bauweise und abweichendeBauweise"
-                        },
-                        {
-                            "id": "4.5.1.5",
-                            "title": "Konsistenz der Attribute detaillierteArtDer BaulNutzung, allgArtDerBaulNutzung, besondereArtDerBaulNutzung und sondernutzung"
-                        },
-                        {
-                            "id": "4.5.2.1",
-                            "title": "Relation baugrenze"
-                        },
-                        {
-                            "id": "4.5.2.2",
-                            "title": "Relation baulinie"
-                        },
-                        {
-                            "id": "4.5.10.1",
-                            "title": "Konsistenz der Attribute typ und sonstTyp"
-                        },
-                        {
-                            "id": "4.5.13.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.5.13.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.5.13.3",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
-                        },
-                        {
-                            "id": "4.5.14.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.5.14.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.5.14.3",
-                            "title": "Einschränkung der Relation eigentümer"
-                        },
-                        {
-                            "id": "4.5.14.4",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
-                        },
-                        {
-                            "id": "4.5.15.1",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "4.6.3.1",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "4.7.1.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.7.1.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.7.1.3",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.7.1.4",
-                            "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
-                        },
-                        {
-                            "id": "4.7.1.5",
-                            "title": "Konsistenz der Attribute weitereBesondZweckbestimmungi und weitereZweckbestimmungi (i = 1, 2, 3, 4)"
-                        },
-                        {
-                            "id": "4.7.1.6",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
-                        },
-                        {
-                            "id": "4.7.2.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.7.2.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.7.2.3",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
-                        },
-                        {
-                            "id": "4.8.1.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.8.1.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.8.1.3",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
-                        },
-                        {
-                            "id": "4.8.2.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.8.2.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.8.2.3",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
-                        },
-                        {
-                            "id": "4.8.2.4",
-                            "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "4.8.3.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.8.3.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.8.3.3",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.8.3.4",
-                            "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
-                        },
-                        {
-                            "id": "4.8.3.5",
-                            "title": "Konsistenz der Attribute weitereBesondZweckbestimmungi und weitereZweckbestimmungi"
-                        },
-                        {
-                            "id": "4.8.3.6",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
-                        },
-                        {
-                            "id": "4.9.2.1",
-                            "title": "Konsistenz der Attribute massnahme und weitereMassnahme1"
-                        },
-                        {
-                            "id": "4.9.2.2",
-                            "title": "Konsistenz der Attribute weitereMassnahme2und weitereMassnahme1"
-                        },
-                        {
-                            "id": "4.9.2.3",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Maßnahmen"
-                        },
-                        {
-                            "id": "4.9.3.1",
-                            "title": "Konsistenz der Attribute massnahme und weitereMassnahme1"
-                        },
-                        {
-                            "id": "4.9.3.2",
-                            "title": "Konsistenz der Attribute weitereMassnahme2und weitereMassnahme1"
-                        },
-                        {
-                            "id": "4.9.3.3",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Maßnahmen"
-                        },
-                        {
-                            "id": "4.9.5.1",
-                            "title": "Konsistenz der Attribute massnahme und weitereMassnahme1"
-                        },
-                        {
-                            "id": "4.9.5.2",
-                            "title": "Konsistenz der Attribute weitereMassnahme2und weitereMassnahme1"
-                        },
-                        {
-                            "id": "4.9.5.3",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Maßnahmen"
-                        },
-                        {
-                            "id": "4.9.5.4",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "4.9.6.1",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "4.10.2.1",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "4.11.1.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.11.1.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.11.1.3",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.11.1.4",
-                            "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
-                        },
-                        {
-                            "id": "4.11.1.5",
-                            "title": "Konsistenz der Attribute weitereBesondZweckbestimmungi und weitereZweckbestimmungi"
-                        },
-                        {
-                            "id": "4.11.1.6",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
-                        },
-                        {
-                            "id": "4.11.1.7",
-                            "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "4.12.1.1",
-                            "title": "Einschränkung der Relation begrenzungslinie"
-                        },
-                        {
-                            "id": "4.12.2.1",
-                            "title": "Einschränkung der Relation begrenzungslinie"
-                        },
-                        {
-                            "id": "4.12.2.2",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
-                        },
-                        {
-                            "id": "4.12.3.1",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "4.13.1.1",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
-                        },
-                        {
-                            "id": "4.13.2.1",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
-                        },
-                        {
-                            "id": "4.14.1.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.14.2.1",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "4.14.3.1",
-                            "title": "Konsistenz der Attribute startWinkel und endWinkel"
-                        },
-                        {
-                            "id": "4.14.3.2",
-                            "title": "Kein flächenhafter Raumbezug"
-                        },
-                        {
-                            "id": "4.14.4.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "4.14.6.1",
-                            "title": "Notwendige Spezifikation einer Textlichen Darstellung"
-                        },
-                        {
-                            "id": "4.14.7.1",
-                            "title": "Verwendung der Relation hoehenangabe"
-                        },
-                        {
-                            "id": "4.14.7.2",
-                            "title": "Kein flächenhafter Raumbezug"
-                        },
-                        {
-                            "id": "5.1.1.1",
-                            "title": "Einschränkung der Relation bereich"
-                        },
-                        {
-                            "id": "5.1.1.2",
-                            "title": "Konsistenz der Attribute planArt und sonstPlanArt"
-                        },
-                        {
-                            "id": "5.1.2.1",
-                            "title": "Einschränkung der Relation inhaltFPlan"
-                        },
-                        {
-                            "id": "5.1.2.2",
-                            "title": "Einschränkung der Relation rasterAenderung"
-                        },
-                        {
-                            "id": "5.1.2.3",
-                            "title": "Einschränkung der Relation gehoertZuPlan"
-                        },
-                        {
-                            "id": "5.1.3.1",
-                            "title": "Einschränkung der Relation wirdAusgeglichenDurchFlaeche"
-                        },
-                        {
-                            "id": "5.1.3.2",
-                            "title": "Einschränkung der Relation wirdAusgeglichenDurchSPE"
-                        },
-                        {
-                            "id": "5.1.3.3",
-                            "title": "Rückwärts-Referenzen auf Plan-Bereiche"
-                        },
-                        {
-                            "id": "5.1.3.4",
-                            "title": "FPlan-Inhalte dürfen nicht gleichzeitig als originärer Planinhalt und nachrichtliche Übernahme in den Plan integriert werden."
-                        },
-                        {
-                            "id": "5.1.4.1",
-                            "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
-                        },
-                        {
-                            "id": "5.1.4.2",
-                            "title": "Einschränkung auf Flächengeometrie"
-                        },
-                        {
-                            "id": "5.1.5.1",
-                            "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
-                        },
-                        {
-                            "id": "5.1.5.2",
-                            "title": "Angabe des Attributs flaechenschluss bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "5.1.6.1",
-                            "title": "Überlagerungsobjekte gehören nie zum Flächenschluss"
-                        },
-                        {
-                            "id": "5.1.7.1",
-                            "title": "Flächenschlussobjekte der Ebene 0 gehören zum Flächenschluss"
-                        },
-                        {
-                            "id": "5.1.8.1",
-                            "title": "Einschränkung auf Liniengeometrie"
-                        },
-                        {
-                            "id": "5.1.9.1",
-                            "title": "Einschränkung auf Punktgeometrie"
-                        },
-                        {
-                            "id": "5.3.1.1",
-                            "title": "Konsistenz der Attribute allgArtDerBaulNutzung und besondereArtDerBaulNutzung"
-                        },
-                        {
-                            "id": "5.3.1.2",
-                            "title": "Konsistenz der Attribute besondereArtDerBaulNutzung und sonderNutzung"
-                        },
-                        {
-                            "id": "5.3.1.3",
-                            "title": "Konsistenz der Attribute detaillierteArtDer BaulNutzung, allgArtDerBaulNutzung, besondereArtDerBaulNutzung und sonderNutzung"
-                        },
-                        {
-                            "id": "5.3.1.4",
-                            "title": "Konsistenz der Angaben zur GFZ"
-                        },
-                        {
-                            "id": "5.4.1.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.4.1.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.4.1.3",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.4.1.4",
-                            "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
-                        },
-                        {
-                            "id": "5.4.1.5",
-                            "title": "Konsistenz der Attribute weitereBesondZweckbestimmungi und weitereZweckbestimmungi (i = 1, 2, 3, 4, 5)"
-                        },
-                        {
-                            "id": "5.4.1.6",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
-                        },
-                        {
-                            "id": "5.4.1.7",
-                            "title": "Einschränkung des Raumbezugs"
-                        },
-                        {
-                            "id": "5.4.1.8",
-                            "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "5.4.2.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.4.2.2",
-                            "title": "Verwendung der Attribute zur Spezifikation einer einzigen detaillierter Zweckbestimmung"
-                        },
-                        {
-                            "id": "5.4.2.3",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
-                        },
-                        {
-                            "id": "5.4.2.4",
-                            "title": "Einschränkung des Raumbezugs"
-                        },
-                        {
-                            "id": "5.4.2.5",
-                            "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "5.5.1.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.5.1.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.5.1.3",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
-                        },
-                        {
-                            "id": "5.5.2.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.5.2.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.5.2.3",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
-                        },
-                        {
-                            "id": "5.5.3.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.5.3.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.5.3.3",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.5.3.4",
-                            "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
-                        },
-                        {
-                            "id": "5.5.3.5",
-                            "title": "Konsistenz der Attribute weitereBesondZweckbestimmungi und weitereZweckbestimmungi (i = 1, 2, 3, 4, 5)"
-                        },
-                        {
-                            "id": "5.5.3.6",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
-                        },
-                        {
-                            "id": "5.5.3.7",
-                            "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "5.6.1.1",
-                            "title": "Konsistenz der Attribute massnahme, weitereMassnahme1 und weitereMassnahme2"
-                        },
-                        {
-                            "id": "5.6.1.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Maßnahmen"
-                        },
-                        {
-                            "id": "5.6.2.1",
-                            "title": "Konsistenz der Attribute massnahme, weitereMassnahme1 und weitereMassnahme2"
-                        },
-                        {
-                            "id": "5.6.2.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Maßnahmen"
-                        },
-                        {
-                            "id": "5.7.1.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.7.1.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.7.1.3",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.7.1.4",
-                            "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
-                        },
-                        {
-                            "id": "5.7.1.5",
-                            "title": "Konsistenz der Attribute weitereZweckbestimmungi und weitereBesondZweckbestimmungi (i = 1, 2, 3)"
-                        },
-                        {
-                            "id": "5.7.1.6",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
-                        },
-                        {
-                            "id": "5.7.1.7",
-                            "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "5.8.1.1",
-                            "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
-                        },
-                        {
-                            "id": "5.8.1.2",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
-                        },
-                        {
-                            "id": "5.8.1.3",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "5.9.1.1",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
-                        },
-                        {
-                            "id": "5.9.1.2",
-                            "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "5.9.2.1",
-                            "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
-                        },
-                        {
-                            "id": "5.9.2.2",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "5.10.1.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.10.2.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.10.2.2",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.10.2.3",
-                            "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
-                        },
-                        {
-                            "id": "5.10.2.4",
-                            "title": "Konsistenz der Attribute weitereZweckbestimmungi und weitereBesondZweckbestimmungi (i = 1, 2)"
-                        },
-                        {
-                            "id": "5.10.3.1",
-                            "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
-                        },
-                        {
-                            "id": "5.10.4.1",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "5.10.6.1",
-                            "title": "Notwendige Spezifikation einer Textlichen Darstellung"
-                        },
-                        {
-                            "id": "6.1.1.1",
-                            "title": "Einschränkung der Relation bereich"
-                        },
-                        {
-                            "id": "6.1.2.1",
-                            "title": "Einschränkung der Relation inhaltSoPlan"
-                        },
-                        {
-                            "id": "6.1.2.2",
-                            "title": "Einschränkung der Relation rasterAenderung"
-                        },
-                        {
-                            "id": "6.1.2.3",
-                            "title": "Einschränkung der Relation gehoertZuPlan"
-                        },
-                        {
-                            "id": "6.1.3.1",
-                            "title": "Rückwärts-Referenzen auf Plan-Bereiche"
-                        },
-                        {
-                            "id": "6.1.3.2",
-                            "title": "SOPlan-Inhalte dürfen nicht gleichzeitig als originärer Planinhalt und nachrichtliche Übernahme in den Plan integriert werden."
-                        },
-                        {
-                            "id": "6.1.4.1",
-                            "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
-                        },
-                        {
-                            "id": "6.1.4.2",
-                            "title": "Einschränkung auf Flächengeometrie"
-                        },
-                        {
-                            "id": "6.1.5.1",
-                            "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
-                        },
-                        {
-                            "id": "6.1.5.2",
-                            "title": "Angabe des Attributs flaechenschluss bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "6.1.6.1",
-                            "title": "Einschränkung auf Liniengeometrie"
-                        },
-                        {
-                            "id": "6.1.7.1",
-                            "title": "Einschränkung auf Punktgeometrie"
-                        },
-                        {
-                            "id": "6.2.1.1",
-                            "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.2.1.2",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "6.2.2.1",
-                            "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.2.2.2",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "6.2.3.1",
-                            "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.2.4.1",
-                            "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.2.5.1",
-                            "title": "Konsistenz der Attribute artDerFestlegung und besondereArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.2.5.2",
-                            "title": "Konsistenz der Attribute artDerFestlegung, besondereArtDerFestlegung und detailArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.2.5.3",
-                            "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "6.2.6.1",
-                            "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.2.7.1",
-                            "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.2.7.2",
-                            "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "6.2.8.1",
-                            "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.3.1.1",
-                            "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.3.1.2",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "6.3.2.1",
-                            "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.3.2.2",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "6.3.3.1",
-                            "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
-                        },
-                        {
-                            "id": "6.3.3.2",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "6.4.1.1",
-                            "title": "Konsistenz der Attribute gebietsArt und sonstGebietsArt"
-                        },
-                        {
-                            "id": "6.4.1.2",
-                            "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
-                        },
-                        {
-                            "id": "6.5.1.1",
-                            "title": "Konsistenz von typ und sonstTyp"
-                        }
-                    ],
-                    "status": "COMPLETED"
-                },
-                "geometrisch": {
-                    "valid": false,
-                    "rules": [
-                        {
-                            "id": "2.2.1.1",
-                            "title": "Flächenschlussbedingung"
-                        },
-                        {
-                            "id": "2.2.3.1",
-                            "title": "Raumbezogene Objekte im Innern des Geltungsbereichs"
-                        },
-                        {
-                            "findings": [
-                                {
-                                    "markerGeom": {
-                                        "coordinates": [
-                                            [
-                                                389187.29,
-                                                5799400.487
-                                            ],
-                                            [
-                                                389192.226,
-                                                5799400.102
-                                            ],
-                                            [
-                                                389213.987,
-                                                5799398.409
-                                            ],
-                                            [
-                                                389228.148,
-                                                5799397.301
-                                            ],
-                                            [
-                                                389235.230180782,
-                                                5799396.76051955
-                                            ],
-                                            [
-                                                389267.224,
-                                                5799394.319
-                                            ],
-                                            [
-                                                389280.11,
-                                                5799393.347
-                                            ],
-                                            [
-                                                389313.709,
-                                                5799390.721
-                                            ],
-                                            [
-                                                389320.31,
-                                                5799390.205
-                                            ],
-                                            [
-                                                389322.384189298,
-                                                5799390.04297999
-                                            ],
-                                            [
-                                                389325.29,
-                                                5799389.816
-                                            ],
-                                            [
-                                                389335.943,
-                                                5799388.983
-                                            ],
-                                            [
-                                                389338.767,
-                                                5799388.73
-                                            ],
-                                            [
-                                                389359.381,
-                                                5799386.879
-                                            ],
-                                            [
-                                                389383.682,
-                                                5799382.558
-                                            ],
-                                            [
-                                                389399.504,
-                                                5799378.591
-                                            ],
-                                            [
-                                                389428.454,
-                                                5799370.13900001
-                                            ],
-                                            [
-                                                389431.729,
-                                                5799369.183
-                                            ],
-                                            [
-                                                389436.708,
-                                                5799367.117
-                                            ],
-                                            [
-                                                389442.462,
-                                                5799364.731
-                                            ],
-                                            [
-                                                389444.099,
-                                                5799364.052
-                                            ],
-                                            [
-                                                389444.497,
-                                                5799363.887
-                                            ],
-                                            [
-                                                389448.589,
-                                                5799362.19
-                                            ],
-                                            [
-                                                389450.365,
-                                                5799361.454
-                                            ],
-                                            [
-                                                389451.908,
-                                                5799360.814
-                                            ],
-                                            [
-                                                389435.775757406,
-                                                5799350.39333417
-                                            ],
-                                            [
-                                                389420.573,
-                                                5799340.573
-                                            ],
-                                            [
-                                                389415.206,
-                                                5799337.114
-                                            ],
-                                            [
-                                                389418.749,
-                                                5799302.879
-                                            ],
-                                            [
-                                                389419.677,
-                                                5799293.894
-                                            ],
-                                            [
-                                                389420.484,
-                                                5799286.098
-                                            ],
-                                            [
-                                                389422.311,
-                                                5799268.414
-                                            ],
-                                            [
-                                                389401.481518475,
-                                                5799266.40521146
-                                            ],
-                                            [
-                                                389396.274,
-                                                5799265.903
-                                            ],
-                                            [
-                                                389370.273,
-                                                5799263.3
-                                            ],
-                                            [
-                                                389356.361,
-                                                5799262.039
-                                            ],
-                                            [
-                                                389355.362,
-                                                5799262.017
-                                            ],
-                                            [
-                                                389341.745,
-                                                5799262.042
-                                            ],
-                                            [
-                                                389337.745,
-                                                5799262.048
-                                            ],
-                                            [
-                                                389323.108,
-                                                5799262.075
-                                            ],
-                                            [
-                                                389317.236,
-                                                5799262.088
-                                            ],
-                                            [
-                                                389312.912346494,
-                                                5799261.28406564
-                                            ],
-                                            [
-                                                389303.866,
-                                                5799259.602
-                                            ],
-                                            [
-                                                389281.835,
-                                                5799255.493
-                                            ],
-                                            [
-                                                389278.769,
-                                                5799254.92
-                                            ],
-                                            [
-                                                389271.16,
-                                                5799253.497
-                                            ],
-                                            [
-                                                389269.442,
-                                                5799253.17600001
-                                            ],
-                                            [
-                                                389256.587,
-                                                5799250.788
-                                            ],
-                                            [
-                                                389248.612,
-                                                5799249.308
-                                            ],
-                                            [
-                                                389247.613,
-                                                5799249.119
-                                            ],
-                                            [
-                                                389243.177,
-                                                5799248.293
-                                            ],
-                                            [
-                                                389187.29,
-                                                5799400.487
-                                            ]
-                                        ],
-                                        "type": "LineString"
-                                    },
-                                    "level": "ERROR",
-                                    "gmlIds": [
-                                        "GML_3a07cab4-ba41-43cf-a2b2-098a099ab0c3"
-                                    ],
-                                    "message": "äußerer Ring verwendet falsche Laufrichtung (CW)."
-                                }
-                            ],
-                            "id": "2.2.2.1",
-                            "title": "Verwendung geometrisch korrekter Flächen"
-                        }
+  "date": "-fixed-for-comparison-",
+  "filename": null,
+  "syntaktisch": {
+    "valid": true,
+    "status": "COMPLETED"
+  },
+  "validationName": "edfd613e-b85d-4ea6-9b97-bb33712b1ba6",
+  "plans": [
+    {
+      "valid": false,
+      "externalReferencesResult": [],
+      "rasterEvaluationResult": [],
+      "validationResult": {
+        "semantisch": {
+          "valid": true,
+          "rulesMetadata": {
+            "source": "https:\/\/gitlab.opencode.de\/xleitstelle\/xplanung\/validierungsregeln\/standard\/-\/tree\/v1.1.9",
+            "version": "1.1.9"
+          },
+          "rules": [
+            {
+              "id": "2.1.2.1",
+              "title": "Verwendung vorgegebenen URNs für das uom-Attribut von GML-MeasureType"
+            },
+            {
+              "id": "2.1.3.1",
+              "title": "Angabe eines Standard CRS"
+            },
+            {
+              "id": "2.2.1.1",
+              "title": "Flächenschlussbedingung"
+            },
+            {
+              "id": "3.1.1.1",
+              "title": "Relationen auf Text-Abschnitte"
+            },
+            {
+              "id": "3.1.1.2",
+              "title": "Relationen auf Begründungs-Abschnitte"
+            },
+            {
+              "id": "3.1.2.1",
+              "title": "Relation auf Präsentationsobjekte"
+            },
+            {
+              "id": "3.1.2.2",
+              "title": "Relation auf Fachobjekte"
+            },
+            {
+              "id": "3.1.2.3",
+              "title": "Relation auf Basis-Rasterplan"
+            },
+            {
+              "id": "3.1.3.1",
+              "title": "Relationen auf Text-Abschnitte"
+            },
+            {
+              "id": "3.1.3.2",
+              "title": "Relationen auf Begründungs-Abschnitte"
+            },
+            {
+              "id": "3.1.3.3",
+              "title": "Rückwärts-Referenzen auf Plan-Bereiche"
+            },
+            {
+              "id": "3.1.3.4",
+              "title": "Rückwärts-Referenzen auf Präsentationsobjekte"
+            },
+            {
+              "id": "3.2.1.1",
+              "title": "Spezifikation des Textinhalts"
+            },
+            {
+              "id": "3.2.2.1",
+              "title": "Spezifikation des Textinhalts"
+            },
+            {
+              "id": "3.2.3.1",
+              "title": "Konsistenz der verschiedenen Höhenangaben"
+            },
+            {
+              "id": "3.2.3.2",
+              "title": "Verwendung von Höhenangaben, die sich auf eine auf Bezugshöhe beziehen, die auf Planebene definiert ist"
+            },
+            {
+              "id": "3.2.3.3",
+              "title": "Konsistenz der Attribute hoehenbezug und abweichenderHoehenbezug"
+            },
+            {
+              "id": "3.2.4.1",
+              "title": "Verweis auf Dokumente."
+            },
+            {
+              "id": "3.2.5.1",
+              "title": "Konsistenz der Attribute ags (Amtlicher Gemeindeschlüssel) und rs (Regionalschlüssel)."
+            },
+            {
+              "id": "3.3.1.1",
+              "title": "Spezifikation des Fachobjekt-Attributs bei nicht-freien Präsentationsobjekten"
+            },
+            {
+              "id": "3.3.1.2",
+              "title": "Konsistenz der Attribute art und index"
+            },
+            {
+              "id": "3.3.1.3",
+              "title": "Rückwärts-Referenzen auf Plan-Bereiche"
+            },
+            {
+              "id": "3.3.2.1",
+              "title": "Einschränkung des Raumbezugs auf Punktgeometrie."
+            },
+            {
+              "id": "3.3.3.1",
+              "title": "Einschränkung des Raumbezugs auf Liniengeometrie."
+            },
+            {
+              "id": "3.3.4.1",
+              "title": "Einschränkung des Raumbezugs auf Flächengeometrie."
+            },
+            {
+              "id": "4.1.1.1",
+              "title": "Einschränkung der Relation bereich"
+            },
+            {
+              "id": "4.1.2.1",
+              "title": "Einschränkung der Relation inhaltBPlan"
+            },
+            {
+              "id": "4.1.2.2",
+              "title": "Einschränkung der Relation rasterAenderung"
+            },
+            {
+              "id": "4.1.2.3",
+              "title": "Einschränkung der Relation gehoertZuPlan"
+            },
+            {
+              "id": "4.1.3.1",
+              "title": "Einschränkung der Relation wirdAusgeglichenDurchFlaeche"
+            },
+            {
+              "id": "4.1.3.2",
+              "title": "Einschränkung der Relation wirdAusgeglichenDurchMassnahme"
+            },
+            {
+              "id": "4.1.3.3",
+              "title": "Einschränkung der Relation wirdAusgeglichenDurchSPEMassnahme"
+            },
+            {
+              "id": "4.1.3.4",
+              "title": "Einschränkung der Relation wirdAusgeglichenDurchSPEFlaeche"
+            },
+            {
+              "id": "4.1.3.5",
+              "title": "Rückwärts-Referenzen auf Plan-Bereiche"
+            },
+            {
+              "id": "4.1.3.6",
+              "title": "BPlan-Inhalte dürfen nicht gleichzeitig als originärer Planinhalt und nachrichtliche Übernahme in den Plan integriert werden."
+            },
+            {
+              "id": "4.1.3.7",
+              "title": "Einschränkung der Relation wirdAusgeglichenDurchABE"
+            },
+            {
+              "id": "4.1.4.1",
+              "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
+            },
+            {
+              "id": "4.1.4.2",
+              "title": "Einschränkung auf Flächengeometrie"
+            },
+            {
+              "id": "4.1.5.1",
+              "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
+            },
+            {
+              "id": "4.1.5.2",
+              "title": "Angabe des Attributs flaechenschluss bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "4.1.6.1",
+              "title": "Überlagerungsobjekte gehören nie zum Flächenschluss."
+            },
+            {
+              "id": "4.1.7.1",
+              "title": "Flächenschlussobjekte auf Ebene 0 gehören immer zum Flächenschluss"
+            },
+            {
+              "id": "4.1.8.1",
+              "title": "Einschränkung auf Liniengeometrie"
+            },
+            {
+              "id": "4.1.9.1",
+              "title": "Einschränkung auf Punktgeometrie"
+            },
+            {
+              "id": "4.2.1",
+              "title": "Konsistenz der Angaben zur GFZ"
+            },
+            {
+              "id": "4.2.2",
+              "title": "Konsistenz der Angaben zur GF"
+            },
+            {
+              "id": "4.2.3",
+              "title": "Konsistenz der Angaben zur GFZ und GF"
+            },
+            {
+              "id": "4.2.4",
+              "title": "Konsistenz der Angaben zur BMZ"
+            },
+            {
+              "id": "4.2.5",
+              "title": "Konsistenz der Angaben zur BM"
+            },
+            {
+              "id": "4.2.6",
+              "title": "Konsistenz der Angaben zur BMZ und BM"
+            },
+            {
+              "id": "4.2.7",
+              "title": "Konsistenz der Angaben zur GRZ"
+            },
+            {
+              "id": "4.2.8",
+              "title": "Konsistenz der Angaben zur GR"
+            },
+            {
+              "id": "4.2.9",
+              "title": "Konsistenz der Angaben zur GRZ und GR"
+            },
+            {
+              "id": "4.2.10",
+              "title": "Konsistenz der Angaben zu Z"
+            },
+            {
+              "id": "4.2.11",
+              "title": "Konsistenz der Angaben zu ZU"
+            },
+            {
+              "id": "4.3.1",
+              "title": "Konsistenz der Angaben zur Dachneigung"
+            },
+            {
+              "id": "4.3.2",
+              "title": "Konsistenz der Attribute dachform und detaillierteDachform"
+            },
+            {
+              "id": "4.5.1.1",
+              "title": "Relation abweichungText"
+            },
+            {
+              "id": "4.5.1.2",
+              "title": "Konsistenz der Attribute allgArtDerBaulNutzung und besondereArtDerBaulNutzung"
+            },
+            {
+              "id": "4.5.1.3",
+              "title": "Konsistenz der Attribute besondereArtDerBaulNutzung und sondernutzung"
+            },
+            {
+              "id": "4.5.1.4",
+              "title": "Konsistenz der Attribute bauweise und abweichendeBauweise"
+            },
+            {
+              "id": "4.5.1.5",
+              "title": "Konsistenz der Attribute detaillierteArtDer BaulNutzung, allgArtDerBaulNutzung, besondereArtDerBaulNutzung und sondernutzung"
+            },
+            {
+              "id": "4.5.2.1",
+              "title": "Relation baugrenze"
+            },
+            {
+              "id": "4.5.2.2",
+              "title": "Relation baulinie"
+            },
+            {
+              "id": "4.5.10.1",
+              "title": "Konsistenz der Attribute typ und sonstTyp"
+            },
+            {
+              "id": "4.5.13.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "4.5.13.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "4.5.13.3",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
+            },
+            {
+              "id": "4.5.14.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "4.5.14.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "4.5.14.3",
+              "title": "Einschränkung der Relation eigentümer"
+            },
+            {
+              "id": "4.5.14.4",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
+            },
+            {
+              "id": "4.5.15.1",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "4.6.3.1",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "4.7.1.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "4.7.1.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
+            },
+            {
+              "id": "4.7.1.3",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "4.7.1.4",
+              "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
+            },
+            {
+              "id": "4.7.1.5",
+              "title": "Konsistenz der Attribute weitereBesondZweckbestimmungi und weitereZweckbestimmungi (i = 1, 2, 3, 4)"
+            },
+            {
+              "id": "4.7.1.6",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
+            },
+            {
+              "id": "4.7.2.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "4.7.2.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "4.7.2.3",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
+            },
+            {
+              "id": "4.8.1.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "4.8.1.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "4.8.1.3",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
+            },
+            {
+              "id": "4.8.2.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "4.8.2.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "4.8.2.3",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
+            },
+            {
+              "id": "4.8.2.4",
+              "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "4.8.3.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "4.8.3.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
+            },
+            {
+              "id": "4.8.3.3",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "4.8.3.4",
+              "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
+            },
+            {
+              "id": "4.8.3.5",
+              "title": "Konsistenz der Attribute weitereBesondZweckbestimmungi und weitereZweckbestimmungi"
+            },
+            {
+              "id": "4.8.3.6",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
+            },
+            {
+              "id": "4.9.2.1",
+              "title": "Konsistenz der Attribute massnahme und weitereMassnahme1"
+            },
+            {
+              "id": "4.9.2.2",
+              "title": "Konsistenz der Attribute weitereMassnahme2und weitereMassnahme1"
+            },
+            {
+              "id": "4.9.2.3",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Maßnahmen"
+            },
+            {
+              "id": "4.9.3.1",
+              "title": "Konsistenz der Attribute massnahme und weitereMassnahme1"
+            },
+            {
+              "id": "4.9.3.2",
+              "title": "Konsistenz der Attribute weitereMassnahme2und weitereMassnahme1"
+            },
+            {
+              "id": "4.9.3.3",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Maßnahmen"
+            },
+            {
+              "id": "4.9.5.1",
+              "title": "Konsistenz der Attribute massnahme und weitereMassnahme1"
+            },
+            {
+              "id": "4.9.5.2",
+              "title": "Konsistenz der Attribute weitereMassnahme2und weitereMassnahme1"
+            },
+            {
+              "id": "4.9.5.3",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Maßnahmen"
+            },
+            {
+              "id": "4.9.5.4",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "4.9.6.1",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "4.10.2.1",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "4.11.1.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "4.11.1.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
+            },
+            {
+              "id": "4.11.1.3",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "4.11.1.4",
+              "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
+            },
+            {
+              "id": "4.11.1.5",
+              "title": "Konsistenz der Attribute weitereBesondZweckbestimmungi und weitereZweckbestimmungi"
+            },
+            {
+              "id": "4.11.1.6",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
+            },
+            {
+              "id": "4.11.1.7",
+              "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "4.12.1.1",
+              "title": "Einschränkung der Relation begrenzungslinie"
+            },
+            {
+              "id": "4.12.2.1",
+              "title": "Einschränkung der Relation begrenzungslinie"
+            },
+            {
+              "id": "4.12.2.2",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
+            },
+            {
+              "id": "4.12.3.1",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "4.13.1.1",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
+            },
+            {
+              "id": "4.13.2.1",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
+            },
+            {
+              "id": "4.14.1.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "4.14.2.1",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "4.14.3.1",
+              "title": "Konsistenz der Attribute startWinkel und endWinkel"
+            },
+            {
+              "id": "4.14.3.2",
+              "title": "Kein flächenhafter Raumbezug"
+            },
+            {
+              "id": "4.14.4.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "4.14.6.1",
+              "title": "Notwendige Spezifikation einer Textlichen Darstellung"
+            },
+            {
+              "id": "4.14.7.1",
+              "title": "Verwendung der Relation hoehenangabe"
+            },
+            {
+              "id": "4.14.7.2",
+              "title": "Kein flächenhafter Raumbezug"
+            },
+            {
+              "id": "5.1.1.1",
+              "title": "Einschränkung der Relation bereich"
+            },
+            {
+              "id": "5.1.1.2",
+              "title": "Konsistenz der Attribute planArt und sonstPlanArt"
+            },
+            {
+              "id": "5.1.2.1",
+              "title": "Einschränkung der Relation inhaltFPlan"
+            },
+            {
+              "id": "5.1.2.2",
+              "title": "Einschränkung der Relation rasterAenderung"
+            },
+            {
+              "id": "5.1.2.3",
+              "title": "Einschränkung der Relation gehoertZuPlan"
+            },
+            {
+              "id": "5.1.3.1",
+              "title": "Einschränkung der Relation wirdAusgeglichenDurchFlaeche"
+            },
+            {
+              "id": "5.1.3.2",
+              "title": "Einschränkung der Relation wirdAusgeglichenDurchSPE"
+            },
+            {
+              "id": "5.1.3.3",
+              "title": "Rückwärts-Referenzen auf Plan-Bereiche"
+            },
+            {
+              "id": "5.1.3.4",
+              "title": "FPlan-Inhalte dürfen nicht gleichzeitig als originärer Planinhalt und nachrichtliche Übernahme in den Plan integriert werden."
+            },
+            {
+              "id": "5.1.4.1",
+              "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
+            },
+            {
+              "id": "5.1.4.2",
+              "title": "Einschränkung auf Flächengeometrie"
+            },
+            {
+              "id": "5.1.5.1",
+              "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
+            },
+            {
+              "id": "5.1.5.2",
+              "title": "Angabe des Attributs flaechenschluss bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "5.1.6.1",
+              "title": "Überlagerungsobjekte gehören nie zum Flächenschluss"
+            },
+            {
+              "id": "5.1.7.1",
+              "title": "Flächenschlussobjekte der Ebene 0 gehören zum Flächenschluss"
+            },
+            {
+              "id": "5.1.8.1",
+              "title": "Einschränkung auf Liniengeometrie"
+            },
+            {
+              "id": "5.1.9.1",
+              "title": "Einschränkung auf Punktgeometrie"
+            },
+            {
+              "id": "5.3.1.1",
+              "title": "Konsistenz der Attribute allgArtDerBaulNutzung und besondereArtDerBaulNutzung"
+            },
+            {
+              "id": "5.3.1.2",
+              "title": "Konsistenz der Attribute besondereArtDerBaulNutzung und sonderNutzung"
+            },
+            {
+              "id": "5.3.1.3",
+              "title": "Konsistenz der Attribute detaillierteArtDer BaulNutzung, allgArtDerBaulNutzung, besondereArtDerBaulNutzung und sonderNutzung"
+            },
+            {
+              "id": "5.3.1.4",
+              "title": "Konsistenz der Angaben zur GFZ"
+            },
+            {
+              "id": "5.4.1.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "5.4.1.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
+            },
+            {
+              "id": "5.4.1.3",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "5.4.1.4",
+              "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
+            },
+            {
+              "id": "5.4.1.5",
+              "title": "Konsistenz der Attribute weitereBesondZweckbestimmungi und weitereZweckbestimmungi (i = 1, 2, 3, 4, 5)"
+            },
+            {
+              "id": "5.4.1.6",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
+            },
+            {
+              "id": "5.4.1.7",
+              "title": "Einschränkung des Raumbezugs"
+            },
+            {
+              "id": "5.4.1.8",
+              "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "5.4.2.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "5.4.2.2",
+              "title": "Verwendung der Attribute zur Spezifikation einer einzigen detaillierter Zweckbestimmung"
+            },
+            {
+              "id": "5.4.2.3",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
+            },
+            {
+              "id": "5.4.2.4",
+              "title": "Einschränkung des Raumbezugs"
+            },
+            {
+              "id": "5.4.2.5",
+              "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "5.5.1.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "5.5.1.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "5.5.1.3",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
+            },
+            {
+              "id": "5.5.2.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "5.5.2.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "5.5.2.3",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
+            },
+            {
+              "id": "5.5.3.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "5.5.3.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
+            },
+            {
+              "id": "5.5.3.3",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "5.5.3.4",
+              "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
+            },
+            {
+              "id": "5.5.3.5",
+              "title": "Konsistenz der Attribute weitereBesondZweckbestimmungi und weitereZweckbestimmungi (i = 1, 2, 3, 4, 5)"
+            },
+            {
+              "id": "5.5.3.6",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
+            },
+            {
+              "id": "5.5.3.7",
+              "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "5.6.1.1",
+              "title": "Konsistenz der Attribute massnahme, weitereMassnahme1 und weitereMassnahme2"
+            },
+            {
+              "id": "5.6.1.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Maßnahmen"
+            },
+            {
+              "id": "5.6.2.1",
+              "title": "Konsistenz der Attribute massnahme, weitereMassnahme1 und weitereMassnahme2"
+            },
+            {
+              "id": "5.6.2.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Maßnahmen"
+            },
+            {
+              "id": "5.7.1.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "5.7.1.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
+            },
+            {
+              "id": "5.7.1.3",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer detaillierter Zweckbestimmungen"
+            },
+            {
+              "id": "5.7.1.4",
+              "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
+            },
+            {
+              "id": "5.7.1.5",
+              "title": "Konsistenz der Attribute weitereZweckbestimmungi und weitereBesondZweckbestimmungi (i = 1, 2, 3)"
+            },
+            {
+              "id": "5.7.1.6",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
+            },
+            {
+              "id": "5.7.1.7",
+              "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "5.8.1.1",
+              "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
+            },
+            {
+              "id": "5.8.1.2",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung bzw. besondere Zweckbestimmung"
+            },
+            {
+              "id": "5.8.1.3",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "5.9.1.1",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
+            },
+            {
+              "id": "5.9.1.2",
+              "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "5.9.2.1",
+              "title": "Konsistenz der Attribute für detaillierte Zweckbestimmung und Zweckbestimmung"
+            },
+            {
+              "id": "5.9.2.2",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "5.10.1.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "5.10.2.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "5.10.2.2",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer besonderer Zweckbestimmungen"
+            },
+            {
+              "id": "5.10.2.3",
+              "title": "Konsistenz der Attribute zweckbestimmung und besondereZweckbestimmung"
+            },
+            {
+              "id": "5.10.2.4",
+              "title": "Konsistenz der Attribute weitereZweckbestimmungi und weitereBesondZweckbestimmungi (i = 1, 2)"
+            },
+            {
+              "id": "5.10.3.1",
+              "title": "Verwendung der Attribute zur Spezifikation mehrerer Zweckbestimmungen"
+            },
+            {
+              "id": "5.10.4.1",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "5.10.6.1",
+              "title": "Notwendige Spezifikation einer Textlichen Darstellung"
+            },
+            {
+              "id": "6.1.1.1",
+              "title": "Einschränkung der Relation bereich"
+            },
+            {
+              "id": "6.1.2.1",
+              "title": "Einschränkung der Relation inhaltSoPlan"
+            },
+            {
+              "id": "6.1.2.2",
+              "title": "Einschränkung der Relation rasterAenderung"
+            },
+            {
+              "id": "6.1.2.3",
+              "title": "Einschränkung der Relation gehoertZuPlan"
+            },
+            {
+              "id": "6.1.3.1",
+              "title": "Rückwärts-Referenzen auf Plan-Bereiche"
+            },
+            {
+              "id": "6.1.3.2",
+              "title": "SOPlan-Inhalte dürfen nicht gleichzeitig als originärer Planinhalt und nachrichtliche Übernahme in den Plan integriert werden."
+            },
+            {
+              "id": "6.1.4.1",
+              "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
+            },
+            {
+              "id": "6.1.4.2",
+              "title": "Einschränkung auf Flächengeometrie"
+            },
+            {
+              "id": "6.1.5.1",
+              "title": "Nur Flächenobjekte der Basisebene gehören zum Flächenschluss"
+            },
+            {
+              "id": "6.1.5.2",
+              "title": "Angabe des Attributs flaechenschluss bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "6.1.6.1",
+              "title": "Einschränkung auf Liniengeometrie"
+            },
+            {
+              "id": "6.1.7.1",
+              "title": "Einschränkung auf Punktgeometrie"
+            },
+            {
+              "id": "6.2.1.1",
+              "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
+            },
+            {
+              "id": "6.2.1.2",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "6.2.2.1",
+              "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
+            },
+            {
+              "id": "6.2.2.2",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "6.2.3.1",
+              "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
+            },
+            {
+              "id": "6.2.4.1",
+              "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
+            },
+            {
+              "id": "6.2.5.1",
+              "title": "Konsistenz der Attribute artDerFestlegung und besondereArtDerFestlegung"
+            },
+            {
+              "id": "6.2.5.2",
+              "title": "Konsistenz der Attribute artDerFestlegung, besondereArtDerFestlegung und detailArtDerFestlegung"
+            },
+            {
+              "id": "6.2.5.3",
+              "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "6.2.6.1",
+              "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
+            },
+            {
+              "id": "6.2.7.1",
+              "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
+            },
+            {
+              "id": "6.2.7.2",
+              "title": "Flächenschlussobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "6.2.8.1",
+              "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
+            },
+            {
+              "id": "6.3.1.1",
+              "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
+            },
+            {
+              "id": "6.3.1.2",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "6.3.2.1",
+              "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
+            },
+            {
+              "id": "6.3.2.2",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "6.3.3.1",
+              "title": "Konsistenz der Attribute artDerFestlegung und detailArtDerFestlegung"
+            },
+            {
+              "id": "6.3.3.2",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "6.4.1.1",
+              "title": "Konsistenz der Attribute gebietsArt und sonstGebietsArt"
+            },
+            {
+              "id": "6.4.1.2",
+              "title": "Überlagerungsobjekt bei flächenhaftem Raumbezug"
+            },
+            {
+              "id": "6.5.1.1",
+              "title": "Konsistenz von typ und sonstTyp"
+            }
+          ],
+          "status": "COMPLETED"
+        },
+        "geometrisch": {
+          "valid": false,
+          "rules": [
+            {
+              "id": "2.2.1.1",
+              "title": "Flächenschlussbedingung"
+            },
+            {
+              "id": "2.2.3.1",
+              "title": "Raumbezogene Objekte im Innern des Geltungsbereichs"
+            },
+            {
+              "findings": [
+                {
+                  "markerGeom": {
+                    "bbox": null,
+                    "coordinates": [
+                      [
+                        389187.29,
+                        5799400.487
+                      ],
+                      [
+                        389192.226,
+                        5799400.102
+                      ],
+                      [
+                        389213.987,
+                        5799398.409
+                      ],
+                      [
+                        389228.148,
+                        5799397.301
+                      ],
+                      [
+                        389235.230180782,
+                        5799396.76051955
+                      ],
+                      [
+                        389267.224,
+                        5799394.319
+                      ],
+                      [
+                        389280.11,
+                        5799393.347
+                      ],
+                      [
+                        389313.709,
+                        5799390.721
+                      ],
+                      [
+                        389320.31,
+                        5799390.205
+                      ],
+                      [
+                        389322.384189298,
+                        5799390.04297999
+                      ],
+                      [
+                        389325.29,
+                        5799389.816
+                      ],
+                      [
+                        389335.943,
+                        5799388.983
+                      ],
+                      [
+                        389338.767,
+                        5799388.73
+                      ],
+                      [
+                        389359.381,
+                        5799386.879
+                      ],
+                      [
+                        389383.682,
+                        5799382.558
+                      ],
+                      [
+                        389399.504,
+                        5799378.591
+                      ],
+                      [
+                        389428.454,
+                        5799370.13900001
+                      ],
+                      [
+                        389431.729,
+                        5799369.183
+                      ],
+                      [
+                        389436.708,
+                        5799367.117
+                      ],
+                      [
+                        389442.462,
+                        5799364.731
+                      ],
+                      [
+                        389444.099,
+                        5799364.052
+                      ],
+                      [
+                        389444.497,
+                        5799363.887
+                      ],
+                      [
+                        389448.589,
+                        5799362.19
+                      ],
+                      [
+                        389450.365,
+                        5799361.454
+                      ],
+                      [
+                        389451.908,
+                        5799360.814
+                      ],
+                      [
+                        389435.775757406,
+                        5799350.39333417
+                      ],
+                      [
+                        389420.573,
+                        5799340.573
+                      ],
+                      [
+                        389415.206,
+                        5799337.114
+                      ],
+                      [
+                        389418.749,
+                        5799302.879
+                      ],
+                      [
+                        389419.677,
+                        5799293.894
+                      ],
+                      [
+                        389420.484,
+                        5799286.098
+                      ],
+                      [
+                        389422.311,
+                        5799268.414
+                      ],
+                      [
+                        389401.481518475,
+                        5799266.40521146
+                      ],
+                      [
+                        389396.274,
+                        5799265.903
+                      ],
+                      [
+                        389370.273,
+                        5799263.3
+                      ],
+                      [
+                        389356.361,
+                        5799262.039
+                      ],
+                      [
+                        389355.362,
+                        5799262.017
+                      ],
+                      [
+                        389341.745,
+                        5799262.042
+                      ],
+                      [
+                        389337.745,
+                        5799262.048
+                      ],
+                      [
+                        389323.108,
+                        5799262.075
+                      ],
+                      [
+                        389317.236,
+                        5799262.088
+                      ],
+                      [
+                        389312.912346494,
+                        5799261.28406564
+                      ],
+                      [
+                        389303.866,
+                        5799259.602
+                      ],
+                      [
+                        389281.835,
+                        5799255.493
+                      ],
+                      [
+                        389278.769,
+                        5799254.92
+                      ],
+                      [
+                        389271.16,
+                        5799253.497
+                      ],
+                      [
+                        389269.442,
+                        5799253.17600001
+                      ],
+                      [
+                        389256.587,
+                        5799250.788
+                      ],
+                      [
+                        389248.612,
+                        5799249.308
+                      ],
+                      [
+                        389247.613,
+                        5799249.119
+                      ],
+                      [
+                        389243.177,
+                        5799248.293
+                      ],
+                      [
+                        389187.29,
+                        5799400.487
+                      ]
                     ],
-                    "status": "COMPLETED"
+                    "type": "LineString"
+                  },
+                  "level": "ERROR",
+                  "gmlIds": [
+                    "GML_3a07cab4-ba41-43cf-a2b2-098a099ab0c3"
+                  ],
+                  "message": "äußerer Ring verwendet falsche Laufrichtung (CW)."
                 }
-            },
-            "bbox": {
-                "minY": 52.33234200586314,
-                "minX": 7.373668092967802,
-                "crs": "EPSG:4326",
-                "maxY": 52.33376312995529,
-                "maxX": 7.377600099759094
-            },
-            "name": "Nr. 108 Holstener Weg",
-            "type": "BP_Plan",
-            "version": "XPLAN_41",
-            "status": "COMPLETED"
+              ],
+              "id": "2.2.2.1",
+              "title": "Verwendung geometrisch korrekter Flächen"
+            }
+          ],
+          "status": "COMPLETED"
+        }
+      },
+      "bbox": {
+        "minY": 52.33234200586314,
+        "minX": 7.373668092967802,
+        "crs": "EPSG:4326",
+        "maxY": 52.33376312995529,
+        "maxX": 7.377600099759094
+      },
+      "name": "Nr. 108 Holstener Weg",
+      "type": "BP_Plan",
+      "version": "XPLAN_41",
+      "status": "COMPLETED"
+    }
+  ],
+  "geomfindings": {
+    "features": [
+      {
+        "bbox": null,
+        "geometry": {
+          "bbox": null,
+          "coordinates": [
+            [
+              7.373668092967802,
+              52.33370974642528
+            ],
+            [
+              7.373740630960223,
+              52.3337072834449
+            ],
+            [
+              7.374060422654426,
+              52.33369646339027
+            ],
+            [
+              7.374268529524706,
+              52.33368936534038
+            ],
+            [
+              7.374372603139325,
+              52.33368593801491
+            ],
+            [
+              7.37484275647524,
+              52.33367045484784
+            ],
+            [
+              7.375032114098382,
+              52.33366432032051
+            ],
+            [
+              7.375525875758316,
+              52.333647500474676
+            ],
+            [
+              7.375622882227448,
+              52.333644194970056
+            ],
+            [
+              7.375653363897409,
+              52.33364315735862
+            ],
+            [
+              7.375696066826445,
+              52.333641703716076
+            ],
+            [
+              7.37585262040787,
+              52.33363636657995
+            ],
+            [
+              7.375894131731375,
+              52.33363466252641
+            ],
+            [
+              7.3761971480516255,
+              52.33362218540471
+            ],
+            [
+              7.376555065348309,
+              52.33358825340854
+            ],
+            [
+              7.376788479046236,
+              52.33355579243725
+            ],
+            [
+              7.3772159550394045,
+              52.33348567098335
+            ],
+            [
+              7.377264313592806,
+              52.333477739592674
+            ],
+            [
+              7.377338034845487,
+              52.333460176188595
+            ],
+            [
+              7.377423230495644,
+              52.33343989312186
+            ],
+            [
+              7.377447468513561,
+              52.33343412093081
+            ],
+            [
+              7.3774533614179765,
+              52.333432718302774
+            ],
+            [
+              7.377513948932358,
+              52.333418292192746
+            ],
+            [
+              7.37754024479394,
+              52.33341203574116
+            ],
+            [
+              7.3775630909820915,
+              52.333406595072084
+            ],
+            [
+              7.37732986037478,
+              52.33330969543118
+            ],
+            [
+              7.377110068687087,
+              52.33321837775881
+            ],
+            [
+              7.377032473686757,
+              52.33318621054016
+            ],
+            [
+              7.377095712470633,
+              52.33287926024749
+            ],
+            [
+              7.377112282053984,
+              52.332798700540955
+            ],
+            [
+              7.3771266853664,
+              52.332728801794815
+            ],
+            [
+              7.377159304723172,
+              52.332570246754656
+            ],
+            [
+              7.376854404840756,
+              52.332547995677096
+            ],
+            [
+              7.376778177752862,
+              52.33254243262653
+            ],
+            [
+              7.376397609674328,
+              52.332513797742436
+            ],
+            [
+              7.376193941152073,
+              52.33249965999457
+            ],
+            [
+              7.376179293458316,
+              52.3324992608228
+            ],
+            [
+              7.3759795292286245,
+              52.33249673926654
+            ],
+            [
+              7.375920848842603,
+              52.332495986417904
+            ],
+            [
+              7.37570612100142,
+              52.33249327664225
+            ],
+            [
+              7.375619976833131,
+              52.33249220892396
+            ],
+            [
+              7.37555681531653,
+              52.33248411185837
+            ],
+            [
+              7.375424663045128,
+              52.332467170322104
+            ],
+            [
+              7.375102830883236,
+              52.33242579807323
+            ],
+            [
+              7.375058042725434,
+              52.332420029900085
+            ],
+            [
+              7.3749468907495155,
+              52.33240570606995
+            ],
+            [
+              7.374921794186274,
+              52.33240247457392
+            ],
+            [
+              7.3747340037440186,
+              52.332378419482254
+            ],
+            [
+              7.374617501709999,
+              52.33236350921986
+            ],
+            [
+              7.374602909106646,
+              52.33236160905276
+            ],
+            [
+              7.374538107172301,
+              52.33235329046701
+            ],
+            [
+              7.373668092967802,
+              52.33370974642528
+            ]
+          ],
+          "type": "LineString"
+        },
+        "id": null,
+        "type": "Feature",
+        "properties": {
+          "level": "ERROR",
+          "gmlIds": "GML_3a07cab4-ba41-43cf-a2b2-098a099ab0c3",
+          "planName": "Nr. 108 Holstener Weg",
+          "id": "2.2.2.1",
+          "title": "Verwendung geometrisch korrekter Flächen",
+          "message": "äußerer Ring verwendet falsche Laufrichtung (CW)."
         }
+      }
     ],
-    "status": "COMPLETED"
+    "bbox": null,
+    "type": "FeatureCollection"
+  },
+  "status": "COMPLETED"
 }
\ No newline at end of file
diff --git a/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report2.expected.json b/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report2.expected.json
index 1a1fa0fb1caba0a80f40e384f10d3bede58ba717..6749a7ef50f66edf10719159b4f9293de1e0766b 100644
--- a/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report2.expected.json
+++ b/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report2.expected.json
@@ -997,6 +997,7 @@
               "findings": [
                 {
                   "markerGeom": {
+                    "bbox": null,
                     "coordinates": [
                       [
                         389187.29,
@@ -1236,5 +1237,238 @@
       "status": "COMPLETED"
     }
   ],
+  "geomfindings": {
+    "features": [
+      {
+        "bbox": null,
+        "geometry": {
+          "bbox": null,
+          "coordinates": [
+            [
+              7.373668092967802,
+              52.33370974642528
+            ],
+            [
+              7.373740630960223,
+              52.3337072834449
+            ],
+            [
+              7.374060422654426,
+              52.33369646339027
+            ],
+            [
+              7.374268529524706,
+              52.33368936534038
+            ],
+            [
+              7.374372603139325,
+              52.33368593801491
+            ],
+            [
+              7.37484275647524,
+              52.33367045484784
+            ],
+            [
+              7.375032114098382,
+              52.33366432032051
+            ],
+            [
+              7.375525875758316,
+              52.333647500474676
+            ],
+            [
+              7.375622882227448,
+              52.333644194970056
+            ],
+            [
+              7.375653363897409,
+              52.33364315735862
+            ],
+            [
+              7.375696066826445,
+              52.333641703716076
+            ],
+            [
+              7.37585262040787,
+              52.33363636657995
+            ],
+            [
+              7.375894131731375,
+              52.33363466252641
+            ],
+            [
+              7.3761971480516255,
+              52.33362218540471
+            ],
+            [
+              7.376555065348309,
+              52.33358825340854
+            ],
+            [
+              7.376788479046236,
+              52.33355579243725
+            ],
+            [
+              7.3772159550394045,
+              52.33348567098335
+            ],
+            [
+              7.377264313592806,
+              52.333477739592674
+            ],
+            [
+              7.377338034845487,
+              52.333460176188595
+            ],
+            [
+              7.377423230495644,
+              52.33343989312186
+            ],
+            [
+              7.377447468513561,
+              52.33343412093081
+            ],
+            [
+              7.3774533614179765,
+              52.333432718302774
+            ],
+            [
+              7.377513948932358,
+              52.333418292192746
+            ],
+            [
+              7.37754024479394,
+              52.33341203574116
+            ],
+            [
+              7.3775630909820915,
+              52.333406595072084
+            ],
+            [
+              7.37732986037478,
+              52.33330969543118
+            ],
+            [
+              7.377110068687087,
+              52.33321837775881
+            ],
+            [
+              7.377032473686757,
+              52.33318621054016
+            ],
+            [
+              7.377095712470633,
+              52.33287926024749
+            ],
+            [
+              7.377112282053984,
+              52.332798700540955
+            ],
+            [
+              7.3771266853664,
+              52.332728801794815
+            ],
+            [
+              7.377159304723172,
+              52.332570246754656
+            ],
+            [
+              7.376854404840756,
+              52.332547995677096
+            ],
+            [
+              7.376778177752862,
+              52.33254243262653
+            ],
+            [
+              7.376397609674328,
+              52.332513797742436
+            ],
+            [
+              7.376193941152073,
+              52.33249965999457
+            ],
+            [
+              7.376179293458316,
+              52.3324992608228
+            ],
+            [
+              7.3759795292286245,
+              52.33249673926654
+            ],
+            [
+              7.375920848842603,
+              52.332495986417904
+            ],
+            [
+              7.37570612100142,
+              52.33249327664225
+            ],
+            [
+              7.375619976833131,
+              52.33249220892396
+            ],
+            [
+              7.37555681531653,
+              52.33248411185837
+            ],
+            [
+              7.375424663045128,
+              52.332467170322104
+            ],
+            [
+              7.375102830883236,
+              52.33242579807323
+            ],
+            [
+              7.375058042725434,
+              52.332420029900085
+            ],
+            [
+              7.3749468907495155,
+              52.33240570606995
+            ],
+            [
+              7.374921794186274,
+              52.33240247457392
+            ],
+            [
+              7.3747340037440186,
+              52.332378419482254
+            ],
+            [
+              7.374617501709999,
+              52.33236350921986
+            ],
+            [
+              7.374602909106646,
+              52.33236160905276
+            ],
+            [
+              7.374538107172301,
+              52.33235329046701
+            ],
+            [
+              7.373668092967802,
+              52.33370974642528
+            ]
+          ],
+          "type": "LineString"
+        },
+        "id": null,
+        "type": "Feature",
+        "properties": {
+          "level": "ERROR",
+          "gmlIds": "GML_3a07cab4-ba41-43cf-a2b2-098a099ab0c3",
+          "planName": "Nr. 108 Holstener Weg",
+          "id": "2.2.2.1",
+          "title": "Verwendung geometrisch korrekter Flächen",
+          "message": "äußerer Ring verwendet falsche Laufrichtung (CW)."
+        }
+      }
+    ],
+    "bbox": null,
+    "type": "FeatureCollection"
+  },
   "status": "COMPLETED"
 }
\ No newline at end of file
diff --git a/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report3.expected.json b/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report3.expected.json
index 9c2f536daf3d5ee710115edf58384255aeae8947..8276a83c50ec98afd7ea00d21476b70087b65556 100644
--- a/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report3.expected.json
+++ b/xplan-validator/xplan-validator-executor/src/test/resources/de/latlon/xplanbox/validator/executor/report3.expected.json
@@ -1011,6 +1011,7 @@
               "findings": [
                 {
                   "markerGeom": {
+                    "bbox": null,
                     "coordinates": [
                       [
                         389187.29,
@@ -1250,5 +1251,238 @@
       "status": "COMPLETED"
     }
   ],
+  "geomfindings": {
+    "features": [
+      {
+        "bbox": null,
+        "geometry": {
+          "bbox": null,
+          "coordinates": [
+            [
+              7.373668092967802,
+              52.33370974642528
+            ],
+            [
+              7.373740630960223,
+              52.3337072834449
+            ],
+            [
+              7.374060422654426,
+              52.33369646339027
+            ],
+            [
+              7.374268529524706,
+              52.33368936534038
+            ],
+            [
+              7.374372603139325,
+              52.33368593801491
+            ],
+            [
+              7.37484275647524,
+              52.33367045484784
+            ],
+            [
+              7.375032114098382,
+              52.33366432032051
+            ],
+            [
+              7.375525875758316,
+              52.333647500474676
+            ],
+            [
+              7.375622882227448,
+              52.333644194970056
+            ],
+            [
+              7.375653363897409,
+              52.33364315735862
+            ],
+            [
+              7.375696066826445,
+              52.333641703716076
+            ],
+            [
+              7.37585262040787,
+              52.33363636657995
+            ],
+            [
+              7.375894131731375,
+              52.33363466252641
+            ],
+            [
+              7.3761971480516255,
+              52.33362218540471
+            ],
+            [
+              7.376555065348309,
+              52.33358825340854
+            ],
+            [
+              7.376788479046236,
+              52.33355579243725
+            ],
+            [
+              7.3772159550394045,
+              52.33348567098335
+            ],
+            [
+              7.377264313592806,
+              52.333477739592674
+            ],
+            [
+              7.377338034845487,
+              52.333460176188595
+            ],
+            [
+              7.377423230495644,
+              52.33343989312186
+            ],
+            [
+              7.377447468513561,
+              52.33343412093081
+            ],
+            [
+              7.3774533614179765,
+              52.333432718302774
+            ],
+            [
+              7.377513948932358,
+              52.333418292192746
+            ],
+            [
+              7.37754024479394,
+              52.33341203574116
+            ],
+            [
+              7.3775630909820915,
+              52.333406595072084
+            ],
+            [
+              7.37732986037478,
+              52.33330969543118
+            ],
+            [
+              7.377110068687087,
+              52.33321837775881
+            ],
+            [
+              7.377032473686757,
+              52.33318621054016
+            ],
+            [
+              7.377095712470633,
+              52.33287926024749
+            ],
+            [
+              7.377112282053984,
+              52.332798700540955
+            ],
+            [
+              7.3771266853664,
+              52.332728801794815
+            ],
+            [
+              7.377159304723172,
+              52.332570246754656
+            ],
+            [
+              7.376854404840756,
+              52.332547995677096
+            ],
+            [
+              7.376778177752862,
+              52.33254243262653
+            ],
+            [
+              7.376397609674328,
+              52.332513797742436
+            ],
+            [
+              7.376193941152073,
+              52.33249965999457
+            ],
+            [
+              7.376179293458316,
+              52.3324992608228
+            ],
+            [
+              7.3759795292286245,
+              52.33249673926654
+            ],
+            [
+              7.375920848842603,
+              52.332495986417904
+            ],
+            [
+              7.37570612100142,
+              52.33249327664225
+            ],
+            [
+              7.375619976833131,
+              52.33249220892396
+            ],
+            [
+              7.37555681531653,
+              52.33248411185837
+            ],
+            [
+              7.375424663045128,
+              52.332467170322104
+            ],
+            [
+              7.375102830883236,
+              52.33242579807323
+            ],
+            [
+              7.375058042725434,
+              52.332420029900085
+            ],
+            [
+              7.3749468907495155,
+              52.33240570606995
+            ],
+            [
+              7.374921794186274,
+              52.33240247457392
+            ],
+            [
+              7.3747340037440186,
+              52.332378419482254
+            ],
+            [
+              7.374617501709999,
+              52.33236350921986
+            ],
+            [
+              7.374602909106646,
+              52.33236160905276
+            ],
+            [
+              7.374538107172301,
+              52.33235329046701
+            ],
+            [
+              7.373668092967802,
+              52.33370974642528
+            ]
+          ],
+          "type": "LineString"
+        },
+        "id": null,
+        "type": "Feature",
+        "properties": {
+          "level": "ERROR",
+          "gmlIds": "GML_3a07cab4-ba41-43cf-a2b2-098a099ab0c3",
+          "planName": "Nr. 108 Holstener Weg",
+          "id": "2.2.2.1",
+          "title": "Verwendung geometrisch korrekter Flächen",
+          "message": "äußerer Ring verwendet falsche Laufrichtung (CW)."
+        }
+      }
+    ],
+    "bbox": null,
+    "type": "FeatureCollection"
+  },
   "status": "COMPLETED"
 }
\ No newline at end of file
diff --git a/xplan-validator/xplan-validator-storage/src/main/java/de/latlon/xplanbox/validator/storage/ValidationExecutionStorage.java b/xplan-validator/xplan-validator-storage/src/main/java/de/latlon/xplanbox/validator/storage/ValidationExecutionStorage.java
index b9d1ea384413c85ddd823db9b684e8b9b0b8d8c7..072f5a4275a3a7ff9aa55949b93641a634e84d14 100644
--- a/xplan-validator/xplan-validator-storage/src/main/java/de/latlon/xplanbox/validator/storage/ValidationExecutionStorage.java
+++ b/xplan-validator/xplan-validator-storage/src/main/java/de/latlon/xplanbox/validator/storage/ValidationExecutionStorage.java
@@ -48,7 +48,7 @@ public abstract class ValidationExecutionStorage {
 
 	public enum ReportType {
 
-		JSON(".json"), PDF(".pdf"), ZIP(".zip");
+		JSON(".json"), PDF(".pdf"), GEOJSON(".geojson"), ZIP(".zip");
 
 		private final String fileExtension;
 
diff --git a/xplan-validator/xplan-validator-web/src/main/java/de/latlon/xplan/validator/web/server/service/ValidatorReportProvider.java b/xplan-validator/xplan-validator-web/src/main/java/de/latlon/xplan/validator/web/server/service/ValidatorReportProvider.java
index 27159e21ab190f0b85aa4f86374f61a81057e50b..1405f42421b9890f74b963cebe2e52c31d5f6d95 100644
--- a/xplan-validator/xplan-validator-web/src/main/java/de/latlon/xplan/validator/web/server/service/ValidatorReportProvider.java
+++ b/xplan-validator/xplan-validator-web/src/main/java/de/latlon/xplan/validator/web/server/service/ValidatorReportProvider.java
@@ -22,7 +22,7 @@ package de.latlon.xplan.validator.web.server.service;
 
 import de.latlon.xplanbox.core.gwt.commons.server.service.ReportProvider;
 import de.latlon.xplan.validator.report.ReportWriter;
-import de.latlon.xplan.validator.web.shared.ArtifactType;
+import de.latlon.xplan.validator.web.shared.ReportFormatType;
 import org.springframework.beans.factory.annotation.Autowired;
 
 import jakarta.servlet.http.HttpServletResponse;
@@ -60,7 +60,7 @@ public class ValidatorReportProvider implements ReportProvider {
 
 	@Override
 	public void writeZipReport(HttpServletResponse response, String planUuid, String validationName,
-			List<ArtifactType> artifacts) throws IOException {
+			List<ReportFormatType> artifacts) throws IOException {
 		Path planDirectory = planArchiveManager.createReportDirectory(planUuid);
 		reportWriter.writeZipWithArtifacts(response.getOutputStream(), validationName, artifacts, planDirectory);
 	}