-
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.
Add create/update of reimbursement grants (#28)
- Loading branch information
1 parent
48602e5
commit f56ed1a
Showing
6 changed files
with
161 additions
and
1 deletion.
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
22 changes: 22 additions & 0 deletions
22
src/schemas/2022/12/01/CreateReimbursementGrantRequest.xsd
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,22 @@ | ||
<?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="PersonIdentifier.xsd"/> | ||
<include schemaLocation="ReimbursementGrant.xsd"/> | ||
|
||
<element name="CreateReimbursementGrantRequest"> | ||
<annotation> | ||
<documentation xml:lang="en-GB">Element for creating a CTR reimbursement grant</documentation> | ||
<documentation xml:lang="da-DK">Element for at oprette en CTR bevilling</documentation> | ||
</annotation> | ||
<complexType> | ||
<sequence> | ||
<element name="PersonIdentifier" type="ctr:PersonIdentifierType"/> | ||
<element name="ReimbursementGrant" type="ctr:ReimbursementGrantType"/> | ||
</sequence> | ||
</complexType> | ||
</element> | ||
</schema> |
20 changes: 20 additions & 0 deletions
20
src/schemas/2022/12/01/CreateReimbursementGrantResponse.xsd
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,20 @@ | ||
<?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="PersonIdentifier.xsd"/> | ||
|
||
<element name="CreateReimbursementGrantResponse"> | ||
<annotation> | ||
<documentation xml:lang="en-GB">Outer container element for a response from creating a CTR reimbursement grant</documentation> | ||
<documentation xml:lang="da-DK">Ydre container-element for et svar ved oprettelse af en CTR bevilling</documentation> | ||
</annotation> | ||
<complexType> | ||
<sequence> | ||
<element name="PersonIdentifier" type="ctr:PersonIdentifierType"/> | ||
</sequence> | ||
</complexType> | ||
</element> | ||
</schema> |
22 changes: 22 additions & 0 deletions
22
src/schemas/2022/12/01/UpdateReimbursementGrantRequest.xsd
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,22 @@ | ||
<?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="PersonIdentifier.xsd"/> | ||
<include schemaLocation="ReimbursementGrant.xsd"/> | ||
|
||
<element name="UpdateReimbursementGrantRequest"> | ||
<annotation> | ||
<documentation xml:lang="en-GB">Element for updating a CTR reimbursement grant</documentation> | ||
<documentation xml:lang="da-DK">Element for at opdatere en CTR bevilling</documentation> | ||
</annotation> | ||
<complexType> | ||
<sequence> | ||
<element name="PersonIdentifier" type="ctr:PersonIdentifierType"/> | ||
<element name="ReimbursementGrant" type="ctr:ReimbursementGrantType"/> | ||
</sequence> | ||
</complexType> | ||
</element> | ||
</schema> |
20 changes: 20 additions & 0 deletions
20
src/schemas/2022/12/01/UpdateReimbursementGrantResponse.xsd
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,20 @@ | ||
<?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="PersonIdentifier.xsd"/> | ||
|
||
<element name="UpdateReimbursementGrantResponse"> | ||
<annotation> | ||
<documentation xml:lang="en-GB">Outer container element for a response from updating a CTR reimbursement grant</documentation> | ||
<documentation xml:lang="da-DK">Ydre container-element for et svar ved opdatering af en CTR bevilling</documentation> | ||
</annotation> | ||
<complexType> | ||
<sequence> | ||
<element name="PersonIdentifier" type="ctr:PersonIdentifierType"/> | ||
</sequence> | ||
</complexType> | ||
</element> | ||
</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