Microsoft.SystemCenter.ViewCriteriaSchema (SchemaType)

Element properties:

AccessibilityPublic
Commentschema for view criteria

Source Code:

<SchemaType ID="Microsoft.SystemCenter.ViewCriteriaSchema" Comment="schema for view criteria" Accessibility="Public">
<xsd:complexType name="TimeSpanCriteriaType">
<xsd:simpleContent>
<xsd:extension base="xsd:unsignedInt">
<xsd:attribute name="Unit" use="required">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Second"/>
<xsd:enumeration value="Minute"/>
<xsd:enumeration value="Hour"/>
<xsd:enumeration value="Day"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="TimeRangeCriteriaType">
<xsd:choice>
<xsd:element name="WithinLast" type="TimeSpanCriteriaType"/>
<xsd:element name="Range">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="After" type="xsd:dateTime" minOccurs="0"/>
<xsd:element name="Before" type="xsd:dateTime" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
<xsd:complexType name="DomainComputerCriteriaType">
<xsd:sequence>
<xsd:element name="Domain" type="xsd:string" minOccurs="0"/>
<xsd:element name="Computer" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SLECriteriaType">
<xsd:annotation>
<xsd:documentation>a single Service Level Exception criteria</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Duration" type="TimeSpanCriteriaType"/>
<xsd:element name="ResolutionState" type="xsd:unsignedByte"/>
</xsd:sequence>
</xsd:complexType>
<xsd:simpleType name="GUIDCriteriaType">
<xsd:annotation>
<xsd:documentation>The representation of a GUID, generally the id of an element.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:pattern value="\{[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}\}"/>
</xsd:restriction>
</xsd:simpleType>
</SchemaType>