12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- ################################################################################
- # HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
- #
- # Licensed 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.
- ################################################################################
- -->
- <!-- edited with XMLSPY v5 rel. 4 U (http://www.xmlspy.com) by Rajeev Moondhra (Seisint, Inc.) -->
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
- <xs:include schemaLocation="environment.xsd"/>
- <xs:element name="Directories">
- <xs:annotation>
- <xs:appinfo>
- <title>Common Directories</title>
- </xs:appinfo>
- </xs:annotation>
- <xs:complexType>
- <xs:sequence>
- <xs:element name="Category" maxOccurs="unbounded">
- <xs:annotation>
- <xs:appinfo>
- <title>Common</title>
- </xs:appinfo>
- </xs:annotation>
- <xs:complexType>
- <xs:sequence>
- <xs:element name="Override" minOccurs="0" maxOccurs="unbounded">
- <xs:annotation>
- <xs:appinfo>
- <viewType>list</viewType>
- <title>Overrides</title>
- </xs:appinfo>
- </xs:annotation>
- <xs:complexType>
- <xs:attribute name="component" type="commonDirsCompType" use="optional">
- <xs:annotation>
- <xs:appinfo>
- <title>Type</title>
- <colIndex>1</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="instance" type="commonDirsInstType" use="optional">
- <xs:annotation>
- <xs:appinfo>
- <title>Component</title>
- <colIndex>2</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="dir" type="xs:string" use="optional">
- <xs:annotation>
- <xs:appinfo>
- <title>Directory</title>
- <colIndex>3</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- <xs:attribute name="name" type="xs:string" use="required">
- <xs:annotation>
- <xs:appinfo>
- <title>Name</title>
- <viewType>readonly</viewType>
- <colIndex>1</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="dir" type="xs:string" use="required">
- <xs:annotation>
- <xs:appinfo>
- <title>Directory</title>
- <colIndex>2</colIndex>
- </xs:appinfo>
- </xs:annotation>
- </xs:attribute>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:schema>
|