-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from PDOK/resp_describefeaturertype
fix request Validation() interface
- Loading branch information
Showing
14 changed files
with
118 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
*.dll | ||
*.so | ||
*.dylib | ||
*.prof | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
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
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,47 @@ | ||
package response | ||
|
||
import "encoding/xml" | ||
|
||
type Schema struct { | ||
XMLName xml.Name `xml:"schema"` | ||
Text string `xml:",chardata"` | ||
Xsd string `xml:"xsd,attr"` | ||
Digitaaltopografischbestand string `xml:"digitaaltopografischbestand,attr"` | ||
Gml string `xml:"gml,attr"` | ||
Wfs string `xml:"wfs,attr"` | ||
ElementFormDefault string `xml:"elementFormDefault,attr"` | ||
TargetNamespace string `xml:"targetNamespace,attr"` | ||
Import struct { | ||
Text string `xml:",chardata"` | ||
Namespace string `xml:"namespace,attr"` | ||
SchemaLocation string `xml:"schemaLocation,attr"` | ||
} `xml:"import"` | ||
ComplexType []struct { | ||
Text string `xml:",chardata"` | ||
Name string `xml:"name,attr"` | ||
ComplexContent struct { | ||
Text string `xml:",chardata"` | ||
Extension struct { | ||
Text string `xml:",chardata"` | ||
Base string `xml:"base,attr"` | ||
Sequence struct { | ||
Text string `xml:",chardata"` | ||
Element []struct { | ||
Text string `xml:",chardata"` | ||
MaxOccurs string `xml:"maxOccurs,attr"` | ||
MinOccurs string `xml:"minOccurs,attr"` | ||
Name string `xml:"name,attr"` | ||
Nillable string `xml:"nillable,attr"` | ||
Type string `xml:"type,attr"` | ||
} `xml:"element"` | ||
} `xml:"sequence"` | ||
} `xml:"extension"` | ||
} `xml:"complexContent"` | ||
} `xml:"complexType"` | ||
Element []struct { | ||
Text string `xml:",chardata"` | ||
Name string `xml:"name,attr"` | ||
SubstitutionGroup string `xml:"substitutionGroup,attr"` | ||
Type string `xml:"type,attr"` | ||
} `xml:"element"` | ||
} |
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