Skip to content

Availability Plan (AVP)

Availability Plan (AVP)

The availability plan is an hourly representation of availability of RMR or Synchronous Condenser units or an hourly representation of the capability of Black Start Resources submitted to ERCOT by QSEs representing RMR Units, Synchronous Condenser Units or Black Start Resources. The following diagram describes the structure of an Availability Plan (AVP):

AVP Structure

The AVP submission contains the resource name and the availabilityType (RMR, SYNCCOND, BLACKSTART and FFSS) and the availabilityStatus of the resource (A for Available and U for Unavailable). If more than one availabilityStatus block is provided, start and end times must not overlap.

AVP submissions can be cancelled. A resubmission of an AVP overwrites the previous submission. On submission, the following table describes the items used for a AVP:

Element Req? Datatype Description Values
startTime N dateTime Start time for AVP Valid start hour boundary for trade date
endTime N dateTime End time for AVP Valid end hour boundary for trade date
externalId N string External ID QSE supplied
resource K string Resource Valid resource name
availabilityType K string Resource Availability Type

RMR, SYNCCOND BLACKSTART

FFSS

availabilityStatus/startTime Y dateTime Start time for status Valid hour boundary
availabilityStatus/endTime Y dateTime End time for status Valid hour boundary
availabilityStatus/status Y dateTime Resource Availability Status A (Available)
U (Unavailable)

The following is an XML example for an AVP:

<BidSet xmlns="http://www.ercot.com/schema/2007-06/nodal/ews">
    <tradingDate>2012-11-08</tradingDate>
    <AVP 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”>
        <startTime>2012-11-08T00:00:00-05:00</startTime>
        <endTime>2012-11-09T00:00:00-05:00</endTime>
        <resource>RESOURCE1</resource>
        <availabilityType>FFSS</availabilityType>
        <availabilityStatus>
            <startTime>2012-11-08T00:00:00-05:00</startTime>
            <endTime>2012-11-08T01:00:00-05:00</endTime>
            <status>A</status>
        </availabilityStatus>
        <availabilityStatus>
            <startTime>2012-11-08T01:00:00-05:00</startTime>
            <endTime>2012-11-09T00:00:00-05:00</endTime>
            <status>U</status>
        </availabilityStatus>
    </AVP>
</BidSet>

And the corresponding response:

<ns1:BidSet xmlns:ns1="http://www.ercot.com/schema/2007-06/nodal/ews">
    <ns1:tradingDate>2012-11-08</ns1:tradingDate>
    <ns1:submitTime>2012-11-06T10:05:54.455-06:00</ns1:submitTime>
    <ns1:AVP>
        <ns1:mRID>QSE1.20121108.AVP.RESOURCE1.FFSS</ns1:mRID>
        <ns1:externalId/>
        <ns1:status>SUBMITTED</ns1:status>
    </ns1:AVP>
</ns1:BidSet>