.. sidebar:: .. list-table:: **Ontology Card** :header-rows: 0 * - **Domain** - News and Media * - **Category** - Business News * - **Current Version** - 0.5 * - **Last Updated** - 2014-11-09 * - **Creator** - https://www.bbc.co.uk/blogs/internet/authors/Jeremy_Tarling, https://uk.linkedin.com/in/amaalmohamed * - **License** - Creative Commons 4.0 * - **Format** - ttl * - **Download** - `Download BBC Business News Ontology (BBCBusiness) `_ BBC Business News Ontology (BBCBusiness) ======================================================================================================== The BBC Business News Ontology (BBCBusiness) is a domain-specific ontology designed to represent concepts, entities, and relationships relevant to business news coverage. It provides a structured vocabulary for describing companies, markets, financial instruments, economic indicators, business events, and regulatory developments. BBCBusiness enables semantic annotation of business news articles, supporting advanced search, aggregation, and analytics across news platforms. The ontology is designed for interoperability with other BBC ontologies and external vocabularies, facilitating integration with financial data sources and knowledge graphs. By providing a standardized framework, BBCBusiness supports automated content tagging, trend analysis, and personalized news delivery in business journalism. The ontology is actively maintained and extended to reflect changes in the global business landscape and emerging topics in finance and economics. **Example Usage**: Annotate a business news article with BBCBusiness terms to specify the companies involved, market sectors, financial events (e.g., mergers, IPOs), and economic indicators, enabling semantic search and cross-platform business news analysis. Metrics & Statistics -------------------------- .. tab:: Graph .. list-table:: Graph Statistics :widths: 50 50 :header-rows: 0 * - **Total Nodes** - 50 * - **Total Edges** - 95 * - **Root Nodes** - 0 * - **Leaf Nodes** - 35 :: .. tab:: Coverage .. list-table:: Knowledge Coverage Statistics :widths: 50 50 :header-rows: 0 * - **Classes** - 5 * - **Individuals** - 0 * - **Properties** - 10 :: .. tab:: Hierarchy .. list-table:: Hierarchical Metrics :widths: 50 50 :header-rows: 0 * - **Maximum Depth** - 0 * - **Minimum Depth** - 0 * - **Average Depth** - 0.00 * - **Depth Variance** - 0.00 :: .. tab:: Breadth .. list-table:: Breadth Metrics :widths: 50 50 :header-rows: 0 * - **Maximum Breadth** - 0 * - **Minimum Breadth** - 0 * - **Average Breadth** - 0.00 * - **Breadth Variance** - 0.00 :: .. tab:: LLMs4OL .. list-table:: LLMs4OL Dataset Statistics :widths: 50 50 :header-rows: 0 * - **Term Types** - 0 * - **Taxonomic Relations** - 5 * - **Non-taxonomic Relations** - 0 * - **Average Terms per Type** - 0.00 :: Usage Example ---------------- Use the following code to import this ontology programmatically: .. code-block:: python from ontolearner.ontology import BBCBusiness ontology = BBCBusiness() ontology.load("path/to/BBCBusiness-ontology.ttl") # Extract datasets data = ontology.extract() # Access specific relations term_types = data.term_typings taxonomic_relations = data.type_taxonomies non_taxonomic_relations = data.type_non_taxonomic_relations