Home >
Court Integration Services >
CourtXML Schema >
Quick Tip: Set the Schema Location
When downloaded, or received via the RSS feed, schemas expect the following file structure:
- CourtXML Base Schema and Message Schemas located in the same folder.
- SimpleType schemas located in a subfolder (of the folder containing the Base and Message schemas) named SimpleTypes.
If you whant to keep these files in a different structure you need to make changes to the schema include and import statements that reference other schemas. For example:
<xs:include schemaLocation="CourtXML_3.xsd"/>
Will expect the schema CourtXML_3.xsd to be found in the same folder as the schema with the include statement.
<xs:include schemaLocation="c:\schemas\CourtXML_3.xsd"/>
Will expect the schema CourtXML_3.xsd to be found in the folder c:\schemas.
Note: the same applies to any other schemas that are included or imported, such as the SimpleType schemas.