blob: a5ea55528c5232bac6b363475e52599077e9bdae [file]
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Schema for cheat sheet content file.
Copyright 2004 IBM Corporation and others. All rights reserved.
This program and the accompanying materials are made available
under the terms of the Common Public License v1.0 which
accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html
</xsd:documentation>
</xsd:annotation>
<xsd:element name="cheatsheet">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="1" minOccurs="1" ref="intro"/>
<xsd:element maxOccurs="unbounded" minOccurs="1" ref="item"/>
</xsd:sequence>
<xsd:attribute name="title" type="xsd:string" use="required"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="intro">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="description" minOccurs="1" maxOccurs="1"/>
</xsd:sequence>
<xsd:attribute name="contextId" type="xsd:string" use="optional"/>
<xsd:attribute name="href" type="xsd:string" use="optional"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="description">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="string"/>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="item">
<xsd:complexType mixed="true">
<xsd:choice maxOccurs="1" minOccurs="1">
<xsd:sequence>
<xsd:element ref="description"/>
<xsd:choice minOccurs="0" maxOccurs="1">
<xsd:element ref="action"/>
<xsd:element ref="perform-when"/>
</xsd:choice>
</xsd:sequence>
<xsd:choice maxOccurs="unbounded" minOccurs="0">
<xsd:element ref="subitem"/>
<xsd:element ref="conditional-subitem"/>
<xsd:element ref="repeated-subitem"/>
</xsd:choice>
</xsd:choice>
<xsd:attribute name="title" type="xsd:string" use="required"/>
<xsd:attribute name="skip" type="xsd:boolean" use="optional" default="false"/>
<xsd:attribute name="contextId" type="xsd:string" use="optional"/>
<xsd:attribute name="href" type="xsd:string" use="optional"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="subitem">
<xsd:complexType>
<xsd:choice minOccurs="0" maxOccurs="1">
<xsd:element ref="action"/>
<xsd:element ref="perform-when"/>
</xsd:choice>
<xsd:attribute name="label" type="xsd:string" use="required"/>
<xsd:attribute name="kind" type="ActionKind" use="required"/>
<xsd:attribute name="skip" type="xsd:boolean" use="optional" default="false"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="conditional-subitem">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="subitem" minOccurs="1" maxOccurs="unbounded"/>
</xsd:choice>
<xsd:attribute name="condition" type="xsd:string" use="required"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="repeated-subitem">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="subitem" minOccurs="1" maxOccurs="1"/>
</xsd:choice>
<xsd:attribute name="values" type="xsd:string" use="required"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="action">
<xsd:complexType>
<xsd:attribute name="when" type="xsd:string" use="required"/>
<xsd:attribute name="confirm" type="xsd:boolean" use="optional" default="false"/>
<xsd:attribute name="class" type="xsd:string" use="optional"/>
<xsd:attribute name="pluginId" type="xsd:string" use="optional"/>
<xsd:attribute name="param1" type="xsd:string" use="optional"/>
<xsd:attribute name="param2" type="xsd:string" use="optional"/>
<xsd:attribute name="param3" type="xsd:string" use="optional"/>
<xsd:attribute name="param4" type="xsd:string" use="optional"/>
<xsd:attribute name="param5" type="xsd:string" use="optional"/>
<xsd:attribute name="param6" type="xsd:string" use="optional"/>
<xsd:attribute name="param7" type="xsd:string" use="optional"/>
<xsd:attribute name="param8" type="xsd:string" use="optional"/>
<xsd:attribute name="param9" type="xsd:string" use="optional"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="perform-when">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="action" minOccurs="1" maxOccurs="unbounded"/>
</xsd:choice>
<xsd:attribute name="condition" type="xsd:string" use="required"/>
</xsd:complexType>
</xsd:element>
</xsd:schema>