blob: a7b0af9141affd5e31c5c1392feb47bcb0e4261c [file] [log] [blame]
<?xml version="1.0"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for additional
information regarding copyright ownership. The ASF licenses this file to
you under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<xs:simpleType name="indexType">
<xs:restriction base="xs:string">
<xs:enumeration value="yes" />
<xs:enumeration value="no" />
<xs:enumeration value="no_norms" />
<xs:enumeration value="no_tf" />
<xs:enumeration value="no_norms_tf" />
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="termVectorType">
<xs:restriction base="xs:string">
<xs:enumeration value="no" />
<xs:enumeration value="positions" />
<xs:enumeration value="offsets" />
<xs:enumeration value="positions_offsets" />
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="storedType">
<xs:restriction base="xs:string">
<xs:enumeration value="yes" />
<xs:enumeration value="no" />
<xs:enumeration value="compress" />
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="tokenizerType">
<xs:restriction base="xs:string">
<xs:enumeration value="cas" />
<xs:enumeration value="whitespace" />
<xs:enumeration value="standard" />
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="positionType">
<xs:restriction base="xs:string">
<xs:enumeration value="first" />
<xs:enumeration value="last" />
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="generateCoverFieldNameType">
<xs:restriction base="xs:string">
<xs:enumeration value="append" />
<xs:enumeration value="prepend" />
<xs:enumeration value="replace" />
</xs:restriction>
</xs:simpleType>
<xs:element name="filters">
<xs:complexType>
<xs:sequence>
<xs:element ref="filter" minOccurs="1" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="filter">
<xs:complexType>
<xs:attribute name="className" type="xs:string" />
<xs:attribute name="factoryClassName" type="xs:string" />
<xs:attribute name="reuseFactory" type="xs:boolean" />
<xs:attribute name="name" type="xs:string" />
<xs:anyAttribute processContents="lax" />
</xs:complexType>
</xs:element>
<xs:element name="features">
<xs:complexType>
<xs:sequence>
<xs:element ref="feature" minOccurs="1" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="feature">
<xs:complexType>
<xs:attribute name="name" type="xs:string" />
<xs:attribute name="numberFormat" type="xs:string" />
</xs:complexType>
</xs:element>
<xs:element name="annotations">
<xs:complexType>
<xs:sequence>
<xs:element ref="annotation" minOccurs="1" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="annotation">
<xs:complexType>
<xs:sequence>
<xs:element ref="filters" minOccurs="0" maxOccurs="1" />
<xs:element ref="features" minOccurs="0" maxOccurs="1" />
</xs:sequence>
<xs:attribute name="type" type="xs:string" />
<xs:attribute name="sofa" type="xs:string" />
<xs:attribute name="featurePath" type="xs:string" />
<xs:attribute name="tokenizer" type="tokenizerType" />
<xs:attribute name="featureValueDelimiterString" type="xs:string" />
</xs:complexType>
</xs:element>
<xs:element name="termSetCoverDefinition">
<xs:complexType>
<xs:attribute name="coverDefinitionFile" type="xs:string" />
<xs:attribute name="generateFieldNameMethod" type="generateCoverFieldNameType" />
<xs:attribute name="ignoreCaseOfSelectedTerms" type="xs:boolean" />
</xs:complexType>
</xs:element>
<xs:element name="field">
<xs:complexType>
<xs:sequence>
<xs:element ref="termSetCoverDefinition" minOccurs="0"
maxOccurs="1" />
<xs:element ref="filters" minOccurs="0" maxOccurs="1" />
<xs:element ref="annotations" minOccurs="1" maxOccurs="1" />
</xs:sequence>
<xs:attribute name="name" type="xs:string" />
<xs:attribute name="index" type="indexType" />
<xs:attribute name="termVector" type="termVectorType" />
<xs:attribute name="delimiter" type="xs:string" />
<xs:attribute name="stored" type="storedType" />
<xs:attribute name="merge" type="xs:boolean" />
<xs:attribute name="unique" type="xs:boolean" />
<xs:attribute name="coverFile" type="xs:string" />
</xs:complexType>
</xs:element>
<xs:element name="fields">
<xs:complexType>
<xs:sequence>
<xs:element ref="field" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>