数据库中的数据是与树形方式存储的,比如:
id parentid
1 -1
2 1
3 1
4 3
可以无限级分类;
如果能得到一个根节点bean(已经存储了孩子节点) ,就得到了这棵树,就可以序列化成json或xml格式,这是我想要的;
使用hibernate 的@onetomany 建好关联,级联查询 是可以达到上面的效果,获得整个树形bean,以前一直采用过这种方式;
这里介绍如何使用递归的方法取得一颗大树;
1.数据库表语句:树形结构存储(mysql数据库)
CREATE TABLE `usg_fdp_tree` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`DataPointId` int(11) DEFAULT NULL,
`USGId` varchar(11) CHARACTER SET latin1 DEFAULT NULL,
`Label` varchar(255) CHARACTER SET latin1 NOT NULL,
`IsAbstract` int(11) DEFAULT NULL,
`Depth` int(11) DEFAULT NULL,
`Order` decimal(4,1) DEFAULT NULL,
`ParentId` int(11) DEFAULT NULL,
`Prefix` varchar(30) CHARACTER SET latin1 DEFAULT NULL,
`IndustryType` int(11) DEFAULT NULL,
`TableType` int(11) DEFAULT NULL
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=5805 DEFAULT CHARSET=utf8
2. 对应的javabean(树形结构,不是hibernate bean) 去掉了一些字段:
带有simpleframework的注解
import java.util.ArrayList;
import java.util.List;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.ElementList;
import org.simpleframework.xml.Root;
@Root(name="Item")
public class UsgIndustryTree
{
//@Attribute(name="id",required=false)
private Integer id;
//@Attribute(name="dataPointId",required=false)
private Integer dataPointId;
@Attribute(name="UsgId",required=false)
private String usgid;
@Attribute(name="Tag",required=false)
private String label;
@Attribute(name="ReportName",required=false)
private String reportName;
@Attribute(name="Value",required=false)
private String value;
@Attribute(name="Matched",required=false)
private String matched;
//@Attribute(name="isAbstract",required=false)
private Integer isAbstract;
//@Attribute(name="depth",required=false)
private Integer depth;
//private BigDecimal order;
//@Attribute(name="parentId",required=false)
private Integer parentId;
//private String prefix;
//@Attribute(name="industryType",required=false)
private Integer industryType;
//private Integer tableType;
//private Integer creatorId;
//private Date createDate;
//private Integer updaterId;
//private Date updateDate;
//private Integer isValid;
@ElementList(name="children",required=false,inline=true)
private List<UsgIndustryTree> children =new ArrayList<UsgIndustryTree>();
public Integer getId()
{
return id;
}
..................
..........
3. 主方法:得到树形java bean 数据
public UsgIndustryTree createTree(int isabstract,int industry,int tableType, int parentid) throws DALException
{
//得到实体
UsgIndustryTree industryTree = getTree(industry, parentid);
String sql = "select * from usg_fdp_tree where isabstract=? and industrytype=? and tableType=? and parentid =? order by id ";
Object[] params = new Object[]{isabstract, industry, tableType,parentid };
List<UsgFdpTree> list = Global.getResourceDB().executeSQL(sql, UsgFdpTree.class, params);
if (list == null || list.size() == 0)
{
}
else
{
List<UsgIndustryTree> set = new ArrayList<UsgIndustryTree>();
for (UsgFdpTree tmp : list)
{
//递归调用
set.add(createTree(isabstract,industry, tableType,tmp.getId()));
}
industryTree.setChildren(set);
}
return industryTree;
}
得到了bean 就相当于得到了json或者xml ,通过上一遍文件介绍的jsontools 工具 得到的庞大json数据:
{"children":[{"children":[{"children":[{"children":[{"children":[{"children":[],"dataPointId":6,"depth":5,"id":6,"industryType":1,"isAbstract":0,"label":"Cash","matched":null,"parentId":5,"reportName":null,"usgid":"USGID008224","value":null},{"children":[],"dataPointId":7,"depth":5,"id":7,"industryType":1,"isAbstract":0,"label":"Cash Equivalents, at Carrying Value","matched":null,"parentId":5,"reportName":null,"usgid":"USGID000867","value":null}],"dataPointId":5,"depth":4,"id":5,"industryType":1,"isAbstract":0,"label":"Cash and Cash Equivalents, at Carrying Value, Total","matched":null,"parentId":4,"reportName":null,"usgid":"USGID000862","value":null},{"children":[{"children":[],"dataPointId":9,"depth":5,"id":9,"industryType":1,"isAbstract":0,"label":"Restricted Cash and Cash Equivalents, Current","matched":null,"parentId":8,"reportName":null,"usgid":"USGID006606","value":null},{"children":[],"dataPointId":10,"depth":5,"id":10,"industryType":1,"isAbstract":0,"label":"Marketable Securities, Restricted, Current","matched":null,"parentId":8,"reportName":null,"usgid":"USGID012306","value":null},{"children":[],"dataPointId":11,"depth":5,"id":11,"industryType":1,"isAbstract":0,"label":"Restricted Investments, Current","matched":null,"parentId":8,"reportName":null,"usgid":"USGID006614","value":null},{"children":[],"dataPointId":12,"depth":5,"id":12,"industryType":1,"isAbstract":0,"label":"Other Restricted Assets, Current","matched":null,"parentId":8,"reportName":null,"usgid":"USGID005227","value":null}],"dataPointId":8,"depth":4,"id":8,"industryType":1,"isAbstract":0,"label":"Restricted Cash and Investments, Current, Total","matched":null,"parentId":4,"reportName":null,"usgid":"USGID006609","value":null},{"children":[{"children":[{"children":[{"children":[],"dataPointId":16,"depth":7,"id":16,"industryType":1,"isAbstract":0,"label":"Trading Securities, Debt, Current","matched":null,"parentId":15,"reportName":null,"usgid":"USGID007815","value":null},{"children":[],"dataPointId":17,"depth":7,"id":17,"industryType":1,"isAbstract":0,"label":"Trading Securities, Equity, Current","matched":null,"parentId":15,"reportName":null,"usgid":"USGID007816","value":null}],"dataPointId":15,"depth":6,"id":15,"industryType":1,"isAbstract":0,"label":"Trading Securities, Current, Total","matched":null,"parentId":14,"reportName":null,"usgid":"USGID004487","value":null},{"children":[{"children":[],"dataPointId":19,"depth":7,"id":19,"industryType":1,"isAbstract":0,"label":"Available-for-sale Securities, Debt Securities, Current","matched":null,"parentId":18,"reportName":null,"usgid":"USGID007103","value":null},{"children":[],"dataPointId":20,"depth":7,"id":20,"industryType":1,"isAbstract":0,"label":"Available-for-sale Securities, Equity Securities, Current","matched":null,"parentId":18,"reportName":null,"usgid":"USGID007102","value":null}],"dataPointId":18,"depth":6,"id":18,"industryType":1,"isAbstract":0,"label":"Available-for-sale Securities, Current, Total","matched":null,"parentId":14,"reportName":null,"usgid":"USGID004481","value":null},{"children":[],"dataPointId":21,"depth":6,"id":21,"industryType":1,"isAbstract":0,"label":"Held-to-maturity Securities, Current","matched":null,"parentId":14,"reportName":null,"usgid":"USGID004482","value":null},{"children":[],"dataPointId":22,"depth":6,"id":22,"industryType":1,"isAbstract":0,"label":"Other Marketable Securities, Current","matched":null,"parentId":14,"reportName":null,"usgid":"USGID004485","value":null}],"dataPointId":14,"depth":5,"id":14,"industryType":1,"isAbstract":0,"label":"Marketable Securities, Current, Total","matched":null,"parentId":13,"reportName":null,"usgid":"USGID004488","value":null},{"children":[],"dataPointId":23,"depth":5,"id":23,"industryType":1,"isAbstract":0,"label":"Other Short-term Investments","matched":null,"parentId":13,"reportName":null,"usgid":"USGID005234","value":null}],"dataPointId":13,"depth":4,"id":13,"industryType":1,"isAbstract":0,"label":"Short-term Investments, Total","matched":null,"parentId":4,"reportName":null,"usgid":"USGID007467","value":null}],"dataPointId":4,"depth":3,"id":4,"industryType":1,"isAbstract":0,"label":"Cash, Cash Equivalents, and Short-term Investments, Total","matched":null,"parentId":3,"reportName":null,"usgid":"USGID000860","value":null},{"children":[{"children":[{"children":[{"children":[],"dataPointId":27,"depth":6,"id":27,"industryType":1,"isAbstract":0,"label":"Accounts Receivable, Gross, Current","matched":null,"parentId":26,"reportName":null,"usgid":"USGID007804","value":null},{"children":[],"dataPointId":28,"depth":6,"id":28,"industryType":1,"isAbstract":0,"label":"Allowance for Doubtful Accounts Receivable, Current","matched":null,"parentId":26,"reportName":null,"usgid":"USGID000254","value":null}],"dataPointId":26,"depth":5,"id":26,"industryType":1,"isAbstract":0,"label":"Accounts Receivable, Net, Current, Total","matched":null,"parentId":25,"reportName":null,"usgid":"USGID000028","value":null},{"children":[{"children":[],"dataPointId":30,"depth":6,"id":30,"industryType":1,"isAbstract":0,"label":"Notes, Loans and Financing Receivable, Gross, Current","matched":null,"parentId":29,"reportName":null,"usgid":"USGID004914","value":null},{"children":[],"dataPointId":31,"depth":6,"id":31,"industryType":1,"isAbstract":0,"label":"Allowance for Notes, Loans and Financing Receivable, Current","matched":null,"parentId":29,"reportName":null,"usgid":"USGID000276","value":null}],"dataPointId":29,"depth":5,"id":29,"industryType":1,"isAbstract":0,"label":"Notes, Loans and Financing Receivable, Net, Current, Total","matched":null,"parentId":25,"reportName":null,"usgid":"USGID008607","value":null}],"dataPointId":25,"depth":4,"id":25,"industryType":1,"isAbstract":0,"label":"Accounts, Notes, Loans and Financing Receivable, Net, Current, Total","matched":null,"parentId":24,"reportName":null,"usgid":"USGID000010","value":null},{"children":[],"dataPointId":32,"depth":4,"id":32,"industryType":1,"isAbstract":0,"label":"Due from Related Parties, Current","matched":null,"parentId":24,"reportName":null,"usgid":"USGID006431","value":null},{"children":[],"dataPointId":33,"depth":4,"id":33,"industryType":1,"isAbstract":0,"label":"Receivables, Long-term Contracts or Programs","matched":null,"parentId":24,"reportName":null,"usgid":"USGID000026","value":null}],"dataPointId":24,"depth":3,"id":24,"industryType":1,"isAbstract":0,"label":"Receivables, Net, Current, Total","matched":null,"parentId":3,"reportName":null,"usgid":"USGID006291","value":null},{"children":[{"children":[],"dataPointId":35,"depth":4,"id":35,"industryType":1,"isAbstract":0,"label":"Inventory, Finished Goods","matched":null,"parentId":34,"reportName":null,"usgid":"USGID009770","value":null},{"children":[],"dataPointId":36,"depth":4,"id":36,"industryType":1,"isAbstract":0,"label":"Inventory for Long-term Contracts or Programs","matched":null,"parentId":34,"reportName":null,"usgid":"USGID003834","value":null},{"children":[],"dataPointId":37,"depth":4,"id":37,"industryType":1,"isAbstract":0,"label":"Inventory, Work in Process","matched":null,"parentId":34,"reportName":null,"usgid":"USGID003821","value":null},{"children":[],"dataPointId":38,"depth":4,"id":38,"industryType":1,"isAbstract":0,"label":"Inventory, Raw Materials","matched":null,"parentId":34,"reportName":null,"usgid":"USGID003814","value":null},{"children":[],"dataPointId":39,"depth":4,"id":39,"industryType":1,"isAbstract":0,"label":"Other Inventory, Supplies","matched":null,"parentId":34,"reportName":null,"usgid":"USGID003820","value":null},{"children":[],"dataPointId":40,"depth":4,"id":40,"industryType":1,"isAbstract":0,"label":"Other Inventory","matched":null,"parentId":34,"reportName":null,"usgid":"USGID005167","value":null},{"children":[],"dataPointId":41,"depth":4,"id":41,"industryType":1,"isAbstract":0,"label":"Inventory Valuation Reserves","matched":null,"parentId":34,"reportName":null,"usgid":"USGID003841","value":null},{"children":[],"dataPointId":42,"depth":4,"id":42,"industryType":1,"isAbstract":0,"label":"Inventory, LIFO Reserve","matched":null,"parentId":34,"reportName":null,"usgid":"USGID003802","value":null}],"dataPointId":34,"depth":3,"id":34,"industryType":1,"isAbstract":0,"label":"Inventory, Net, Total","matched":null,"parentId":3,"reportName":null,"usgid":"USGID003807","value":null},{"children":[{"children":[],"dataPointId":44,"depth":4,"id":44,"industryType":1,"isAbstract":0,"label":"Prepaid Insurance","matched":null,"parentId":43,"reportName":null,"usgid":"USGID005765","value":null},{"children":[],"dataPointId":45,"depth":4,"id":45,"industryType":1,"isAbstract":0,"label":"Prepaid Rent","matched":null,"parentId":43,"reportName":null,"usgid":"USGID005773","value":null},{"children":[],"dataPointId":46,"depth":4,"id":46,"industryType":1,"isAbstract":0,"label":"Prepaid Advertising","matched":null,"parentId":43,"reportName":null,"usgid":"USGID005757","value":null},{"children":[],"dataPointId":47,"depth":4,"id":47,"industryType":1,"isAbstract":0,"label":"Prepaid Royalties","matched":null,"parentId":43,"reportName":null,"usgid":"USGID005766","value":null},{"children":[],"dataPointId":48,"depth":4,"id":48,"industryType":1,"isAbstract":0,"label":"Supplies","matched":null,"parentId":43,"reportName":null,"usgid":"USGID007685","value":null},{"children":[],"dataPointId":49,"depth":4,"id":49,"industryType":1,"isAbstract":0,"label":"Prepaid Interest","matched":null,"parentId":43,"reportName":null,"usgid":"USGID008724","value":null},{"children":[],"dataPointId":50,"depth":4,"id":50,"industryType":1,"isAbstract":0,"label":"Prepaid Taxes","matched":null,"parentId":43,"reportName":null,"usgid":"USGID005764","value":null},{"children":[],"dataPointId":51,"depth":4,"id":51,"industryType":1,"isAbstract":0,"label":"Other Prepaid Expense, Current","matched":null,"parentId":43,"reportName":null,"usgid":"USGID005222","value":null}],"dataPointId":43,"depth":3,"id":43,"industryType":1,"isAbstract":0,"label":"Prepaid Expense, Current, Total","matched":null,"parentId":3,"reportName":null,"usgid":"USGID005763","value":null},{"children":[{"children":[],"dataPointId":53,"depth":4,"id":53,"industryType":1,"isAbstract":0,"label":"Deferred Finance Costs, Current, Net","matched":null,"parentId":52,"reportName":null,"usgid":"USGID008776","value":null},{"children":[],"dataPointId":54,"depth":4,"id":54,"industryType":1,"isAbstract":0,"label":"Deferred Costs, Leasing, Net, Current","matched":null,"parentId":52,"reportName":null,"usgid":"USGID011104","value":null},{"children":[{"children":[],"dataPointId":56,"depth":5,"id":56,"industryType":1,"isAbstract":0,"label":"Deferred Gas Cost","matched":null,"parentId":55,"reportName":null,"usgid":"USGID001800","value":null},{"children":[],"dataPointId":57,"depth":5,"id":57,"industryType":1,"isAbstract":0,"label":"Deferred Electric Cost","matched":null,"parentId":55,"reportName":null,"usgid":"USGID001793","value":null}],"dataPointId":55,"depth":4,"id":55,"industryType":1,"isAbstract":0,"label":"Deferred Fuel Cost, Total","matched":null,"parentId":52,"reportName":null,"usgid":"USGID001798","value":null},{"children":[],"dataPointId":58,"depth":4,"id":58,"industryType":1,"isAbstract":0,"label":"Deferred Storm and Property Reserve Deficiency, Current","matched":null,"parentId":52,"reportName":null,"usgid":"USGID001841","value":null},{"children":[],"dataPointId":59,"depth":4,"id":59,"industryType":1,"isAbstract":0,"label":"Deferred Set-up Costs, Current","matched":null,"parentId":52,"reportName":null,"usgid":"USGID011139","value":null},{"children":[],"dataPointId":60,"depth":4,"id":60,"industryType":1,"isAbstract":0,"label":"Deferred Subscriber Acquisition Costs, Current","matched":null,"parentId":52,"reportName":null,"usgid":"USGID011148","value":null},{"children":[],"dataPointId":61,"depth":4,"id":61,"industryType":1,"isAbstract":0,"label":"Deferred Offering Costs","matched":null,"parentId":52,"reportName":null,"usgid":"USGID011442","value":null},{"children":[],"dataPointId":62,"depth":4,"id":62,"industryType":1,"isAbstract":0,"label":"Other Deferred Costs, Net","matched":null,"parentId":52,"reportName":null,"usgid":"USGID005136","value":null}],"dataPointId":52,"depth":3,"id":52,"industryType":1,"isAbstract":0,"label":"Deferred Costs, Current, Total","matched":null,"parentId":3,"reportName":null,"usgid":"USGID001839","value":null},{"children":[{"children":[],"dataPointId":64,"depth":4,"id":64,"industryType":1,"isAbstract":0,"label":"Derivative Assets, Current","matched":null,"parentId":63,"reportName":null,"usgid":"USGID002092","value":null},{"children":[],"dataPointId":65,"depth":4,"id":65,"industryType":1,"isAbstract":0,"label":"Hedging Assets, Current","matched":null,"parentId":63,"reportName":null,"usgid":"USGID003264","value":null},{"children":[],"dataPointId":66,"depth":4,"id":66,"industryType":1,"isAbstract":0,"label":"Commodity Contract Asset, Current","matched":null,"parentId":63,"reportName":null,"usgid":"USGID001258","value":null},{"children":[],"dataPointId":67,"depth":4,"id":67,"industryType":1,"isAbstract":0,"label":"Energy Marketing Contracts Assets, Current","matched":null,"parentId":63,"reportName":null,"usgid":"USGID000450","value":null}],"dataPointId":63,"depth":3,"id":63,"industryType":1,"isAbstract":0,"label":"Derivative Instruments and Hedges, Assets, Total","matched":null,"parentId":3,"reportName":null,"usgid":"USGID002098","value":null},{"children":[{"children":[],"dataPointId":69,"depth":4,"id":69,"industryType":1,"isAbstract":0,"label":"Inventories, Property Held-for-sale, Current","matched":null,"parentId":68,"reportName":null,"usgid":"USGID003812","value":null},{"children":[],"dataPointId":70,"depth":4,"id":70,"industryType":1,"isAbstract":0,"label":"Receivables Held-for-sale, Net Amount","matched":null,"parentId":68,"reportName":null,"usgid":"USGID006289","value":null},{"children":[],"dataPointId":71,"depth":4,"id":71,"industryType":1,"isAbstract":0,"label":"Other Assets Held-for-sale, Current","matched":null,"parentId":68,"reportName":null,"usgid":"USGID010479","value":null}],"dataPointId":68,"depth":3,"id":68,"industryType":1,"isAbstract":0,"label":"Assets Held-for-sale, Current, Total","matched":null,"parentId":3,"reportName":null,"usgid":"USGID000453","value":null},{"children":[],"dataPointId":72,"depth":3,"id":72,"industryType":1,"isAbstract":0,"label":"Capital Leases, Lessor Balance Sheet, Net Investment in Direct Financing and Sales Type Leases, Current","matched":null,"parentId":3,"reportName":null,"usgid":"USGID000750","value":null},{"children":[],"dataPointId":73,"depth":3,"id":73,"industryType":1,"isAbstract":0,"label":"Deferred Tax Assets, Net, Current","matched":null,"parentId":3,"reportName":null,"usgid":"USGID009017","value":null},{"children":[],"dataPointId":74,"depth":3,"id":74,"industryType":1,"isAbstract":0,"label":"Income Taxes Receivable, Current","matched":null,"parentId":3,"reportName":null,"usgid":"USGID003473","value":null},{"children":[],"dataPointId":75,"depth":3,"id":75,"industryType":1,"isAbstract":0,"label":"Regulatory Assets, Current","matched":null,"parentId":3,"reportName":null,"usgid":"USGID006379","value":null},{"children":[],"dataPointId":76,"depth":3,"id":76,"industryType":1,"isAbstract":0,"label":"Asset Recovery Damaged Property Costs, Current","matched":null,"parentId":3,"reportName":null,"usgid":"USGID000414","value":null},{"children":[],"dataPointId":77,"depth":3,"id":77,"industryType":1,"isAbstract":0,"label":"Funds Held for Clients","matched":null,"parentId":3,"reportName":null,"usgid":"USGID010628","value":null},{"children":[],"dataPointId":78,"depth":3,"id":78,"industryType":1,"isAbstract":0,"label":"Deferred Rent Asset, Net, Current","matched":null,"parentId":3,"reportName":null,"usgid":"USGID010515","value":null},{"children":[],"dataPointId":79,"depth":3,"id":79,"industryType":1,"isAbstract":0,"label":"Advances on Inventory Purchases","matched":null,"parentId":3,"reportName":null,"usgid":"USGID003795","value":null},{"children":[],"dataPointId":80,"depth":3,"id":80,"industryType":1,"isAbstract":0,"label":"Costs in Excess of Billings on Uncompleted Contracts or Programs Expected to be Collected within One Year","matched":null,"parentId":3,"reportName":null,"usgid":"USGID001552","value":null},{"children":[],"dataPointId":81,"depth":3,"id":81,"industryType":1,"isAbstract":0,"label":"Health Care Trust Fund, Assets Limited as to Use, Current","matched":null,"parentId":3,"reportName":null,"usgid":"USGID009794","value":null},{"children":[],"dataPointId":82,"depth":3,"id":82,"industryType":1,"isAbstract":0,"label":"Assets of Disposal Group, Including Discontinued Operation, Current","matched":null,"parentId":3,"reportName":null,"usgid":"USGID000447","value":null},{"children":[],"dataPointId":83,"depth":3,"id":83,"industryType":1,"isAbstract":0,"label":"Other Assets, Current","matched":null,"parentId":3,"reportName":null,"usgid":"USGID005128","value":null},{"children":[],"dataPointId":84,"depth":3,"id":84,"industryType":1,"isAbstract":0,"label":"Deposits Assets, Current","matched":null,"parentId":3,"reportName":null,"usgid":"USGID012132","value":null}],"dataPointId":3,"depth":2,"id":3,"industryType":1,"isAbstract":0,"label":"Assets, Current, Total","matched":null,"parentId":2,"reportName":null,"usgid":"USGID007797","value":null},{"children":[{"children":[{"children":[],"dataPointId":87,"depth":4,"id":87,"industryType":1,"isAbstract":0,"label":"Inventory, Gas in Storage Underground, Noncurrent","matched":null,"parentId":86,"reportName":null,"usgid":"USGID003800","value":null},{"children":[],"dataPointId":88,"depth":4,"id":88,"industryType":1,"isAbstract":0,"label":"Inventory, Drilling, Noncurrent","matched":null,"parentId":86,"reportName":null,"usgid":"USGID003798","value":null},{"children":[],"dataPointId":89,"depth":4,"id":89,"industryType":1,"isAbstract":0,"label":"Other Inventory, Noncurrent","matched":null,"parentId":86,"reportName":null,"usgid":"USGID005193","value":null}],"dataPointId":86,"depth":3,"id":86,"industryType":1,"isAbstract":0,"label":"Inventory, Noncurrent, Total","matched":null,"parentId":85,"reportName":null,"usgid":"USGID004841","value":null},{"children":[{"children":[{"children":[],"dataPointId":92,"depth":5,"id":92,"industryType":1,"isAbstract":0,"label":"Land","matched":null,"parentId":91,"reportName":null,"usgid":"USGID003938","value":null},{"children":[],"dataPointId":93,"depth":5,"id":93,"industryType":1,"isAbstract":0,"label":"Buildings and Improvements, Gross","matched":null,"parentId":91,"reportName":null,"usgid":"USGID000611","value":null},{"children":[],"dataPointId":94,"depth":5,"id":94,"industryType":1,"isAbstract":0,"label":"Machinery and Equipment, Gross","matched":null,"parentId":91,"reportName":null,"usgid":"USGID009095","value":null},{"children":[],"dataPointId":95,"depth":5,"id":95,"industryType":1,"isAbstract":0,"label":"Furniture and Fixtures, Gross","matched":null,"parentId":91,"reportName":null,"usgid":"USGID003052","value":null},{"children":[],"dataPointId":96,"depth":5,"id":96,"industryType":1,"isAbstract":0,"label":"Construction in Progress, Gross","matched":null,"parentId":91,"reportName":null,"usgid":"USGID001357","value":null},{"children":[],"dataPointId":97,"depth":5,"id":97,"industryType":1,"isAbstract":0,"label":"Leasehold Improvements, Gross","matched":null,"parentId":91,"reportName":null,"usgid":"USGID003947","value":null},{"children":[],"dataPointId":98,"depth":5,"id":98,"industryType":1,"isAbstract":0,"label":"Capital Leased Assets, Gross","matched":null,"parentId":91,"reportName":null,"usgid":"USGID009719","value":null},{"children":[],"dataPointId":99,"depth":5,"id":99,"industryType":1,"isAbstract":0,"label":"Property Subject to or Available for Operating Lease, Gross","matched":null,"parentId":91,"reportName":null,"usgid":"USGID009037","value":null},{"children":[],"dataPointId":100,"depth":5,"id":100,"industryType":1,"isAbstract":0,"label":"Timber and Timberlands","matched":null,"parentId":91,"reportName":null,"usgid":"USGID012173","value":null},{"children":[],"dataPointId":101,"depth":5,"id":101,"industryType":1,"isAbstract":0,"label":"Property, Plant and Equipment, Other","matched":null,"parentId":91,"reportName":null,"usgid":"USGID011102","value":null}],"dataPointId":91,"depth":4,"id":91,"industryType":1,"isAbstract":0,"label":"Property, Plant and Equipment, Gross, Total","matched":null,"parentId":90,"reportName":null,"usgid":"USGID006020","value":null},{"children":[],"dataPointId":102,"depth":4,"id":102,"industryType":1,"isAbstract":0,"label":"Accumulated Depreciation, Depletion and Amortization, Property, Plant, and Equipment","matched":null,"parentId":90,"reportName":null,"usgid":"USGID000091","value":null}],"dataPointId":90,"depth":3,"id":90,"industryType":1,"isAbstract":0,"label":"Property, Plant and Equipment, Net, Total","matched":null,"parentId":85,"reportName":null,"usgid":"USGID006024","value":null},{"children":[{"children":[{"children":[{"children":[],"dataPointId":106,"depth":6,"id":106,"industryType":1,"isAbstract":0,"label":"Equity Method Investments","matched":null,"parentId":105,"reportName":null,"usgid":"USGID002722","value":null},{"children":[],"dataPointId":107,"depth":6,"id":107,"industryType":1,"isAbstract":0,"label":"Cost Method Investments","matched":null,"parentId":105,"reportName":null,"usgid":"USGID008787","value":null},{"children":[],"dataPointId":108,"depth":6,"id":108,"industryType":1,"isAbstract":0,"label":"Advances to Affiliate","matched":null,"parentId":105,"reportName":null,"usgid":"USGID000222","value":null}],"dataPointId":105,"depth":5,"id":105,"industryType":1,"isAbstract":0,"label":"Investments in and Advance to Affiliates, Subsidiaries, Associates, and Joint Ventures, Total","matched":null,"parentId":104,"reportName":null,"usgid":"USGID003873","value":null},{"children":[{"children":[{"children":[],"dataPointId":111,"depth":7,"id":111,"industryType":1,"isAbstract":0,"label":"Available-for-sale Securities, Equity Securities, Noncurrent","matched":null,"parentId":110,"reportName":null,"usgid":"USGID003855","value":null},{"children":[],"dataPointId":112,"depth":7,"id":112,"industryType":1,"isAbstract":0,"label":"Available-for-sale Securities, Debt Securities, Noncurrent","matched":null,"parentId":110,"reportName":null,"usgid":"USGID008474","value":null}],"dataPointId":110,"depth":6,"id":110,"industryType":1,"isAbstract":0,"label":"Available-for-sale Securities, Noncurrent, Total","matched":null,"parentId":109,"reportName":null,"usgid":"USGID004477","value":null},{"children":[],"dataPointId":113,"depth":6,"id":113,"industryType":1,"isAbstract":0,"label":"Held-to-maturity Securities, Noncurrent","matched":null,"parentId":109,"reportName":null,"usgid":"USGID004490","value":null},{"children":[],"dataPointId":114,"depth":6,"id":114,"industryType":1,"isAbstract":0,"label":"Other Marketable Securities, Noncurrent","matched":null,"parentId":109,"reportName":null,"usgid":"USGID004492","value":null}],"dataPointId":109,"depth":5,"id":109,"industryType":1,"isAbstract":0,"label":"Marketable Securities, Noncurrent, Total","matched":null,"parentId":104,"reportName":null,"usgid":"USGID004493","value":null},{"children":[],"dataPointId":115,"depth":5,"id":115,"industryType":1,"isAbstract":0,"label":"Investment in Physical Commodities","matched":null,"parentId":104,"reportName":null,"usgid":"USGID003877","value":null},{"children":[],"dataPointId":116,"depth":5,"id":116,"industryType":1,"isAbstract":0,"label":"Health Care Trust Fund, Assets Limited as to Use, Noncurrent","matched":null,"parentId":104,"reportName":null,"usgid":"USGID009795","value":null},{"children":[],"dataPointId":117,"depth":5,"id":117,"industryType":1,"isAbstract":0,"label":"Other Long-term Investments","matched":null,"parentId":104,"reportName":null,"usgid":"USGID005186","value":null}],"dataPointId":104,"depth":4,"id":104,"industryType":1,"isAbstract":0,"label":"Long-term Investments, Total","matched":null,"parentId":103,"reportName":null,"usgid":"USGID004325","value":null},{"children":[{"children":[{"children":[],"dataPointId":120,"depth":6,"id":120,"industryType":1,"isAbstract":0,"label":"Accounts Receivable, Gross, Noncurrent","matched":null,"parentId":119,"reportName":null,"usgid":"USGID000027","value":null},{"children":[],"dataPointId":121,"depth":6,"id":121,"industryType":1,"isAbstract":0,"label":"Allowance for Doubtful Accounts Receivable, Noncurrent","matched":null,"parentId":119,"reportName":null,"usgid":"USGID000252","value":null}],"dataPointId":119,"depth":5,"id":119,"industryType":1,"isAbstract":0,"label":"Accounts Receivable, Net, Noncurrent, Total","matched":null,"parentId":118,"reportName":null,"usgid":"USGID000031","value":null},{"children":[{"children":[],"dataPointId":123,"depth":6,"id":123,"industryType":1,"isAbstract":0,"label":"Notes, Loans and Financing Receivable, Gross, Noncurrent","matched":null,"parentId":122,"reportName":null,"usgid":"USGID004909","value":null},{"children":[],"dataPointId":124,"depth":6,"id":124,"industryType":1,"isAbstract":0,"label":"Allowance for Notes, Loans and Financing Receivable, Noncurrent","matched":null,"parentId":122,"reportName":null,"usgid":"USGID008619","value":null}],"dataPointId":122,"depth":5,"id":122,"industryType":1,"isAbstract":0,"label":"Notes, Loans and Financing Receivable, Net, Noncurrent, Total","matched":null,"parentId":118,"reportName":null,"usgid":"USGID004910","value":null}],"dataPointId":118,"depth":4,"id":118,"industryType":1,"isAbstract":0,"label":"Accounts, Notes, Loans and Financing Receivable, Net, Noncurrent, Total","matched":null,"parentId":103,"reportName":null,"usgid":"USGID008661","value":null},{"children":[],"dataPointId":125,"depth":4,"id":125,"industryType":1,"isAbstract":0,"label":"Due from Related Parties, Noncurrent","matched":null,"parentId":103,"reportName":null,"usgid":"USGID006433","value":null},{"children":[],"dataPointId":126,"depth":4,"id":126,"industryType":1,"isAbstract":0,"label":"Capital Leases, Lessor Balance Sheet, Net Investment in Direct Financing and Sales Type Leases, Noncurrent","matched":null,"parentId":103,"reportName":null,"usgid":"USGID000751","value":null}],"dataPointId":103,"depth":3,"id":103,"industryType":1,"isAbstract":0,"label":"Long-term Investments and Receivables, Net, Total","matched":null,"parentId":85,"reportName":null,"usgid":"USGID004324","value":null},{"children":[],"dataPointId":127,"depth":3,"id":127,"industryType":1,"isAbstract":0,"label":"Goodwill","matched":null,"parentId":85,"reportName":null,"usgid":"USGID011554","value":null},{"children":[{"children":[{"children":[],"dataPointId":130,"depth":5,"id":130,"industryType":1,"isAbstract":0,"label":"Indefinite-Lived Contractual Rights","matched":null,"parentId":129,"reportName":null,"usgid":"USGID003588","value":null},{"children":[],"dataPointId":131,"depth":5,"id":131,"industryType":1,"isAbstract":0,"label":"Indefinite-Lived Franchise Rights","matched":null,"parentId":129,"reportName":null,"usgid":"USGID003591","value":null},{"children":[],"dataPointId":132,"depth":5,"id":132,"industryType":1,"isAbstract":0,"label":"Indefinite-Lived License Agreements","matched":null,"parentId":129,"reportName":null,"usgid":"USGID010135","value":null},{"children":[],"dataPointId":133,"depth":5,"id":133,"industryType":1,"isAbstract":0,"label":"Indefinite-Lived Trademarks","matched":null,"parentId":129,"reportName":null,"usgid":"USGID010138","value":null},{"children":[],"dataPointId":134,"depth":5,"id":134,"industryType":1,"isAbstract":0,"label":"Indefinite-Lived Trade Names","matched":null,"parentId":129,"reportName":null,"usgid":"USGID010136","value":null},{"children":[],"dataPointId":135,"depth":5,"id":135,"industryType":1,"isAbstract":0,"label":"Indefinite-Lived Trade Dress","matched":null,"parentId":129,"reportName":null,"usgid":"USGID012172","value":null},{"children":[],"dataPointId":136,"depth":5,"id":136,"industryType":1,"isAbstract":0,"label":"Indefinite-Lived Trade Secrets","matched":null,"parentId":129,"reportName":null,"usgid":"USGID010137","value":null},{"children":[],"dataPointId":137,"depth":5,"id":137,"industryType":1,"isAbstract":0,"label":"Other Indefinite-lived Intangible Assets","matched":null,"parentId":129,"reportName":null,"usgid":"USGID010168","value":null}],"dataPointId":129,"depth":4,"id":129,"industryType":1,"isAbstract":0,"label":"Indefinite-Lived Intangible Assets (Excluding Goodwill), Total","matched":null,"parentId":128,"reportName":null,"usgid":"USGID003590","value":null},{"children":[{"children":[{"children":[],"dataPointId":140,"depth":6,"id":140,"industryType":1,"isAbstract":0,"label":"Finite-Lived Computer Software, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003569","value":null},{"children":[],"dataPointId":141,"depth":6,"id":141,"industryType":1,"isAbstract":0,"label":"Finite-Lived Contractual Rights, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003570","value":null},{"children":[],"dataPointId":142,"depth":6,"id":142,"industryType":1,"isAbstract":0,"label":"Finite-Lived Copyrights, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003571","value":null},{"children":[],"dataPointId":143,"depth":6,"id":143,"industryType":1,"isAbstract":0,"label":"Finite-Lived Customer Lists, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003572","value":null},{"children":[],"dataPointId":144,"depth":6,"id":144,"industryType":1,"isAbstract":0,"label":"Finite-Lived Customer Relationships, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003573","value":null},{"children":[],"dataPointId":145,"depth":6,"id":145,"industryType":1,"isAbstract":0,"label":"Finite-Lived Distribution Rights, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003574","value":null},{"children":[],"dataPointId":146,"depth":6,"id":146,"industryType":1,"isAbstract":0,"label":"Finite-Lived Franchise Rights, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003575","value":null},{"children":[],"dataPointId":147,"depth":6,"id":147,"industryType":1,"isAbstract":0,"label":"Finite-Lived License Agreements, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003578","value":null},{"children":[],"dataPointId":148,"depth":6,"id":148,"industryType":1,"isAbstract":0,"label":"Finite-Lived Media Content, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003579","value":null},{"children":[],"dataPointId":149,"depth":6,"id":149,"industryType":1,"isAbstract":0,"label":"Finite-Lived Noncompete Agreements, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003582","value":null},{"children":[],"dataPointId":150,"depth":6,"id":150,"industryType":1,"isAbstract":0,"label":"Finite-Lived Coal Supply Agreement, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003568","value":null},{"children":[],"dataPointId":151,"depth":6,"id":151,"industryType":1,"isAbstract":0,"label":"Finite-Lived Intangible Asset, Off-market Lease, Favorable, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID011122","value":null},{"children":[],"dataPointId":152,"depth":6,"id":152,"industryType":1,"isAbstract":0,"label":"Finite-Lived Transmission Service Agreement, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003585","value":null},{"children":[],"dataPointId":153,"depth":6,"id":153,"industryType":1,"isAbstract":0,"label":"Finite-Lived Patents, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003583","value":null},{"children":[],"dataPointId":154,"depth":6,"id":154,"industryType":1,"isAbstract":0,"label":"Finite-Lived Royalty, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003584","value":null},{"children":[],"dataPointId":155,"depth":6,"id":155,"industryType":1,"isAbstract":0,"label":"Finite-Lived Trademarks, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID008652","value":null},{"children":[],"dataPointId":156,"depth":6,"id":156,"industryType":1,"isAbstract":0,"label":"Finite-Lived Trade Names, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003586","value":null},{"children":[],"dataPointId":157,"depth":6,"id":157,"industryType":1,"isAbstract":0,"label":"Finite-Lived Trade Secrets, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID003587","value":null},{"children":[],"dataPointId":158,"depth":6,"id":158,"industryType":1,"isAbstract":0,"label":"Other Finite-Lived Intangible Assets, Gross","matched":null,"parentId":139,"reportName":null,"usgid":"USGID009890","value":null}],"dataPointId":139,"depth":5,"id":139,"industryType":1,"isAbstract":0,"label":"Finite-Lived Intangible Assets, Gross, Total","matched":null,"parentId":138,"reportName":null,"usgid":"USGID003577","value":null},{"children":[],"dataPointId":159,"depth":5,"id":159,"industryType":1,"isAbstract":0,"label":"Finite-Lived Intangible Assets, Accumulated Amortization","matched":null,"parentId":138,"reportName":null,"usgid":"USGID000086","value":null}],"dataPointId":138,"depth":4,"id":138,"industryType":1,"isAbstract":0,"label":"Finite-Lived Intangible Assets, Net, Total","matched":null,"parentId":128,"reportName":null,"usgid":"USGID003581","value":null}],"dataPointId":128,"depth":3,"id":128,"industryType":1,"isAbstract":0,"label":"Intangible Assets, Net (Excluding Goodwill), Total","matched":null,"parentId":85,"reportName":null,"usgid":"USGID003567","value":null},{"children":[{"children":[],"dataPointId":161,"depth":4,"id":161,"industryType":1,"isAbstract":0,"label":"Prepaid Expense Other, Noncurrent","matched":null,"parentId":160,"reportName":null,"usgid":"USGID005758","value":null},{"children":[],"dataPointId":162,"depth":4,"id":162,"industryType":1,"isAbstract":0,"label":"Prepaid Mineral Royalties, Noncurrent","matched":null,"parentId":160,"reportName":null,"usgid":"USGID005767","value":null}],"dataPointId":160,"depth":3,"id":160,"industryType":1,"isAbstract":0,"label":"Prepaid Expense, Noncurrent, Total","matched":null,"parentId":85,"reportName":null,"usgid":"USGID005762","value":null},{"children":[{"children":[],"dataPointId":164,"depth":4,"id":164,"industryType":1,"isAbstract":0,"label":"Derivative Assets, Noncurrent","matched":null,"parentId":163,"reportName":null,"usgid":"USGID002094","value":null},{"children":[],"dataPointId":165,"depth":4,"id":165,"industryType":1,"isAbstract":0,"label":"Hedging Assets, Noncurrent","matched":null,"parentId":163,"reportName":null,"usgid":"USGID003265","value":null},{"children":[],"dataPointId":166,"depth":4,"id":166,"industryType":1,"isAbstract":0,"label":"Commodity Contract Asset, Noncurrent","matched":null,"parentId":163,"reportName":null,"usgid":"USGID001259","value":null},{"children":[],"dataPointId":167,"depth":4,"id":167,"industryType":1,"isAbstract":0,"label":"Energy Marketing Contracts Assets, Noncurrent","matched":null,"parentId":163,"reportName":null,"usgid":"USGID002654","value":null},{"children":[],"dataPointId":168,"depth":4,"id":168,"industryType":1,"isAbstract":0,"label":"Gas Purchase Contract, Net","matched":null,"parentId":163,"reportName":null,"usgid":"USGID003182","value":null}],"dataPointId":163,"depth":3,"id":163,"industryType":1,"isAbstract":0,"label":"Derivative Instruments and Hedges, Noncurrent, Total","matched":null,"parentId":85,"reportName":null,"usgid":"USGID002100","value":null},{"children":[{"children":[],"dataPointId":170,"depth":4,"id":170,"industryType":1,"isAbstract":0,"label":"Assets Held-for-sale, Capital Leased Assets, Net","matched":null,"parentId":169,"reportName":null,"usgid":"USGID001591","value":null},{"children":[],"dataPointId":171,"depth":4,"id":171,"industryType":1,"isAbstract":0,"label":"Assets Held-for-sale, Property, Plant and Equipment","matched":null,"parentId":169,"reportName":null,"usgid":"USGID006012","value":null},{"children":[],"dataPointId":172,"depth":4,"id":172,"industryType":1,"isAbstract":0,"label":"Assets Held-for-sale, Other, Noncurrent","matched":null,"parentId":169,"reportName":null,"usgid":"USGID011117","value":null}],"dataPointId":169,"depth":3,"id":169,"industryType":1,"isAbstract":0,"label":"Assets Held-for-sale, Long Lived, Total","matched":null,"parentId":85,"reportName":null,"usgid":"USGID010735","value":null},{"children":[{"children":[],"dataPointId":174,"depth":4,"id":174,"industryType":1,"isAbstract":0,"label":"Regulatory Assets, Noncurrent","matched":null,"parentId":173,"reportName":null,"usgid":"USGID006380","value":null},{"children":[],"dataPointId":175,"depth":4,"id":175,"industryType":1,"isAbstract":0,"label":"Competitive Transition Charge, Noncurrent","matched":null,"parentId":173,"reportName":null,"usgid":"USGID001296","value":null},{"children":[],"dataPointId":176,"depth":4,"id":176,"industryType":1,"isAbstract":0,"label":"Securitized Regulatory Transition Assets, Noncurrent","matched":null,"parentId":173,"reportName":null,"usgid":"USGID007153","value":null},{"children":[],"dataPointId":177,"depth":4,"id":177,"industryType":1,"isAbstract":0,"label":"Demand Side Management Program Costs, Noncurrent","matched":null,"parentId":173,"reportName":null,"usgid":"USGID001961","value":null},{"children":[],"dataPointId":178,"depth":4,"id":178,"industryType":1,"isAbstract":0,"label":"Unamortized Loss Reacquired Debt, Noncurrent","matched":null,"parentId":173,"reportName":null,"usgid":"USGID007895","value":null},{"children":[],"dataPointId":179,"depth":4,"id":179,"industryType":1,"isAbstract":0,"label":"Decommissioning Fund Investments","matched":null,"parentId":173,"reportName":null,"usgid":"USGID001762","value":null},{"children":[],"dataPointId":180,"depth":4,"id":180,"industryType":1,"isAbstract":0,"label":"Asset Recovery Damaged Property Costs, Noncurrent","matched":null,"parentId":173,"reportName":null,"usgid":"USGID008723","value":null},{"children":[],"dataPointId":181,"depth":4,"id":181,"industryType":1,"isAbstract":0,"label":"Deferred Storm and Property Reserve Deficiency, Noncurrent","matched":null,"parentId":173,"reportName":null,"usgid":"USGID001842","value":null},{"children":[],"dataPointId":182,"depth":4,"id":182,"industryType":1,"isAbstract":0,"label":"Investments in Power and Distribution Projects","matched":null,"parentId":173,"reportName":null,"usgid":"USGID005635","value":null},{"children":[],"dataPointId":183,"depth":4,"id":183,"industryType":1,"isAbstract":0,"label":"Phase-in Plan, Amount of Costs Deferred for Rate-making Purposes","matched":null,"parentId":173,"reportName":null,"usgid":"USGID006079","value":null},{"children":[],"dataPointId":184,"depth":4,"id":184,"industryType":1,"isAbstract":0,"label":"Unamortized Debt Issuance Expense","matched":null,"parentId":173,"reportName":null,"usgid":"USGID011671","value":null}],"dataPointId":173,"depth":3,"id":173,"industryType":1,"isAbstract":0,"label":"Regulated Entity, Other Assets, Noncurrent, Total","matched":null,"parentId":85,"reportName":null,"usgid":"USGID010150","value":null},{"children":[],"dataPointId":185,"depth":3,"id":185,"industryType":1,"isAbstract":0,"label":"Prepaid Pension Costs","matched":null,"parentId":85,"reportName":null,"usgid":"USGID005768","value":null},{"children":[],"dataPointId":186,"depth":3,"id":186,"industryType":1,"isAbstract":0,"label":"Deferred Finance Costs, Noncurrent, Net","matched":null,"parentId":85,"reportName":null,"usgid":"USGID008771","value":null},{"children":[],"dataPointId":187,"depth":3,"id":187,"industryType":1,"isAbstract":0,"label":"Deferred Costs, Leasing, Net, Noncurrent","matched":null,"parentId":85,"reportName":null,"usgid":"USGID011103","value":null},{"children":[],"dataPointId":188,"depth":3,"id":188,"industryType":1,"isAbstract":0,"label":"Deferred Set-up Costs, Noncurrent","matched":null,"parentId":85,"reportName":null,"usgid":"USGID011149","value":null},{"children":[],"dataPointId":189,"depth":3,"id":189,"industryType":1,"isAbstract":0,"label":"Deferred Subscriber Acquisition Costs, Noncurrent","matched":null,"parentId":85,"reportName":null,"usgid":"USGID011150","value":null},{"children":[],"dataPointId":190,"depth":3,"id":190,"industryType":1,"isAbstract":0,"label":"Incentive to Lessee","matched":null,"parentId":85,"reportName":null,"usgid":"USGID011126","value":null},{"children":[],"dataPointId":191,"depth":3,"id":191,"industryType":1,"isAbstract":0,"label":"Deferred Tax Assets, Net, Noncurrent","matched":null,"parentId":85,"reportName":null,"usgid":"USGID008981","value":null},{"children":[],"dataPointId":192,"depth":3,"id":192,"industryType":1,"isAbstract":0,"label":"Deposits Assets, Noncurrent","matched":null,"parentId":85,"reportName":null,"usgid":"USGID002000","value":null},{"children":[],"dataPointId":193,"depth":3,"id":193,"industryType":1,"isAbstract":0,"label":"Costs in Excess of Billings on Uncompleted Contracts or Programs Expected to be Collected after One Year","matched":null,"parentId":85,"reportName":null,"usgid":"USGID001551","value":null},{"children":[],"dataPointId":194,"depth":3,"id":194,"industryType":1,"isAbstract":0,"label":"Insurance Receivable for Malpractice, Noncurrent","matched":null,"parentId":85,"reportName":null,"usgid":"USGID003561","value":null},{"children":[],"dataPointId":195,"depth":3,"id":195,"industryType":1,"isAbstract":0,"label":"Deferred Rent Receivables, Net, Noncurrent","matched":null,"parentId":85,"reportName":null,"usgid":"USGID001821","value":null},{"children":[],"dataPointId":196,"depth":3,"id":196,"industryType":1,"isAbstract":0,"label":"Assets Held-in-trust, Noncurrent","matched":null,"parentId":85,"reportName":null,"usgid":"USGID003048","value":null},{"children":[],"dataPointId":197,"depth":3,"id":197,"industryType":1,"isAbstract":0,"label":"Defined Benefit Plan, Assets for Plan Benefits, Noncurrent","matched":null,"parentId":85,"reportName":null,"usgid":"USGID013313","value":null},{"children":[{"children":[],"dataPointId":199,"depth":4,"id":199,"industryType":1,"isAbstract":0,"label":"Restricted Cash and Cash Equivalents, Noncurrent","matched":null,"parentId":198,"reportName":null,"usgid":"USGID006611","value":null},{"children":[],"dataPointId":200,"depth":4,"id":200,"industryType":1,"isAbstract":0,"label":"Marketable Securities, Restricted, Noncurrent","matched":null,"parentId":198,"reportName":null,"usgid":"USGID012307","value":null},{"children":[],"dataPointId":201,"depth":4,"id":201,"industryType":1,"isAbstract":0,"label":"Restricted Investments, Noncurrent","matched":null,"parentId":198,"reportName":null,"usgid":"USGID012819","value":null},{"children":[],"dataPointId":202,"depth":4,"id":202,"industryType":1,"isAbstract":0,"label":"Other Restricted Assets, Noncurrent","matched":null,"parentId":198,"reportName":null,"usgid":"USGID012820","value":null}],"dataPointId":198,"depth":3,"id":198,"industryType":1,"isAbstract":0,"label":"Restricted Cash and Investments, Noncurrent, Total","matched":null,"parentId":85,"reportName":null,"usgid":"USGID012308","value":null},{"children":[],"dataPointId":203,"depth":3,"id":203,"industryType":1,"isAbstract":0,"label":"Assets of Disposal Group, Including Discontinued Operation, Noncurrent","matched":null,"parentId":85,"reportName":null,"usgid":"USGID000448","value":null},{"children":[],"dataPointId":204,"depth":3,"id":204,"industryType":1,"isAbstract":0,"label":"Other Assets, Noncurrent","matched":null,"parentId":85,"reportName":null,"usgid":"USGID010229","value":null}],"dataPointId":85,"depth":2,"id":85,"industryType":1,"isAbstract":0,"label":"Assets, Noncurrent, Total","matched":null,"parentId":2,"reportName":null,"usgid":"USGID004840","value":null}],"dataPointId":2,"depth":1,"id":2,"industryType":1,"isAbstract":0,"label":"Assets, Total","matched":null,"parentId":1,"reportName":null,"usgid":"USGID008603","value":null},{"children":[{"children":[{"children":[{"children":[{"children":[],"dataPointId":209,"depth":5,"id":209,"industryType":1,"isAbstract":0,"label":"Accounts Payable, Current","matched":null,"parentId":208,"reportName":null,"usgid":"USGID012357","value":null},{"children":[],"dataPointId":210,"depth":5,"id":210,"industryType":1,"isAbstract":0,"label":"Accrued Liabilities, Current","matched":null,"parentId":208,"reportName":null,"usgid":"USGID012359","value":null},{"children":[],"dataPointId":211,"depth":5,"id":211,"industryType":1,"isAbstract":0,"label":"Employee-related Liabilities, Current","matched":null,"parentId":208,"reportName":null,"usgid":"USGID012361","value":null},{"children":[{"children":[],"dataPointId":213,"depth":6,"id":213,"industryType":1,"isAbstract":0,"label":"Accrued Income Taxes, Current","matched":null,"parentId":212,"reportName":null,"usgid":"USGID012168","value":null},{"children":[],"dataPointId":214,"depth":6,"id":214,"industryType":1,"isAbstract":0,"label":"Sales and Excise Tax Payable, Current","matched":null,"parentId":212,"reportName":null,"usgid":"USGID013254","value":null},{"children":[],"dataPointId":215,"depth":6,"id":215,"industryType":1,"isAbstract":0,"label":"Accrual for Taxes Other than Income Taxes, Current","matched":null,"parentId":212,"reportName":null,"usgid":"USGID013225","value":null}],"dataPointId":212,"depth":5,"id":212,"industryType":1,"isAbstract":0,"label":"Taxes Payable, Current, Total","matched":null,"parentId":208,"reportName":null,"usgid":"USGID012363","value":null},{"children":[],"dataPointId":216,"depth":5,"id":216,"industryType":1,"isAbstract":0,"label":"Interest and Dividends Payable, Current","matched":null,"parentId":208,"reportName":null,"usgid":"USGID012362","value":null}],"dataPointId":208,"depth":4,"id":208,"industryType":1,"isAbstract":0,"label":"Accounts Payable and Accrued Liabilities, Current, Total","matched":null,"parentId":207,"reportName":null,"usgid":"USGID012358","value":null},{"children":[{"children":[{"children":[],"dataPointId":219,"depth":6,"id":219,"industryType":1,"isAbstract":0,"label":"Bank Overdrafts","matched":null,"parentId":218,"reportName":null,"usgid":"USGID000549","value":null},{"children":[],"dataPointId":220,"depth":6,"id":220,"industryType":1,"isAbstract":0,"label":"Commercial Paper","matched":null,"parentId":218,"reportName":null,"usgid":"USGID001250","value":null},{"children":[],"dataPointId":221,"depth":6,"id":221,"industryType":1,"isAbstract":0,"label":"Bridge Loan","matched":null,"parentId":218,"reportName":null,"usgid":"USGID000606","value":null},{"children":[],"dataPointId":222,"depth":6,"id":222,"industryType":1,"isAbstract":0,"label":"Construction Loan","matched":null,"parentId":218,"reportName":null,"usgid":"USGID011811","value":null},{"children":[],"dataPointId":223,"depth":6,"id":223,"industryType":1,"isAbstract":0,"label":"Short-term Bank Loans and Notes Payable","matched":null,"parentId":218,"reportName":null,"usgid":"USGID010880","value":null},{"children":[],"dataPointId":224,"depth":6,"id":224,"industryType":1,"isAbstract":0,"label":"Short-term Non-bank Loans and Notes Payable","matched":null,"parentId":218,"reportName":null,"usgid":"USGID010881","value":null},{"children":[],"dataPointId":225,"depth":6,"id":225,"industryType":1,"isAbstract":0,"label":"Other Short-term Borrowings","matched":null,"parentId":218,"reportName":null,"usgid":"USGID005233","value":null}],"dataPointId":218,"depth":5,"id":218,"industryType":1,"isAbstract":0,"label":"Short-term Borrowings, Total","matched":null,"parentId":217,"reportName":null,"usgid":"USGID007463","value":null},{"children":[{"children":[{"children":[],"dataPointId":228,"depth":7,"id":228,"industryType":1,"isAbstract":0,"label":"Secured Debt, Current","matched":null,"parentId":227,"reportName":null,"usgid":"USGID007096","value":null},{"children":[],"dataPointId":229,"depth":7,"id":229,"industryType":1,"isAbstract":0,"label":"Convertible Debt, Current","matched":null,"parentId":227,"reportName":null,"usgid":"USGID001395","value":null},{"children":[],"dataPointId":230,"depth":7,"id":230,"industryType":1,"isAbstract":0,"label":"Unsecured Debt, Current","matched":null,"parentId":227,"reportName":null,"usgid":"USGID007944","value":null},{"children":[],"dataPointId":231,"depth":7,"id":231,"industryType":1,"isAbstract":0,"label":"Subordinated Debt, Current","matched":null,"parentId":227,"reportName":null,"usgid":"USGID007590","value":null},{"children":[],"dataPointId":232,"depth":7,"id":232,"industryType":1,"isAbstract":0,"label":"Convertible Subordinated Debt, Current","matched":null,"parentId":227,"reportName":null,"usgid":"USGID001422","value":null},{"children":[],"dataPointId":233,"depth":7,"id":233,"industryType":1,"isAbstract":0,"label":"Other Long-term Debt, Current","matched":null,"parentId":227,"reportName":null,"usgid":"USGID001603","value":null},{"children":[],"dataPointId":234,"depth":7,"id":234,"industryType":1,"isAbstract":0,"label":"Line of Credit, Current","matched":null,"parentId":227,"reportName":null,"usgid":"USGID004092","value":null},{"children":[{"children":[{"children":[],"dataPointId":237,"depth":9,"id":237,"industryType":1,"isAbstract":0,"label":"Convertible Notes Payable, Current","matched":null,"parentId":236,"reportName":null,"usgid":"USGID001397","value":null},{"children":[],"dataPointId":238,"depth":9,"id":238,"industryType":1,"isAbstract":0,"label":"Notes Payable to Bank, Current","matched":null,"parentId":236,"reportName":null,"usgid":"USGID004899","value":null},{"children":[],"dataPointId":239,"depth":9,"id":239,"industryType":1,"isAbstract":0,"label":"Senior Notes, Current","matched":null,"parentId":236,"reportName":null,"usgid":"USGID007252","value":null},{"children":[],"dataPointId":240,"depth":9,"id":240,"industryType":1,"isAbstract":0,"label":"Junior Subordinated Notes, Current","matched":null,"parentId":236,"reportName":null,"usgid":"USGID003905","value":null},{"children":[],"dataPointId":241,"depth":9,"id":241,"industryType":1,"isAbstract":0,"label":"Other Notes Payable, Current","matched":null,"parentId":236,"reportName":null,"usgid":"USGID005198","value":null}],"dataPointId":236,"depth":8,"id":236,"industryType":1,"isAbstract":0,"label":"Notes Payable, Current, Total","matched":null,"parentId":235,"reportName":null,"usgid":"USGID004904","value":null},{"children":[{"children":[],"dataPointId":243,"depth":9,"id":243,"industryType":1,"isAbstract":0,"label":"Loans Payable to Bank, Current","matched":null,"parentId":242,"reportName":null,"usgid":"USGID004225","value":null},{"children":[],"dataPointId":244,"depth":9,"id":244,"industryType":1,"isAbstract":0,"label":"Other Loans Payable, Current","matched":null,"parentId":242,"reportName":null,"usgid":"USGID005182","value":null}],"dataPointId":242,"depth":8,"id":242,"industryType":1,"isAbstract":0,"label":"Loans Payable, Current, Total","matched":null,"parentId":235,"reportName":null,"usgid":"USGID004228","value":null}],"dataPointId":235,"depth":7,"id":235,"industryType":1,"isAbstract":0,"label":"Notes and Loans Payable, Current, Total","matched":null,"parentId":227,"reportName":null,"usgid":"USGID004897","value":null}],"dataPointId":227,"depth":6,"id":227,"industryType":1,"isAbstract":0,"label":"Long-term Debt, Current Maturities, Total","matched":null,"parentId":226,"reportName":null,"usgid":"USGID004298","value":null},{"children":[],"dataPointId":245,"depth":6,"id":245,"industryType":1,"isAbstract":0,"label":"Capital Lease Obligations, Current","matched":null,"parentId":226,"reportName":null,"usgid":"USGID000731","value":null}],"dataPointId":226,"depth":5,"id":226,"industryType":1,"isAbstract":0,"label":"Long-term Debt and Capital Lease Obligations, Current, Total","matched":null,"parentId":217,"reportName":null,"usgid":"USGID001602","value":null}],"dataPointId":217,"depth":4,"id":217,"industryType":1,"isAbstract":0,"label":"Debt, Current, Total","matched":null,"parentId":207,"reportName":null,"usgid":"USGID001639","value":null},{"children":[{"children":[],"dataPointId":247,"depth":5,"id":247,"industryType":1,"isAbstract":0,"label":"Deferred Compensation Share-based Arrangements, Liability, Current","matched":null,"parentId":246,"reportName":null,"usgid":"USGID011034","value":null},{"children":[],"dataPointId":248,"depth":5,"id":248,"industryType":1,"isAbstract":0,"label":"Deferred Compensation Cash-based Arrangements, Liability, Current","matched":null,"parentId":246,"reportName":null,"usgid":"USGID010436","value":null},{"children":[],"dataPointId":249,"depth":5,"id":249,"industryType":1,"isAbstract":0,"label":"Other Deferred Compensation Arrangements, Liability, Current","matched":null,"parentId":246,"reportName":null,"usgid":"USGID010482","value":null}],"dataPointId":246,"depth":4,"id":246,"industryType":1,"isAbstract":0,"label":"Deferred Compensation Liability, Current, Total","matched":null,"parentId":207,"reportName":null,"usgid":"USGID001782","value":null},{"children":[{"children":[],"dataPointId":251,"depth":5,"id":251,"industryType":1,"isAbstract":0,"label":"Deferred Revenue, Current","matched":null,"parentId":250,"reportName":null,"usgid":"USGID001951","value":null},{"children":[],"dataPointId":252,"depth":5,"id":252,"industryType":1,"isAbstract":0,"label":"Deferred Air Traffic Revenue","matched":null,"parentId":250,"reportName":null,"usgid":"USGID010486","value":null},{"children":[],"dataPointId":253,"depth":5,"id":253,"industryType":1,"isAbstract":0,"label":"Other Deferred Credits, Current","matched":null,"parentId":250,"reportName":null,"usgid":"USGID010480","value":null},{"children":[],"dataPointId":254,"depth":5,"id":254,"industryType":1,"isAbstract":0,"label":"Deferred Rent Credit, Current","matched":null,"parentId":250,"reportName":null,"usgid":"USGID010487","value":null}],"dataPointId":250,"depth":4,"id":250,"industryType":1,"isAbstract":0,"label":"Deferred Revenue and Credits, Current, Total","matched":null,"parentId":207,"reportName":null,"usgid":"USGID010485","value":null},{"children":[{"children":[],"dataPointId":256,"depth":5,"id":256,"industryType":1,"isAbstract":0,"label":"Derivative Liabilities, Current","matched":null,"parentId":255,"reportName":null,"usgid":"USGID002114","value":null},{"children":[],"dataPointId":257,"depth":5,"id":257,"industryType":1,"isAbstract":0,"label":"Hedging Liabilities, Current","matched":null,"parentId":255,"reportName":null,"usgid":"USGID012212","value":null},{"children":[],"dataPointId":258,"depth":5,"id":258,"industryType":1,"isAbstract":0,"label":"Energy Marketing Contract Liabilities, Current","matched":null,"parentId":255,"reportName":null,"usgid":"USGID002655","value":null}],"dataPointId":255,"depth":4,"id":255,"industryType":1,"isAbstract":0,"label":"Derivative Instruments and Hedges, Liabilities, Total","matched":null,"parentId":207,"reportName":null,"usgid":"USGID012211","value":null},{"children":[],"dataPointId":259,"depth":4,"id":259,"industryType":1,"isAbstract":0,"label":"Deferred Tax Liabilities, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID009018","value":null},{"children":[],"dataPointId":260,"depth":4,"id":260,"industryType":1,"isAbstract":0,"label":"Liability for Uncertain Tax Positions, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID011647","value":null},{"children":[],"dataPointId":261,"depth":4,"id":261,"industryType":1,"isAbstract":0,"label":"Postemployment Benefits Liability, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID012136","value":null},{"children":[],"dataPointId":262,"depth":4,"id":262,"industryType":1,"isAbstract":0,"label":"Securities Loaned","matched":null,"parentId":207,"reportName":null,"usgid":"USGID011181","value":null},{"children":[],"dataPointId":263,"depth":4,"id":263,"industryType":1,"isAbstract":0,"label":"Regulatory Liability, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID006387","value":null},{"children":[],"dataPointId":264,"depth":4,"id":264,"industryType":1,"isAbstract":0,"label":"Provision for Loss on Contracts","matched":null,"parentId":207,"reportName":null,"usgid":"USGID006032","value":null},{"children":[],"dataPointId":265,"depth":4,"id":265,"industryType":1,"isAbstract":0,"label":"Litigation Reserve, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID012135","value":null},{"children":[],"dataPointId":266,"depth":4,"id":266,"industryType":1,"isAbstract":0,"label":"Accrued Environmental Loss Contingencies, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID002707","value":null},{"children":[],"dataPointId":267,"depth":4,"id":267,"industryType":1,"isAbstract":0,"label":"Asset Retirement Obligation, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID000418","value":null},{"children":[],"dataPointId":268,"depth":4,"id":268,"industryType":1,"isAbstract":0,"label":"Accrued Capping, Closure, Post-closure and Environmental Costs","matched":null,"parentId":207,"reportName":null,"usgid":"USGID010516","value":null},{"children":[],"dataPointId":269,"depth":4,"id":269,"industryType":1,"isAbstract":0,"label":"Accrued Reclamation Costs, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID000078","value":null},{"children":[],"dataPointId":270,"depth":4,"id":270,"industryType":1,"isAbstract":0,"label":"Deferred Gas Purchases, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID001801","value":null},{"children":[],"dataPointId":271,"depth":4,"id":271,"industryType":1,"isAbstract":0,"label":"Due to Related Parties, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID012360","value":null},{"children":[],"dataPointId":272,"depth":4,"id":272,"industryType":1,"isAbstract":0,"label":"Liabilities of Disposal Group, Including Discontinued Operation, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID003991","value":null},{"children":[],"dataPointId":273,"depth":4,"id":273,"industryType":1,"isAbstract":0,"label":"Liabilities of Business Transferred under Contractual Arrangement, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID008850","value":null},{"children":[],"dataPointId":274,"depth":4,"id":274,"industryType":1,"isAbstract":0,"label":"Other Liabilities, Current","matched":null,"parentId":207,"reportName":null,"usgid":"USGID008809","value":null}],"dataPointId":207,"depth":3,"id":207,"industryType":1,"isAbstract":0,"label":"Liabilities, Current, Total","matched":null,"parentId":206,"reportName":null,"usgid":"USGID001597","value":null},{"children":[{"children":[],"dataPointId":276,"depth":4,"id":276,"industryType":1,"isAbstract":0,"label":"Accounts Payable and Accrued Liabilities, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID000073","value":null},{"children":[],"dataPointId":277,"depth":4,"id":277,"industryType":1,"isAbstract":0,"label":"Accrued Income Taxes, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID012169","value":null},{"children":[{"children":[{"children":[],"dataPointId":280,"depth":6,"id":280,"industryType":1,"isAbstract":0,"label":"Long-term Line of Credit, Noncurrent","matched":null,"parentId":279,"reportName":null,"usgid":"USGID004140","value":null},{"children":[],"dataPointId":281,"depth":6,"id":281,"industryType":1,"isAbstract":0,"label":"Long-term Commercial Paper, Noncurrent","matched":null,"parentId":279,"reportName":null,"usgid":"USGID001249","value":null},{"children":[],"dataPointId":282,"depth":6,"id":282,"industryType":1,"isAbstract":0,"label":"Long-term Construction Loan, Noncurrent","matched":null,"parentId":279,"reportName":null,"usgid":"USGID011812","value":null},{"children":[],"dataPointId":283,"depth":6,"id":283,"industryType":1,"isAbstract":0,"label":"Secured Long-term Debt, Noncurrent","matched":null,"parentId":279,"reportName":null,"usgid":"USGID007101","value":null},{"children":[],"dataPointId":284,"depth":6,"id":284,"industryType":1,"isAbstract":0,"label":"Subordinated Long-term Debt, Noncurrent","matched":null,"parentId":279,"reportName":null,"usgid":"USGID007591","value":null},{"children":[],"dataPointId":285,"depth":6,"id":285,"industryType":1,"isAbstract":0,"label":"Unsecured Long-term Debt, Noncurrent","matched":null,"parentId":279,"reportName":null,"usgid":"USGID007947","value":null},{"children":[],"dataPointId":286,"depth":6,"id":286,"industryType":1,"isAbstract":0,"label":"Convertible Debt, Noncurrent","matched":null,"parentId":279,"reportName":null,"usgid":"USGID010221","value":null},{"children":[],"dataPointId":287,"depth":6,"id":287,"industryType":1,"isAbstract":0,"label":"Convertible Subordinated Debt, Noncurrent","matched":null,"parentId":279,"reportName":null,"usgid":"USGID001424","value":null},{"children":[],"dataPointId":288,"depth":6,"id":288,"industryType":1,"isAbstract":0,"label":"Long-term Transition Bond, Noncurrent","matched":null,"parentId":279,"reportName":null,"usgid":"USGID007833","value":null},{"children":[],"dataPointId":289,"depth":6,"id":289,"industryType":1,"isAbstract":0,"label":"Long-term Pollution Control Bond, Noncurrent","matched":null,"parentId":279,"reportName":null,"usgid":"USGID005563","value":null},{"children":[{"children":[{"children":[],"dataPointId":292,"depth":8,"id":292,"industryType":1,"isAbstract":0,"label":"Junior Subordinated Notes, Noncurrent","matched":null,"parentId":291,"reportName":null,"usgid":"USGID003906","value":null},{"children":[],"dataPointId":293,"depth":8,"id":293,"industryType":1,"isAbstract":0,"label":"Senior Notes, Noncurrent","matched":null,"parentId":291,"reportName":null,"usgid":"USGID007253","value":null},{"children":[],"dataPointId":294,"depth":8,"id":294,"industryType":1,"isAbstract":0,"label":"Convertible Notes Payable, Noncurrent","matched":null,"parentId":291,"reportName":null,"usgid":"USGID001398","value":null},{"children":[],"dataPointId":295,"depth":8,"id":295,"industryType":1,"isAbstract":0,"label":"Notes Payable to Bank, Noncurrent","matched":null,"parentId":291,"reportName":null,"usgid":"USGID004900","value":null},{"children":[],"dataPointId":296,"depth":8,"id":296,"industryType":1,"isAbstract":0,"label":"Other Notes Payable, Noncurrent","matched":null,"parentId":291,"reportName":null,"usgid":"USGID005199","value":null}],"dataPointId":291,"depth":7,"id":291,"industryType":1,"isAbstract":0,"label":"Notes Payable, Noncurrent, Total","matched":null,"parentId":290,"reportName":null,"usgid":"USGID004906","value":null},{"children":[{"children":[],"dataPointId":298,"depth":8,"id":298,"industryType":1,"isAbstract":0,"label":"Loans Payable to Bank, Noncurrent","matched":null,"parentId":297,"reportName":null,"usgid":"USGID004226","value":null},{"children":[],"dataPointId":299,"depth":8,"id":299,"industryType":1,"isAbstract":0,"label":"Other Loans Payable, Long-term, Noncurrent","matched":null,"parentId":297,"reportName":null,"usgid":"USGID005183","value":null}],"dataPointId":297,"depth":7,"id":297,"industryType":1,"isAbstract":0,"label":"Loans Payable, Noncurrent, Total","matched":null,"parentId":290,"reportName":null,"usgid":"USGID004221","value":null}],"dataPointId":290,"depth":6,"id":290,"industryType":1,"isAbstract":0,"label":"Notes and Loans, Noncurrent, Total","matched":null,"parentId":279,"reportName":null,"usgid":"USGID004895","value":null},{"children":[],"dataPointId":300,"depth":6,"id":300,"industryType":1,"isAbstract":0,"label":"Other Long-term Debt, Noncurrent","matched":null,"parentId":279,"reportName":null,"usgid":"USGID010227","value":null}],"dataPointId":279,"depth":5,"id":279,"industryType":1,"isAbstract":0,"label":"Long-term Debt, Excluding Current Maturities, Total","matched":null,"parentId":278,"reportName":null,"usgid":"USGID004309","value":null},{"children":[],"dataPointId":301,"depth":5,"id":301,"industryType":1,"isAbstract":0,"label":"Capital Lease Obligations, Noncurrent","matched":null,"parentId":278,"reportName":null,"usgid":"USGID000733","value":null}],"dataPointId":278,"depth":4,"id":278,"industryType":1,"isAbstract":0,"label":"Long-term Debt and Capital Lease Obligations, Total","matched":null,"parentId":275,"reportName":null,"usgid":"USGID001641","value":null},{"children":[],"dataPointId":302,"depth":4,"id":302,"industryType":1,"isAbstract":0,"label":"Deferred Compensation Liability, Classified, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID012405","value":null},{"children":[{"children":[],"dataPointId":304,"depth":5,"id":304,"industryType":1,"isAbstract":0,"label":"Defined Benefit Pension Plan, Liabilities, Noncurrent","matched":null,"parentId":303,"reportName":null,"usgid":"USGID013315","value":null},{"children":[],"dataPointId":305,"depth":5,"id":305,"industryType":1,"isAbstract":0,"label":"Other Postretirement Defined Benefit Plan, Liabilities, Noncurrent","matched":null,"parentId":303,"reportName":null,"usgid":"USGID013317","value":null}],"dataPointId":303,"depth":4,"id":303,"industryType":1,"isAbstract":0,"label":"Pension and Other Postretirement Defined Benefit Plans, Liabilities, Noncurrent, Total","matched":null,"parentId":275,"reportName":null,"usgid":"USGID012400","value":null},{"children":[{"children":[],"dataPointId":307,"depth":5,"id":307,"industryType":1,"isAbstract":0,"label":"Deferred Revenue, Noncurrent","matched":null,"parentId":306,"reportName":null,"usgid":"USGID001952","value":null},{"children":[],"dataPointId":308,"depth":5,"id":308,"industryType":1,"isAbstract":0,"label":"Accumulated Deferred Investment Tax Credit","matched":null,"parentId":306,"reportName":null,"usgid":"USGID011645","value":null},{"children":[],"dataPointId":309,"depth":5,"id":309,"industryType":1,"isAbstract":0,"label":"Deferred Rent Credit, Noncurrent","matched":null,"parentId":306,"reportName":null,"usgid":"USGID010488","value":null},{"children":[],"dataPointId":310,"depth":5,"id":310,"industryType":1,"isAbstract":0,"label":"Other Deferred Credits, Noncurrent","matched":null,"parentId":306,"reportName":null,"usgid":"USGID010489","value":null},{"children":[],"dataPointId":311,"depth":5,"id":311,"industryType":1,"isAbstract":0,"label":"Incentive from Lessor","matched":null,"parentId":306,"reportName":null,"usgid":"USGID011127","value":null}],"dataPointId":306,"depth":4,"id":306,"industryType":1,"isAbstract":0,"label":"Deferred Revenue and Credits, Noncurrent, Total","matched":null,"parentId":275,"reportName":null,"usgid":"USGID010490","value":null},{"children":[{"children":[],"dataPointId":313,"depth":5,"id":313,"industryType":1,"isAbstract":0,"label":"Mine Reclamation and Closing Liability, Noncurrent","matched":null,"parentId":312,"reportName":null,"usgid":"USGID004546","value":null},{"children":[],"dataPointId":314,"depth":5,"id":314,"industryType":1,"isAbstract":0,"label":"Oil and Gas Reclamation Liability, Noncurrent","matched":null,"parentId":312,"reportName":null,"usgid":"USGID000079","value":null},{"children":[],"dataPointId":315,"depth":5,"id":315,"industryType":1,"isAbstract":0,"label":"Accrued Capping, Closure, Post-closure and Environmental Costs, Noncurrent","matched":null,"parentId":312,"reportName":null,"usgid":"USGID010502","value":null},{"children":[],"dataPointId":316,"depth":5,"id":316,"industryType":1,"isAbstract":0,"label":"Decommissioning Liability, Noncurrent","matched":null,"parentId":312,"reportName":null,"usgid":"USGID001763","value":null},{"children":[],"dataPointId":317,"depth":5,"id":317,"industryType":1,"isAbstract":0,"label":"Spent Nuclear Fuel Obligation, Noncurrent","matched":null,"parentId":312,"reportName":null,"usgid":"USGID010382","value":null}],"dataPointId":312,"depth":4,"id":312,"industryType":1,"isAbstract":0,"label":"Asset Retirement Obligations, Noncurrent, Total","matched":null,"parentId":275,"reportName":null,"usgid":"USGID000428","value":null},{"children":[{"children":[],"dataPointId":319,"depth":5,"id":319,"industryType":1,"isAbstract":0,"label":"Customer Advances, Noncurrent","matched":null,"parentId":318,"reportName":null,"usgid":"USGID001614","value":null},{"children":[],"dataPointId":320,"depth":5,"id":320,"industryType":1,"isAbstract":0,"label":"Customer Advances for Construction","matched":null,"parentId":318,"reportName":null,"usgid":"USGID001612","value":null},{"children":[],"dataPointId":321,"depth":5,"id":321,"industryType":1,"isAbstract":0,"label":"Customer Deposits, Noncurrent","matched":null,"parentId":318,"reportName":null,"usgid":"USGID001619","value":null}],"dataPointId":318,"depth":4,"id":318,"industryType":1,"isAbstract":0,"label":"Customer Advances or Deposits, Noncurrent, Total","matched":null,"parentId":275,"reportName":null,"usgid":"USGID001611","value":null},{"children":[],"dataPointId":322,"depth":4,"id":322,"industryType":1,"isAbstract":0,"label":"Deferred Tax Liabilities, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID009019","value":null},{"children":[],"dataPointId":323,"depth":4,"id":323,"industryType":1,"isAbstract":0,"label":"Liability for Uncertain Tax Positions, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID011648","value":null},{"children":[],"dataPointId":324,"depth":4,"id":324,"industryType":1,"isAbstract":0,"label":"Postemployment Benefits Liability, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID001792","value":null},{"children":[],"dataPointId":325,"depth":4,"id":325,"industryType":1,"isAbstract":0,"label":"Accrued Environmental Loss Contingencies, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID002708","value":null},{"children":[],"dataPointId":326,"depth":4,"id":326,"industryType":1,"isAbstract":0,"label":"Coal Supply Agreement Obligation, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID001228","value":null},{"children":[],"dataPointId":327,"depth":4,"id":327,"industryType":1,"isAbstract":0,"label":"Customer Refund Liability, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID001623","value":null},{"children":[],"dataPointId":328,"depth":4,"id":328,"industryType":1,"isAbstract":0,"label":"Derivative Liabilities, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID002115","value":null},{"children":[],"dataPointId":329,"depth":4,"id":329,"industryType":1,"isAbstract":0,"label":"Off-market Lease, Unfavorable","matched":null,"parentId":275,"reportName":null,"usgid":"USGID011123","value":null},{"children":[],"dataPointId":330,"depth":4,"id":330,"industryType":1,"isAbstract":0,"label":"Shares Subject to Mandatory Redemption, Settlement Terms, Amount, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID011743","value":null},{"children":[],"dataPointId":331,"depth":4,"id":331,"industryType":1,"isAbstract":0,"label":"Self Insurance Reserve","matched":null,"parentId":275,"reportName":null,"usgid":"USGID007240","value":null},{"children":[],"dataPointId":332,"depth":4,"id":332,"industryType":1,"isAbstract":0,"label":"Litigation Reserve, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID008914","value":null},{"children":[],"dataPointId":333,"depth":4,"id":333,"industryType":1,"isAbstract":0,"label":"Regulatory Liability, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID006403","value":null},{"children":[],"dataPointId":334,"depth":4,"id":334,"industryType":1,"isAbstract":0,"label":"Restructuring Reserve, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID006644","value":null},{"children":[],"dataPointId":335,"depth":4,"id":335,"industryType":1,"isAbstract":0,"label":"Due to Related Parties, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID000366","value":null},{"children":[],"dataPointId":336,"depth":4,"id":336,"industryType":1,"isAbstract":0,"label":"Liabilities of Disposal Group, Including Discontinued Operation, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID003992","value":null},{"children":[],"dataPointId":337,"depth":4,"id":337,"industryType":1,"isAbstract":0,"label":"Liabilities of Business Transferred under Contractual Arrangement, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID008849","value":null},{"children":[],"dataPointId":338,"depth":4,"id":338,"industryType":1,"isAbstract":0,"label":"Other Liabilities, Noncurrent","matched":null,"parentId":275,"reportName":null,"usgid":"USGID008810","value":null}],"dataPointId":275,"depth":3,"id":275,"industryType":1,"isAbstract":0,"label":"Liabilities, Noncurrent, Total","matched":null,"parentId":206,"reportName":null,"usgid":"USGID004843","value":null}],"dataPointId":206,"depth":2,"id":206,"industryType":1,"isAbstract":0,"label":"Liabilities, Total","matched":null,"parentId":205,"reportName":null,"usgid":"USGID004044","value":null},{"children":[],"dataPointId":339,"depth":2,"id":339,"industryType":1,"isAbstract":0,"label":"Commitments and Contingencies","matched":null,"parentId":205,"reportName":null,"usgid":"USGID012783","value":null},{"children":[{"children":[{"children":[],"dataPointId":351,"depth":4,"id":351,"industryType":1,"isAbstract":0,"label":"Preferred Stock, Value, Issued","matched":null,"parentId":350,"reportName":null,"usgid":"USGID010899","value":null},{"children":[],"dataPointId":352,"depth":4,"id":352,"industryType":1,"isAbstract":0,"label":"Preferred Stock, Shares Subscribed but Unissued, Subscriptions Receivable","matched":null,"parentId":350,"reportName":null,"usgid":"USGID008722","value":null},{"children":[],"dataPointId":353,"depth":4,"id":353,"industryType":1,"isAbstract":0,"label":"Common Stock, Value, Issued","matched":null,"parentId":350,"reportName":null,"usgid":"USGID001272","value":null},{"children":[],"dataPointId":354,"depth":4,"id":354,"industryType":1,"isAbstract":0,"label":"Common Stock Held by Subsidiary","matched":null,"parentId":350,"reportName":null,"usgid":"USGID001264","value":null},{"children":[],"dataPointId":355,"depth":4,"id":355,"industryType":1,"isAbstract":0,"label":"Common Stock, Share Subscribed but Unissued, Subscriptions Receivable","matched":null,"parentId":350,"reportName":null,"usgid":"USGID001267","value":null},{"children":[{"children":[],"dataPointId":357,"depth":5,"id":357,"industryType":1,"isAbstract":0,"label":"Additional Paid in Capital, Common Stock","matched":null,"parentId":356,"reportName":null,"usgid":"USGID000137","value":null},{"children":[],"dataPointId":358,"depth":5,"id":358,"industryType":1,"isAbstract":0,"label":"Additional Paid in Capital, Preferred Stock","matched":null,"parentId":356,"reportName":null,"usgid":"USGID000138","value":null}],"dataPointId":356,"depth":4,"id":356,"industryType":1,"isAbstract":0,"label":"Additional Paid in Capital, Total","matched":null,"parentId":350,"reportName":null,"usgid":"USGID000136","value":null},{"children":[],"dataPointId":359,"depth":4,"id":359,"industryType":1,"isAbstract":0,"label":"Other Additional Capital","matched":null,"parentId":350,"reportName":null,"usgid":"USGID009326","value":null},{"children":[],"dataPointId":360,"depth":4,"id":360,"industryType":1,"isAbstract":0,"label":"Treasury Stock, Value","matched":null,"parentId":350,"reportName":null,"usgid":"USGID009870","value":null},{"children":[],"dataPointId":361,"depth":4,"id":361,"industryType":1,"isAbstract":0,"label":"Treasury Stock, Deferred Employee Stock Ownership Plan","matched":null,"parentId":350,"reportName":null,"usgid":"USGID010569","value":null},{"children":[],"dataPointId":362,"depth":4,"id":362,"industryType":1,"isAbstract":0,"label":"Deferred Compensation Equity","matched":null,"parentId":350,"reportName":null,"usgid":"USGID001783","value":null},{"children":[{"children":[],"dataPointId":364,"depth":5,"id":364,"industryType":1,"isAbstract":0,"label":"Accumulated Other Comprehensive Income (Loss), Foreign Currency Translation Adjustment, Net of Tax","matched":null,"parentId":363,"reportName":null,"usgid":"USGID010157","value":null},{"children":[],"dataPointId":365,"depth":5,"id":365,"industryType":1,"isAbstract":0,"label":"Accumulated Other Comprehensive Income (Loss), Available-for-sale Securities Adjustment, Net of Tax","matched":null,"parentId":363,"reportName":null,"usgid":"USGID009965","value":null},{"children":[],"dataPointId":366,"depth":5,"id":366,"industryType":1,"isAbstract":0,"label":"Accumulated Other Comprehensive Income (Loss), Cumulative Changes in Net Gain (Loss) from Cash Flow Hedges, Effect Net of Tax","matched":null,"parentId":363,"reportName":null,"usgid":"USGID009963","value":null},{"children":[],"dataPointId":367,"depth":5,"id":367,"industryType":1,"isAbstract":0,"label":"Accumulated Other Comprehensive Income (Loss), Defined Benefit Pension and Other Postretirement Plans, Net of Tax","matched":null,"parentId":363,"reportName":null,"usgid":"USGID009966","value":null}],"dataPointId":363,"depth":4,"id":363,"industryType":1,"isAbstract":0,"label":"Accumulated Other Comprehensive Income (Loss), Net of Tax, Total","matched":null,"parentId":350,"reportName":null,"usgid":"USGID000090","value":null},{"children":[{"children":[],"dataPointId":369,"depth":5,"id":369,"industryType":1,"isAbstract":0,"label":"Retained Earnings, Appropriated","matched":null,"parentId":368,"reportName":null,"usgid":"USGID006687","value":null},{"children":[],"dataPointId":370,"depth":5,"id":370,"industryType":1,"isAbstract":0,"label":"Retained Earnings, Unappropriated","matched":null,"parentId":368,"reportName":null,"usgid":"USGID006694","value":null}],"dataPointId":368,"depth":4,"id":368,"industryType":1,"isAbstract":0,"label":"Retained Earnings (Accumulated Deficit), Total","matched":null,"parentId":350,"reportName":null,"usgid":"USGID006697","value":null},{"children":[],"dataPointId":371,"depth":4,"id":371,"industryType":1,"isAbstract":0,"label":"Unearned ESOP Shares","matched":null,"parentId":350,"reportName":null,"usgid":"USGID010706","value":null},{"children":[],"dataPointId":372,"depth":4,"id":372,"industryType":1,"isAbstract":0,"label":"Receivable from Officers and Directors for Issuance of Capital Stock","matched":null,"parentId":350,"reportName":null,"usgid":"USGID011521","value":null},{"children":[],"dataPointId":373,"depth":4,"id":373,"industryType":1,"isAbstract":0,"label":"Receivable from Shareholders or Affiliates for Issuance of Capital Stock","matched":null,"parentId":350,"reportName":null,"usgid":"USGID000368","value":null}],"dataPointId":350,"depth":3,"id":350,"industryType":1,"isAbstract":0,"label":"Stockholders' Equity Attributable to Parent, Total","matched":null,"parentId":349,"reportName":null,"usgid":"USGID010707","value":null},{"children":[],"dataPointId":374,"depth":3,"id":374,"industryType":1,"isAbstract":0,"label":"Stockholders' Equity Attributable to Noncontrolling Interest","matched":null,"parentId":349,"reportName":null,"usgid":"USGID004587","value":null}],"dataPointId":349,"depth":2,"id":349,"industryType":1,"isAbstract":0,"label":"Stockholders' Equity, Including Portion Attributable to Noncontrolling Interest, Total","matched":null,"parentId":205,"reportName":null,"usgid":"USGID012283","value":null},{"children":[{"children":[{"children":[],"dataPointId":407,"depth":4,"id":407,"industryType":1,"isAbstract":0,"label":"General Partners' Capital Account, Units Authorized","matched":null,"parentId":406,"reportName":null,"usgid":"USGID008516","value":null},{"children":[],"dataPointId":408,"depth":4,"id":408,"industryType":1,"isAbstract":0,"label":"General Partners' Capital Account, Units Issued","matched":null,"parentId":406,"reportName":null,"usgid":"USGID008517","value":null},{"children":[],"dataPointId":409,"depth":4,"id":409,"industryType":1,"isAbstract":0,"label":"General Partners' Capital Account, Units Outstanding","matched":null,"parentId":406,"reportName":null,"usgid":"USGID003200","value":null}],"dataPointId":406,"depth":3,"id":406,"industryType":1,"isAbstract":0,"label":"General Partners' Capital Account","matched":null,"parentId":405,"reportName":null,"usgid":"USGID003204","value":null},{"children":[{"children":[],"dataPointId":411,"depth":4,"id":411,"industryType":1,"isAbstract":0,"label":"Limited Partners' Capital Account, Units Authorized","matched":null,"parentId":410,"reportName":null,"usgid":"USGID004083","value":null},{"children":[],"dataPointId":412,"depth":4,"id":412,"industryType":1,"isAbstract":0,"label":"Limited Partners' Capital Account, Units Issued","matched":null,"parentId":410,"reportName":null,"usgid":"USGID004084","value":null},{"children":[],"dataPointId":413,"depth":4,"id":413,"industryType":1,"isAbstract":0,"label":"Limited Partners' Capital Account, Units Outstanding","matched":null,"parentId":410,"reportName":null,"usgid":"USGID004085","value":null}],"dataPointId":410,"depth":3,"id":410,"industryType":1,"isAbstract":0,"label":"Limited Partners' Capital Account","matched":null,"parentId":405,"reportName":null,"usgid":"USGID004090","value":null},{"children":[{"children":[],"dataPointId":415,"depth":4,"id":415,"industryType":1,"isAbstract":0,"label":"Preferred Units, Preferred Partners' Capital Account, Units Authorized","matched":null,"parentId":414,"reportName":null,"usgid":"USGID008618","value":null},{"children":[],"dataPointId":416,"depth":4,"id":416,"industryType":1,"isAbstract":0,"label":"Preferred Units, Preferred Partners' Capital Account, Units Issued","matched":null,"parentId":414,"reportName":null,"usgid":"USGID008616","value":null},{"children":[],"dataPointId":417,"depth":4,"id":417,"industryType":1,"isAbstract":0,"label":"Preferred Units, Preferred Partners' Capital Account, Units Outstanding","matched":null,"parentId":414,"reportName":null,"usgid":"USGID008617","value":null}],"dataPointId":414,"depth":3,"id":414,"industryType":1,"isAbstract":0,"label":"Preferred Units, Preferred Partners' Capital Accounts","matched":null,"parentId":405,"reportName":null,"usgid":"USGID008513","value":null},{"children":[{"children":[],"dataPointId":419,"depth":4,"id":419,"industryType":1,"isAbstract":0,"label":"Partners' Capital Deferred Compensation on Restricted Unit","matched":null,"parentId":418,"reportName":null,"usgid":"USGID010588","value":null},{"children":[],"dataPointId":420,"depth":4,"id":420,"industryType":1,"isAbstract":0,"label":"Partners' Capital Other Deferred Compensation","matched":null,"parentId":418,"reportName":null,"usgid":"USGID005308","value":null}],"dataPointId":418,"depth":3,"id":418,"industryType":1,"isAbstract":0,"label":"Partners' Capital Deferred Compensation, Total","matched":null,"parentId":405,"reportName":null,"usgid":"USGID005309","value":null},{"children":[],"dataPointId":421,"depth":3,"id":421,"industryType":1,"isAbstract":0,"label":"Other Partners' Capital","matched":null,"parentId":405,"reportName":null,"usgid":"USGID005315","value":null},{"children":[],"dataPointId":422,"depth":3,"id":422,"industryType":1,"isAbstract":0,"label":"Partners' Capital Allocated for Income Tax and Other Withdrawals","matched":null,"parentId":405,"reportName":null,"usgid":"USGID005306","value":null},{"children":[],"dataPointId":423,"depth":3,"id":423,"industryType":1,"isAbstract":0,"label":"Other Ownership Interests, Capital Account","matched":null,"parentId":405,"reportName":null,"usgid":"USGID005203","value":null}],"dataPointId":405,"depth":2,"id":405,"industryType":1,"isAbstract":0,"label":"Partners' Capital, Total","matched":null,"parentId":205,"reportName":null,"usgid":"USGID005317","value":null}],"dataPointId":205,"depth":1,"id":205,"industryType":1,"isAbstract":0,"label":"Liabilities and Stockholders' Equity, Total","matched":null,"parentId":1,"reportName":null,"usgid":"USGID004007","value":null}],"dataPointId":1,"depth":0,"id":1,"industryType":1,"isAbstract":0,"label":"BalanceSheet","matched":null,"parentId":-1,"reportName":null,"usgid":"ROTBS000001","value":null}
Sunny liu
2009-11-19