<?xml version="1.0" encoding="utf-8"?>
<!--
        
        ** OAGIS® Revision: 9.1  **
        ** Date: 11 May 2007 **
        ** Copyright 1997-2007, All Rights Reserved **
        
        This is an OAGIS® BOD XML Schema (XSD) Definition.
        
       License information for this file is provided in the file **OAGi License Agreement.txt** that is provided with this download package.
        
        For support, more information, or to report implementation bugs, please contact the Open Applications Group at xml@openapplications.org.
        
        XML Schema 
        
-->
 
<!--
© Copyright 2007 Infor Global Solutions Technology GmbH and/or its affiliates and subsidiaries. All rights reserved. The 
word and design marks set forth herein are trademarks and/or registered trademarks of Infor Global Solutions 
Technology GmbH and/or its affiliates and subsidiaries. All rights reserved. All other trademarks listed herein 
are the property of their respective owners.
 
-->
 
<!--    *****     Update Log     *****
 
Date          By      Note
10 Apr 2008    JB      Added correct Copyright and update comments to schema.
 
        *****     Update End     *****
 
-->


<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schema.infor.com/InforOAGIS/2" 
    targetNamespace="http://schema.infor.com/InforOAGIS/2" elementFormDefault="qualified"
    attributeFormDefault="unqualified">

    <xsd:include schemaLocation="../Components/Common/Components.xsd"/>

    <xsd:element name="EventTimer" type="EventTimerType"/>

    <xsd:complexType name="EventTimerType">
        <xsd:annotation>
            <xsd:documentation> This schema enables the use of Quartz (Cron-like) triggers using the
                following parameters (see RunEventTimer below). </xsd:documentation>
        </xsd:annotation>
        <xsd:sequence>
            <xsd:element ref="EventTimerID" minOccurs="0"/>
            <xsd:element ref="Name" minOccurs="0"/>
            <xsd:element ref="Description" minOccurs="0" maxOccurs="unbounded"/>
            <xsd:element ref="CronEventTimer" minOccurs="0"/>
            <xsd:element ref="EffectiveTimePeriod" minOccurs="0"/>
            <xsd:element ref="MissedEvent" minOccurs="0" maxOccurs="1"/>
        </xsd:sequence>
    </xsd:complexType>

    <xsd:complexType name="CronEventTimerType">
        <xsd:sequence>
            <xsd:element ref="Second" minOccurs="1" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation> Valid values: 0-59 , - * /. Indicates at what second value
                        this event should fire. It is not an interval, but rather a time. A 5 would
                        indicate 5 seconds after the minute. </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
            <xsd:element ref="Minute" minOccurs="1" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation> Valid values: 0-59 , - * / Indicates at what minute value
                        this event should fire. It is not an interval, but rather a time. A 5 would
                        indicate that this event should fire a 5 minutes after the
                    hour.</xsd:documentation>
                </xsd:annotation>
            </xsd:element>
            <xsd:element ref="Hour" minOccurs="1" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation> Valid values: 0-23 , - * / </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
            <xsd:element ref="DayOfMonth" minOccurs="1" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation> Valid values: 0-59 , - * / </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
            <xsd:element ref="Month" minOccurs="1" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation> Valid values: 1-31 , - * ? / L W C </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
            <xsd:element ref="DayOfWeek" minOccurs="1" maxOccurs="1">
                <xsd:annotation>
                    <xsd:documentation> Valid values: 1-7 or SUN-SAT , - * ? / L C #
                    </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
            <xsd:element ref="Year" minOccurs="0">
                <xsd:annotation>
                    <xsd:documentation> Valid values:(Optional) empty, 1970-2099 , - * /
                    </xsd:documentation>
                </xsd:annotation>
            </xsd:element>
        </xsd:sequence>
    </xsd:complexType>

    <xsd:complexType name="MissedEventType">
        <xsd:sequence>
            <xsd:element ref="RunImmediately" minOccurs="0"/>
        </xsd:sequence>
    </xsd:complexType>

    <xsd:element name="CronEventTimer" type="CronEventTimerType"/>
    <xsd:element name="EventTimerID" type="DocumentIDType"/>
    <xsd:element name="Second" type="StringType"/>
    <xsd:element name="Minute" type="StringType"/>
    <xsd:element name="Hour" type="StringType"/>
    <xsd:element name="DayOfMonth" type="StringType"/>

    <xsd:element name="MissedEvent" type="MissedEventType"/>
    <xsd:element name="RunImmediately" type="IndicatorType"/>

</xsd:schema>
