XML Schema "queryCustomView.xsd"
Target Namespace:
http://labkey.org/data/xml/queryCustomView
Defined Components:
1 global element, 13 local elements, 15 complexTypes, 3 simpleTypes, 1 element group
Default Namespace-Qualified Form:
Local Elements: qualified; Local Attributes: unqualified
Schema Location:
C:\dev\labkey\labkeyHome\server\modules\platform\api\schemas\queryCustomView.xsd, see XML source
Imported by Schemas (2):
externalSchema.xsd [src], tableInfo.xsd [src]
Annotation
File-based Query Custom View Definition
XML Source
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://labkey.org/data/xml/queryCustomView" xmlns:cv="http://labkey.org/data/xml/queryCustomView" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:annotation>
<xsd:documentation xml:lang="en">File-based Query Custom View Definition</xsd:documentation>
</xsd:annotation>
<xsd:element name="customView" type="cv:customViewType"/>
<xsd:complexType name="customViewType">
<xsd:all>
<xsd:element minOccurs="0" name="columns" type="cv:columnsType"/>
<xsd:element minOccurs="0" name="filters" type="cv:filtersType"/>
<xsd:element minOccurs="0" name="sorts" type="cv:sortsType"/>
<xsd:element minOccurs="0" name="aggregates" type="cv:aggregatesType"/>
<!--deprecated, use analyticsProviders-->
<xsd:element minOccurs="0" name="analyticsProviders" type="cv:analyticsProvidersType"/>
</xsd:all>
<xsd:attribute name="name" type="xsd:string"/>
<xsd:attribute name="schema" type="xsd:string"/>
<xsd:attribute name="query" type="xsd:string"/>
<xsd:attribute default="0" name="hidden" type="xsd:boolean"/>
<xsd:attribute default="0" name="canInherit" type="xsd:boolean"/>
<xsd:attribute default="0" name="canOverride" type="xsd:boolean"/>
<xsd:attribute name="customIconUrl" type="xsd:string"/>
<xsd:attribute name="containerFilter" type="cv:containerFilterType" use="optional"/>
<xsd:attribute name="label" type="xsd:string" use="optional"/>
<xsd:attribute default="0" name="showInDataViews" type="xsd:boolean"/>
<xsd:attribute name="category" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="columnsType">
<xsd:sequence>
<xsd:element maxOccurs="unbounded" minOccurs="1" name="column" type="cv:columnType"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="columnType">
<xsd:sequence>
<xsd:element minOccurs="0" name="properties" type="cv:propertiesType"/>
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string"/>
</xsd:complexType>
<xsd:complexType name="propertiesType">
<xsd:sequence>
<xsd:element maxOccurs="unbounded" minOccurs="1" name="property" type="cv:propertyType"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="propertyType">
<xsd:attribute name="name" type="cv:propertyName"/>
<xsd:attribute name="value" type="xsd:string"/>
</xsd:complexType>
<xsd:simpleType name="propertyName">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="columnTitle"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:complexType name="filtersType">
<xsd:group maxOccurs="unbounded" minOccurs="0" ref="cv:filtersGroup"/>
</xsd:complexType>
<xsd:group name="filtersGroup">
<xsd:choice>
<xsd:element maxOccurs="1" minOccurs="1" name="filter" type="cv:filterType"/>
<xsd:element maxOccurs="1" minOccurs="1" name="where" type="xsd:string"/>
</xsd:choice>
</xsd:group>
<xsd:complexType name="namedFiltersType">
<xsd:complexContent>
<xsd:extension base="cv:filtersType">
<xsd:attribute name="name" type="xsd:ID" use="required"/>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="localOrRefFiltersType">
<xsd:group maxOccurs="unbounded" minOccurs="0" ref="cv:filtersGroup"/>
<xsd:attribute name="ref" type="xsd:IDREF"/>
</xsd:complexType>
<xsd:complexType name="filterType">
<xsd:attribute name="column" type="xsd:string"/>
<xsd:attribute name="operator" type="cv:operatorType"/>
<xsd:attribute name="value" type="xsd:string"/>
</xsd:complexType>
<xsd:simpleType name="operatorType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="eq"/>
<xsd:enumeration value="dateeq"/>
<xsd:enumeration value="dateneq"/>
<xsd:enumeration value="datelt"/>
<xsd:enumeration value="datelte"/>
<xsd:enumeration value="dategt"/>
<xsd:enumeration value="dategte"/>
<xsd:enumeration value="neqornull"/>
<xsd:enumeration value="neq"/>
<xsd:enumeration value="isblank"/>
<xsd:enumeration value="isnonblank"/>
<xsd:enumeration value="gt"/>
<xsd:enumeration value="lt"/>
<xsd:enumeration value="gte"/>
<xsd:enumeration value="lte"/>
<xsd:enumeration value="between"/>
<xsd:enumeration value="notbetween"/>
<xsd:enumeration value="contains"/>
<xsd:enumeration value="doesnotcontain"/>
<xsd:enumeration value="doesnotstartwith"/>
<xsd:enumeration value="startswith"/>
<xsd:enumeration value="in"/>
<xsd:enumeration value="hasmvvalue"/>
<xsd:enumeration value="nomvvalue"/>
<xsd:enumeration value="inornull"/>
<xsd:enumeration value="notin"/>
<xsd:enumeration value="notinornull"/>
<xsd:enumeration value="containsoneof"/>
<xsd:enumeration value="containsnoneof"/>
<xsd:enumeration value="memberof"/>
<xsd:enumeration value="exp:childof"/>
<xsd:enumeration value="exp:lineageof"/>
<xsd:enumeration value="exp:parentof"/>
<xsd:enumeration value="concept:subclassof"/>
<xsd:enumeration value="concept:insubtree"/>
<xsd:enumeration value="concept:notinsubtree"/>
<xsd:enumeration value="q"/>
<xsd:enumeration value="where"/>
<xsd:enumeration value="inexpancestorsof"/>
<xsd:enumeration value="inexpdescendantsof"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:complexType name="sortsType">
<xsd:sequence>
<xsd:element maxOccurs="unbounded" minOccurs="1" name="sort" type="cv:sortType"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="sortType">
<xsd:attribute name="column" type="xsd:string"/>
<xsd:attribute default="0" name="descending" type="xsd:boolean"/>
</xsd:complexType>
<xsd:complexType name="aggregatesType">
<xsd:sequence>
<xsd:element maxOccurs="unbounded" minOccurs="1" name="aggregate" type="cv:aggregateType"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="aggregateType">
<xsd:attribute name="column" type="xsd:string"/>
<xsd:attribute name="type" type="xsd:string"/>
<xsd:attribute name="label" type="xsd:string" use="optional"/>
</xsd:complexType>
<xsd:complexType name="analyticsProvidersType">
<xsd:sequence>
<xsd:element maxOccurs="unbounded" minOccurs="1" name="analyticsProvider" type="cv:analyticsProviderType"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="analyticsProviderType">
<xsd:attribute name="column" type="xsd:string"/>
<xsd:attribute name="type" type="xsd:string"/>
<xsd:attribute name="label" type="xsd:string" use="optional"/>
</xsd:complexType>
<xsd:simpleType name="containerFilterType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Current">
<xsd:annotation>
<xsd:documentation>The current container.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="CurrentWithUser">
<xsd:annotation>
<xsd:documentation>Current folder with permissions applied to user.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="CurrentAndFirstChildren">
<xsd:annotation>
<xsd:documentation>
Current folder and first children that are not workbooks.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="CurrentAndSubfolders">
<xsd:annotation>
<xsd:documentation>
The current container and any folders it contains.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="CurrentAndSiblings">
<xsd:annotation>
<xsd:documentation>Current folder and siblings.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="CurrentOrParentAndWorkbooks">
<xsd:annotation>
<xsd:documentation>
Current folder and/or parent if the current folder is a workbook, plus all workbooks in this series.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="CurrentPlusProject">
<xsd:annotation>
<xsd:documentation>
The current container and the project folder container it.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="CurrentAndParents">
<xsd:annotation>
<xsd:documentation>
The current container and all of its parent containers.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="CurrentPlusProjectAndShared">
<xsd:annotation>
<xsd:documentation>
The current container, its project folder and all shared folders.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="AssayLocation">
<xsd:annotation>
<xsd:documentation>Current folder, project, and Shared project.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="WorkbookAndParent">
<xsd:annotation>
<xsd:documentation>Current workbook and parent.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="StudyAndSourceStudy">
<xsd:annotation>
<xsd:documentation>Current study and its source/parent study.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="AllFolders">
<xsd:annotation>
<xsd:documentation>All folders to which the user has permission.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>

This XML schema documentation has been generated with DocFlex/XML RE 1.7.2 using DocFlex/XML XSDDoc 2.1.0 template set.
DocFlex/XML RE is a reduced edition of DocFlex/XML, which is a tool for programming and running highly sophisticated documentation and reports generators by the data obtained from any kind of XML files. The actual doc-generators are implemented in the form of special templates that are designed visually using a high quality Template Designer GUI basing on the XML schema (or DTD) files describing the data source XML.
DocFlex/XML XSDDoc is a commercial template application of DocFlex/XML that implements a high-end XML Schema documentation generator with simultaneous support of framed multi-file HTML, single-file HTML and RTF output formats. (More formats are planned in the future).
A commercial license for "DocFlex/XML XSDDoc" will allow you:
  • To configure the generated documentation so much as you want. Thanks to our template technology, it was possible to support more than 300 template parameters (working the same as "options" of an ordinary doc-gen), which will give you an unprecedented control over the generated content!
  • To use certain features disabled in the free mode (such as the full documenting of substitution groups).
  • To enable/disable documenting of the initial, imported, included and redefined XML schemas selectively.
  • To document local element components both globally and locally (similar to attributes).
  • To enable/disable reproducing of namespace prefixes.
  • To format your annotations with XHTML tags and reproduce that formatting both in HTML and RTF output.
  • To insert images in your annotations using XHTML <img> tags (supported both in HTML and RTF output).
  • To use PlainDoc.tpl main template to generate all the XML schema documentation in the form of a single HTML file.
  • To use the same template to generate the incredible quality RTF documentation.
  • To document only selected XML schema components specified by name.
  • To remove this very advertisement text
Once having only such a license, you will be able to run the fully-featured XML schema documentation generator both with DocFlex/XML SDK and with DocFlex/XML RE, which is a reduced free edition containing only the template interpretor / output generator. No other licenses will be required!
But this is not all. In addition to it, a commercial license for DocFlex/XML SDK will allow you to modify the XSDDoc templates themselves as much as you want. You will be able to achieve whatever was impossible to do with the template parameters only. And, of course, you could develop any template applications by your own!
Please note: By purchasing a license for this software, you not only acquire a useful tool, you will also make an important investment in its future development, the result of which you could enjoy later by yourself. Every single your purchase matters and makes a difference for us!
To buy a license, please follow this link: http://www.filigris.com/shop/