taxonomy().concept(ferc:ScheduleAnnualCostOfServiceBasedAnalysisScheduleAbstract).label("http://ferc.gov/form/2020-01-01/roles/label/F6Instructions").text
- Use footnotes when particulars are required or for any explanations.
- Enter on lines 1-9, columns (b) and (c), the value the respondent's Operating and Maintenance Expenses, Depreciation Expense, AFUDC Depreciation, Amortization of Deferred Earnings, Rate Base, Rate of Return, Return, Income Tax Allowance, and Total Cost of Service, respectively, for the end of the current and previous calendar years. The values shall be computed consistent with the Commission's Opinion No. 154-B et al. methodology. Any item(s) not applicable to the filing, the oil pipeline company shall report nothing in columns (b) and (c).
- Enter on line 10, columns (b) and (c), total interstate operating revenue, as reported on page 301, for the current and previous calendar years.
- Enter on line 11, columns b and c, the interstate throughput in barrels for the current and previous calendar years.
- Enter on line 12, columns b and c, the interstate throughput in barrel-miles for the current and previous calendar years.
- If the company makes major changes to its application of the Opinion No. 154-B et al. methodology, it must describe such changes in a footnote, and calculate the amounts in columns (b) and (c) of lines No. 1-12 using the changed application.
- A respondent may be requested by the Commission or its staff to provide its workpapers which support the data reported on page 700.
|
$data = navigate parent-child descendants from ferc:AnnualCostOfServiceBasedAnalysisLineItems role "http://ferc.gov/form/2020-01-01/roles/Schedule/F6/AnnualCostOfServiceBasedAnalysis" returns list (target-name, preferred-label);
$data-labels = list(for $row in $data
$concept = taxonomy().concept($row[1]);
$row_num = (filter $concept.references("http://ferc.gov/form/2020-01-01/roles/reference/formLocation") where ($item.part-by-name(ferc-part:Schedule).part-value == "700 - Schedule - Annual Cost of Service Based Analysis Schedule" and $item.part-by-name(ferc-part:ValueType).part-value.string == "Label")).to-list;
$page = $concept.label("http://ferc.gov/form/2020-01-01/roles/label/F6PageRange").text;
$current = if list([covered @concept = $row[1] @period = $currentDuration]).length > 0
first(list([covered @concept = $row[1] @period = $currentDuration]))
else
if list([covered @concept = $row[1] @period = $currentInstant]).length > 0
first(list([covered @concept = $row[1] @period = $currentInstant]))
else
none
$prior = if list([covered @concept = $row[1] @period = $priorDuration]).length > 0
first(list([covered @concept = $row[1] @period = $priorDuration]))
else
if list([covered @concept = $row[1] @period = $priorInstant]).length > 0
first(list([covered @concept = $row[1] @period = $priorInstant]))
else
none
list($concept,
$concept.label($row[2].role.uri).text, //Title of Account
if exists($page) $page else "", //Page Ref
if ($row_num.part-by-name(ferc-part:Row)).length == 0
""
else
($row_num.part-by-name(ferc-part:Row))[1].part-value,
$current,
$prior
));
for $rowl in $data-labels
if $rowl[1].is-abstract "" else $rowl[4]
1
|
|
$rowl[5]
if $rowl[1].is-abstract "gray-out" else ""
if $rowl[1].is-monetary
"monetary_items"
else
if $rowl[1].data-type.name.local-name == "percentItemType"
"percent_items"
else "numeric_items"
if $rowl[1].data-type.name.local-name == "percentItemType" "-2" else none
|
$rowl[6]
if $rowl[1].is-abstract "gray-out" else ""
if $rowl[1].is-monetary
"monetary_items"
else
if $rowl[1].data-type.name.local-name == "percentItemType"
"percent_items"
else "numeric_items"
if $rowl[1].data-type.name.local-name == "percentItemType" "-2" else none
|