-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change health-allowance service to municipal-allowance service (#29)
* Change health-allowance service to municipal-allowance service * update description * Rename health allowance services to municipal allowance service * Rename remaining elements/types and minor type description * Review comments
- Loading branch information
1 parent
f56ed1a
commit a5cda90
Showing
8 changed files
with
119 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<schema xmlns="http://www.w3.org/2001/XMLSchema" | ||
xmlns:ctr="http://lmst.dk/ctr/xml.schema/2022/12/01" | ||
targetNamespace="http://lmst.dk/ctr/xml.schema/2022/12/01" | ||
elementFormDefault="qualified"> | ||
|
||
<include schemaLocation="Source.xsd"/> | ||
|
||
<element name="InvoicingMunicipalityNumber" type="ctr:InvoicingMunicipalityNumberType"> | ||
<annotation> | ||
<documentation xml:lang="en-GB">Element for specifying an invoicing number, for instance, EAN location number.</documentation> | ||
<documentation xml:lang="da-DK">Element for at specificere et fakturanummer f.eks. EAN-lokationsnummer.</documentation> | ||
</annotation> | ||
</element> | ||
<complexType name="InvoicingMunicipalityNumberType"> | ||
<simpleContent> | ||
<extension base="ctr:InvoicingMunicipalityNumberValueType"> | ||
<attribute name="source" type="ctr:InvoicingMunicipalityNumberSourceType" use="required"/> | ||
</extension> | ||
</simpleContent> | ||
</complexType> | ||
<simpleType name="InvoicingMunicipalityNumberValueType"> | ||
<restriction base="string"> | ||
<minLength value="1"/> | ||
<maxLength value="50"/> | ||
</restriction> | ||
</simpleType> | ||
|
||
<simpleType name="InvoicingMunicipalityNumberSourceType"> | ||
<union memberTypes="ctr:InvoicingMunicipalityNumberPredefinedSourceType ctr:UndefinedSourceType"/> | ||
</simpleType> | ||
|
||
<simpleType name="InvoicingMunicipalityNumberPredefinedSourceType"> | ||
<restriction base="ctr:UndefinedSourceType"> | ||
<enumeration value="EAN-Lokationsnummer"/> | ||
</restriction> | ||
</simpleType> | ||
</schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<schema xmlns="http://www.w3.org/2001/XMLSchema" | ||
xmlns:ctr="http://lmst.dk/ctr/xml.schema/2022/12/01" | ||
targetNamespace="http://lmst.dk/ctr/xml.schema/2022/12/01" | ||
elementFormDefault="qualified"> | ||
|
||
<element name="MunicipalAllowanceType" type="ctr:MunicipalAllowanceTypeType"> | ||
<annotation> | ||
<documentation xml:lang="en-GB">Municipal Allowance type</documentation> | ||
<documentation xml:lang="da-DK">Kommunalttillægstype</documentation> | ||
</annotation> | ||
</element> | ||
|
||
<simpleType name="MunicipalAllowanceTypeType"> | ||
<union memberTypes="ctr:PredefinedMunicipalAllowanceTypeType ctr:UndefinedMunicipalAllowanceTypeType"/> | ||
</simpleType> | ||
<simpleType name="PredefinedMunicipalAllowanceTypeType"> | ||
<restriction base="ctr:UndefinedMunicipalAllowanceTypeType"> | ||
<enumeration value="Helbredstillæg"> | ||
<annotation> | ||
<documentation xml:lang="en-GB">Health allowance</documentation> | ||
<documentation xml:lang="da-DK">Helbredstillæg</documentation> | ||
</annotation> | ||
</enumeration> | ||
<enumeration value="Kontanthjælpsmodtager"> | ||
<annotation> | ||
<documentation xml:lang="en-GB">Municipal allowance for a welfare recipient</documentation> | ||
<documentation xml:lang="en-GB">Kommunalt tillæg til kontanthjælpsmodtager</documentation> | ||
</annotation> | ||
</enumeration> | ||
<enumeration value="Barn af Kontanthjælpsmodtager"> | ||
<annotation> | ||
<documentation xml:lang="en-GB">Municipal allowance for a child of a welfare recipient</documentation> | ||
<documentation xml:lang="en-GB">Kommunalt tillæg til barn af kontanthjælpsmodtager</documentation> | ||
</annotation> | ||
</enumeration> | ||
</restriction> | ||
</simpleType> | ||
<simpleType name="UndefinedMunicipalAllowanceTypeType"> | ||
<restriction base="string"> | ||
<minLength value="1"/> | ||
<maxLength value="100"/> | ||
</restriction> | ||
</simpleType> | ||
</schema> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters