All data sources

FERC MBR

No authfercmbr

FERC Market-Based Rate authorization — look up MBR authorizations, entity relationships, and reference data for power sellers authorized to charge market-based rates.

Provenance

PublisherFERC MBR

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (3)

  • lookupReference

    read

    Look up a FERC MBR reference table (e.g. balancing authorities).

    Input schema
    {
      "type": "object",
      "properties": {
        "endpoint": {
          "type": "string"
        },
        "table": {
          "type": "string"
        },
        "code": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "number"
            }
          ]
        },
        "searchTerm": {
          "type": "string"
        }
      },
      "additionalProperties": false
    }
  • getMbrAuthorization

    read

    Get a FERC market-based-rate authorization by company/submission.

    Required paramscid or submissionId or endpoint
    Input schema
    {
      "type": "object",
      "properties": {
        "endpoint": {
          "type": "string"
        },
        "cid": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "number"
            }
          ]
        },
        "submissionId": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "number"
            }
          ]
        }
      },
      "additionalProperties": false,
      "allOf": [
        {
          "anyOf": [
            {
              "required": [
                "cid"
              ]
            },
            {
              "required": [
                "submissionId"
              ]
            },
            {
              "required": [
                "endpoint"
              ]
            }
          ]
        }
      ]
    }
  • getEntityRelationships

    read

    Get FERC MBR entity relationships and affiliations.

    Required paramscid or submissionId or endpoint
    Input schema
    {
      "type": "object",
      "properties": {
        "endpoint": {
          "type": "string"
        },
        "cid": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "number"
            }
          ]
        },
        "submissionId": {
          "oneOf": [
            {
              "type": "string"
            },
            {
              "type": "number"
            }
          ]
        },
        "relationshipType": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "entities"
              ]
            },
            {
              "type": "string",
              "enum": [
                "gen-assets"
              ]
            },
            {
              "type": "string",
              "enum": [
                "ppas"
              ]
            },
            {
              "type": "string",
              "enum": [
                "vertical-assets"
              ]
            }
          ]
        }
      },
      "additionalProperties": false,
      "allOf": [
        {
          "anyOf": [
            {
              "required": [
                "cid"
              ]
            },
            {
              "required": [
                "submissionId"
              ]
            },
            {
              "required": [
                "endpoint"
              ]
            }
          ]
        }
      ]
    }