getLmpValue
Get Real-Time LMPs for Load Zones based on the given LMP value and sort option.
Arguments
Possible Errors
Allowed Viewers
Required Permissions
(No)Query Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query GetLmpValue(
$sort: SortByOptions,
$value: Float
) {
getLmpValue(
sort: $sort,
value: $value
) {
lastUpdatedAtDatetime
LMP
SettlementPoint
}
}
Variables
{
"sort": "GREATER_THAN",
"value": 845.0
}
Response
{
"data": {
"getLmpValue": [
{
"lastUpdatedAtDatetime": "2002-06-23T07:49:22.116555+00:00",
"LMP": 473.13,
"SettlementPoint": "HB_BUSAVG"
}
]
}
}