mirror of
https://github.com/Theodor-Springmann-Stiftung/KGPZ.git
synced 2025-10-29 00:55:31 +00:00
Entwurf 1 -- Beiträge fehlen
This commit is contained in:
20
XSD/common.xsd
Normal file
20
XSD/common.xsd
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0"?>
|
||||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||
targetNamespace="https://www.kgpz.de"
|
||||
xmlns="https://www.kgpz.de"
|
||||
xmlns:kgpz="https://www.kgpz.de"
|
||||
elementFormDefault="qualified">
|
||||
<xsd:simpleType name="NonEmptyString">
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:minLength value="1" />
|
||||
<xsd:pattern value=".*[^\s].*" />
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
|
||||
<xsd:simpleType name="Year">
|
||||
<xsd:restriction base="xsd:unsignedInt">
|
||||
<xsd:minInclusive value="0"/>
|
||||
<xsd:maxInclusive value="2024"/>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:schema>
|
||||
Reference in New Issue
Block a user