Skip to content

Output Schedule (OS)

Output Schedule (OS)

An OutputSchedule describes the scheduled output for a resource at 5 minute intervals. The following diagram describes the structure of an Output Schedule:

OutputSchedule Structure

The EnergySchedule structure is identical to the structure described under the EnergyTrade transaction. On submission, the following table describes the items used for an OutputSchedule:

Element Req? Datatype Description Values
startTime N dateTime Start time for schedule Valid 5 minute interval boundary for trade date
endTime N dateTime End time for schedule Valid 5 minute interval boundary for trade date
externalId N string External ID QSE supplied
resource K string Resource Valid resource name
combinedCycle N string Combined cycle Not required. Value ignored if provided.
deleteTPOs N Boolean Set to true if three part offers for resource are to be deleted 1 or 0 (default=0)
EnergySchedule/startTime N dateTime Not Used Not Used
EnergySchedule/endTime N dateTime Not Used Not Used

EnergySchedule/

TmPoint/time

Y dateTime Absolute time for start of interval Valid time between startTime and endTime for schedule

EnergySchedule/

TmPoint/ending

N dateTime Absolute time for end of interval Valid time between startTime and endTime for schedule

EnergySchedule/

TmPoint/value1

Y float Megawatts >= 0

The following is an XML example for an OutputSchedule:

<BidSet xmlns="http://www.ercot.com/schema/2007-06/nodal/ews" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.ercot.com/schema/2007-06/nodal/ews ErcotTransactions.xsd">
    <tradingDate>2008-01-01</tradingDate>
    <OutputSchedule>
        <startTime>2008-01-01T00:00:00-05:00</startTime>
        <endTime>2008-01-02T00:00:00-05:00</endTime>
        <marketType>DAM</marketType>
        <resource> Resource1</resource>
        <deleteTPOs>true</deleteTPOs>
        <EnergySchedule>
            <TmPoint>
                <time>2008-01-01T00:00:00-05:00</time>
                <ending>2008-01-02T00:00:00-05:00</ending>
                <value1>20</value1>
            </TmPoint>
        </EnergySchedule>
    </OutputSchedule>
</BidSet>

And the corresponding response:

<ns1:BidSet xmlns:ns1="http://www.ercot.com/schema/2007-06/nodal/ews">
    <ns1:tradingDate>2008-06-15</ns1:tradingDate>
    <ns1:OutputSchedule>
        <ns1:mRID>AEN.20080615.OS. Resource1</ns1:mRID>
        <ns1:externalId/>
        <ns1:status>ACCEPTED</ns1:status>
        <ns1:error>
            <ns1:severity>WARNING</ns1:severity>
            <ns1:text>Energy Offer Curve for Resource1 does not exist for cancellation.</ns1:text>
        </ns1:error>
        <ns1:error>
            <ns1:severity>INFORMATIVE</ns1:severity>
            <ns1:text>Successfully processed the ERCOT Output Schedule.</ns1:text>
        </ns1:error>
    </ns1:OutputSchedule>
</ns1:BidSet>