Non-BM Physical Notifications
This Data File contains Non-BM Physical Notifications (PN) data declared by Service Providers for the Non-BM Quick Reserve Service, once declarations have been accepted and validated by OBP system by gate closure. This information is continuously published throughout the day on this platform. Additional Non-BM PN data will be added to this Data File as services get mastered by OBP.
CKAN Data API
Access resource data via a web API with powerful query support.
Further information in the main CKAN Data API and DataStore documentation.
The Data API can be accessed via the following actions of the CKAN action API.
| Query example (first 5 results) |
|---|
https://api.neso.energy/api/3/action/datastore_search?resource_id=dfe1d229-e973-43c6-b5eb-c28ad59d7136&limit=5
|
| Query example (via SQL statement) |
https://api.neso.energy/api/3/action/datastore_search_sql?sql=SELECT * from "dfe1d229-e973-43c6-b5eb-c28ad59d7136" LIMIT 5
|
A simple ajax (JSONP) request to the data API using jQuery.
var data = {
resource_id: 'dfe1d229-e973-43c6-b5eb-c28ad59d7136', // the resource id
limit: 5 // get 5 results
};
$.ajax({
url: 'https://api.neso.energy/api/3/action/datastore_search',
data: data,
dataType: 'jsonp',
success: function(data) {
alert('Total results found: ' + data.result.total)
}
});
A simple ajax (JSONP) request to the data API using jQuery.
import urllib2 url = 'https://api.neso.energy/api/3/action/datastore_search?resource_id=dfe1d229-e973-43c6-b5eb-c28ad59d7136&limit=5' fileobj = urllib2.urlopen(url) print fileobj.read()
Data Explorer
Data Explorer
Table Information
Data
| Title | Data |
|---|---|
| Type | string |
| Description | Type of data |
| Comment | Fixed value "PN" |
| Example | PN |
| Unit | N/A |
Unit ID
| Title | Unit ID |
|---|---|
| Type | string |
| Description | Registered Unit ID associated with the corresponding instruction. |
| Comment | |
| Example | ABERU-1 |
| Unit | N/A |
Time From
| Title | Time From |
|---|---|
| Type | datetime |
| Description | Window Start Datetime |
| Comment | |
| Example | 2025-11-25T05:00:00Z |
| Unit | UTC |
Level From
| Title | Level From |
|---|---|
| Type | number |
| Description | PN at Gate Closure for window start time in MW |
| Comment | |
| Example | 50 |
| Unit | MW |
Time To
| Title | Time To |
|---|---|
| Type | datetime |
| Description | Window End Time |
| Comment | |
| Example | 2025-11-25T05:30:00Z |
| Unit | UTC |
Level To
| Title | Level To |
|---|---|
| Type | number |
| Description | PN at Gate Closure for window end time in MW |
| Comment | |
| Example | 70 |
| Unit | MW |