diff --git a/xplan-cli/xplan-cli-tools/pom.xml b/xplan-cli/xplan-cli-tools/pom.xml index 5f659b5da3e90022c7956158d9b0e2f761a61f84..b172df90a3c795846088c7490222fcceb023f87e 100644 --- a/xplan-cli/xplan-cli-tools/pom.xml +++ b/xplan-cli/xplan-cli-tools/pom.xml @@ -236,8 +236,14 @@ </dependency> <!-- Test --> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> diff --git a/xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/MainCommandTest.java b/xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/MainCommandTest.java new file mode 100644 index 0000000000000000000000000000000000000000..93843673651657cf11f588c953beb10410e27bf5 --- /dev/null +++ b/xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/MainCommandTest.java @@ -0,0 +1,24 @@ +package de.latlon.xplanbox.cli; + +import de.latlon.xplanbox.cli.main.MainCommand; +import org.junit.jupiter.api.Test; +import picocli.CommandLine; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a> + */ + +public class MainCommandTest { + + @Test + public void test_xbp_help() { + MainCommand app = new MainCommand(); + CommandLine cmd = new CommandLine(app); + + int exitCode = cmd.execute("help"); + assertEquals(0, exitCode); + } + +} diff --git a/xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/validate/ValidateFileSubcommandTest.java b/xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/validate/ValidateFileSubcommandTest.java new file mode 100644 index 0000000000000000000000000000000000000000..dbbbc9dd978727374f986f3335e38b17a44063e6 --- /dev/null +++ b/xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/validate/ValidateFileSubcommandTest.java @@ -0,0 +1,49 @@ +package de.latlon.xplanbox.cli.validate; + +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.io.TempDir; +import picocli.CommandLine; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author <a href="mailto:goltz@lat-lon.de">Lyn Goltz </a> + */ +public class ValidateFileSubcommandTest { + + @TempDir + private static Path tempDir; + + private static Path testPlan; + + @BeforeAll + public static void copyTestplan() throws IOException { + String testPlanName = "BPlan005_6-0.zip"; + testPlan = tempDir.resolve(testPlanName); + Files.copy(ValidateFileSubcommandTest.class.getResourceAsStream(testPlanName), testPlan); + } + + @Test + public void test_validate_help() { + ValidateFileSubcommand app = new ValidateFileSubcommand(); + CommandLine cmd = new CommandLine(app); + + int exitCode = cmd.execute("help"); + assertEquals(0, exitCode); + } + + @Test + public void test_validate_file() { + ValidateFileSubcommand app = new ValidateFileSubcommand(); + CommandLine cmd = new CommandLine(app); + + int exitCode = cmd.execute("-f=" + testPlan); + assertEquals(0, exitCode); + } + +} diff --git a/xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/validate/config/XPlanValidatorCliSpringConfigTest.java b/xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/validate/config/ValidateFileContextTest.java similarity index 80% rename from xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/validate/config/XPlanValidatorCliSpringConfigTest.java rename to xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/validate/config/ValidateFileContextTest.java index 07c854621c0a59a3db6c7bd2adfbf3a2bc9bc3a5..b3551feeeb42d664300792a16eb2fbc9e599b468 100644 --- a/xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/validate/config/XPlanValidatorCliSpringConfigTest.java +++ b/xplan-cli/xplan-cli-tools/src/test/java/de/latlon/xplanbox/cli/validate/config/ValidateFileContextTest.java @@ -20,8 +20,8 @@ */ package de.latlon.xplanbox.cli.validate.config; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.Test; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import java.io.File; @@ -35,11 +35,11 @@ import java.net.URL; * @version $Revision: $, $Date: $ */ -public class XPlanValidatorCliSpringConfigTest { +public class ValidateFileContextTest { - @Before - public void createMissingDirectory() throws URISyntaxException { - URL path = XPlanValidatorCliSpringConfigTest.class.getProtectionDomain().getCodeSource().getLocation(); + @BeforeAll + public static void createMissingDirectory() throws URISyntaxException { + URL path = ValidateFileContextTest.class.getProtectionDomain().getCodeSource().getLocation(); File parentFile = new File(path.toURI()).getParentFile(); createSubDirectories(parentFile); } @@ -52,19 +52,19 @@ public class XPlanValidatorCliSpringConfigTest { context.close(); } - private void createSubDirectories(File parent) { + private static void createSubDirectories(File parent) { File etc = createEtcDirectory(parent); createRulesDirectory(etc); } - private File createEtcDirectory(File parent) { + private static File createEtcDirectory(File parent) { File newEtc = new File(parent, "etc"); if (!newEtc.exists()) newEtc.mkdir(); return newEtc; } - private void createRulesDirectory(File etc) { + private static void createRulesDirectory(File etc) { File rules = new File(etc, "rules"); if (!rules.exists()) { rules.mkdir(); diff --git a/xplan-cli/xplan-cli-tools/src/test/resources/de/latlon/xplanbox/cli/validate/BP2070.zip b/xplan-cli/xplan-cli-tools/src/test/resources/de/latlon/xplanbox/cli/validate/BP2070.zip deleted file mode 100644 index 82a65a05895e235b1db4bb7583736e0cc033b977..0000000000000000000000000000000000000000 Binary files a/xplan-cli/xplan-cli-tools/src/test/resources/de/latlon/xplanbox/cli/validate/BP2070.zip and /dev/null differ diff --git a/xplan-cli/xplan-cli-tools/src/test/resources/de/latlon/xplanbox/cli/validate/BPlan005_6-0.zip b/xplan-cli/xplan-cli-tools/src/test/resources/de/latlon/xplanbox/cli/validate/BPlan005_6-0.zip new file mode 100644 index 0000000000000000000000000000000000000000..9525972b8d224439d2836b5ec4066fa7922daa0e Binary files /dev/null and b/xplan-cli/xplan-cli-tools/src/test/resources/de/latlon/xplanbox/cli/validate/BPlan005_6-0.zip differ diff --git a/xplan-cli/xplan-cli-tools/src/test/resources/de/latlon/xplanbox/cli/validate/errorMsg.txt b/xplan-cli/xplan-cli-tools/src/test/resources/de/latlon/xplanbox/cli/validate/errorMsg.txt deleted file mode 100644 index 1f869806bf393b23e08925f44c5953e34e779b2b..0000000000000000000000000000000000000000 --- a/xplan-cli/xplan-cli-tools/src/test/resources/de/latlon/xplanbox/cli/validate/errorMsg.txt +++ /dev/null @@ -1,244 +0,0 @@ -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 23, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 51, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 74, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 97, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 120, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 149, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 173, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 196, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 219, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 242, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 265, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 288, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 311, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 334, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 357, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 380, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 403, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 426, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 449, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 472, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 495, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 518, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 541, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 569, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 592, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 615, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 638, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 661, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 684, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 707, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 756, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 779, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 802, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 825, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 849, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 872, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 895, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 920, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 944, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 992, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1020, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1043, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1066, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1089, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1112, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1135, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1178, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1201, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1229, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1252, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1275, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1298, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 1326, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:inhaltFPlan'. One of '{"http://www.xplanung.de/xplangml/4/1":nachrichtlich, "http://www.xplanung.de/xplangml/4/1":praesentationsobjekt, "http://www.xplanung.de/xplangml/4/1":rasterBasis, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfXP_Bereich, "http://www.xplanung.de/xplangml/4/1":versionBauNVO, "http://www.xplanung.de/xplangml/4/1":versionBauNVOText, "http://www.xplanung.de/xplangml/4/1":versionBauGB, "http://www.xplanung.de/xplangml/4/1":versionBauGBText, "http://www.xplanung.de/xplangml/4/1":gehoertZuPlan}' is expected. (line: 1569, column: 87) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 7827, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8077, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8100, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8123, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8146, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8179, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8202, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8225, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8248, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8271, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8294, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8317, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8350, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8373, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8726, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8749, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8772, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8795, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8818, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8841, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8864, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8887, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8910, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8933, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8956, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 8984, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9007, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9030, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9053, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9076, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9099, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9122, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9145, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9168, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9191, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9214, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9237, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9260, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9283, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9316, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 9339, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11321, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11344, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11367, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11391, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11414, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11437, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11460, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11483, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11507, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11589, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11613, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11637, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11661, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11685, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11709, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11733, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11757, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11780, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11804, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11828, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11852, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 11876, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12045, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12069, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12093, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12117, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12141, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12165, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12189, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12213, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12237, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12261, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12285, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12309, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12333, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12357, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12381, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12405, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12429, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12453, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12477, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12501, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12525, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12549, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12573, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12597, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12621, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12645, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12669, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12693, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12717, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12741, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12765, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12789, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12813, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12837, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12861, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12885, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12909, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12933, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12957, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 12981, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13005, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13029, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13053, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13077, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13101, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13125, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13149, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13173, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13197, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13221, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13245, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13269, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13293, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13317, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13341, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13365, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13389, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13418, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13442, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13466, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13490, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13514, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13538, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13567, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13591, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13615, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13639, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13673, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13697, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13721, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13745, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13769, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13793, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13817, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13846, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13870, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13894, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13918, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13947, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13971, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 13995, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14019, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14043, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14067, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14091, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14115, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14139, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14163, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14187, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14211, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14235, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14259, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14283, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14307, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14331, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14355, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14379, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14408, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14432, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14456, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14480, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14504, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14528, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14552, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14576, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14600, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14624, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14648, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14672, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14696, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14720, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14744, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14768, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14792, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14816, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14840, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14864, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14893, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14917, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14941, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14965, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 14989, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 15013, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 15037, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 15061, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":position}' is expected. (line: 15085, column: 30) -Error: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xplan:flaechenschluss'. One of '{"http://www.xplanung.de/xplangml/4/1":gehoertZuFP_Bereich, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchFlaeche, "http://www.xplanung.de/xplangml/4/1":wirdAusgeglichenDurchSPE, "http://www.xplanung.de/xplangml/4/1":_GenericApplicationPropertyOfFP_Objekt, "http://www.xplanung.de/xplangml/4/1":posi \ No newline at end of file