--- language: - en license: mit tags: - knowledge-graph - rdf - owl - ontology annotations_creators: - expert-generated pretty_name: FIBO size_categories: - 100K` refers to the common stock of The Coca-Cola Company that is listed on the NYSE. ### 2. **Predicate** (`string`) The predicate of a triple indicates the nature of the relationship between the subject and the object. It describes a specific property, characteristic, or connection of the subject. In our example: `` signifies that the financial instrument (subject) is traded on a particular exchange (object). ### 3. **Object** (`string`) The object of a triple is the entity or value that is associated with the subject via the predicate. It can be another financial concept, a trading platform, or any other related entity. In the context of our example: `` represents the New York Stock Exchange where the aforementioned Coca-Cola common stock is traded. #### Continued Here is an another example of a triple in the dataset: - Subject: `""` - Predicate: `"` - Object: `""` This triple represents the statement that the market individual [ServiceProvider-L-JEUVK5RWVJEN8W0C9M24](https://spec.edmcouncil.org/fibo/ontology/FBC/FunctionalEntities/MarketsIndividuals/ServiceProvider-L-JEUVK5RWVJEN8W0C9M24) has a type of [FunctionalEntity](https://spec.edmcouncil.org/fibo/ontology/BE/FunctionalEntities/FunctionalEntities/FunctionalEntity). #### Note: The dataset contains example individuals from the ontology as reference points. These examples provide a structured framework for understanding the relationships and entities within the financial domain. However, the individuals included are not exhaustive. With advancements in Large Language Models, especially Retrieval Augmented Generation (RAG), there's potential to generate and expand upon these examples, enriching the dataset with more structured data and insights. ### FIBO Viewer Use the [FIBO Viewer](https://spec.edmcouncil.org/fibo/ontology) to explore the ontology on the web. One of the coolest features about FIBO is that entities with a prefix of https://spec.edmcouncil.org/fibo/ontology/ can be looked up in the web just by opening its URL in a browser or in any HTTP client. ## Ideas for Deriving Graph Neural Network Features from FIBO: Graph Neural Networks (GNNs) have emerged as a powerful tool for machine learning on structured data. FIBO, with its structured ontology, can be leveraged to derive features for GNNs. ### Node Features: - **rdf:type**: Each entity in FIBO has one or more associated `rdf:type`, ``, that indicates its class or category. This can serve as a primary node feature to encode. - **Entity Attributes**: Attributes of each entity, such as names or descriptions, can be used as additional node features. Consider embedding descriptions using a semantic text embedding model. ### Edge Features: - **RDF Predicates**: The relationships between entities in FIBO are represented using RDF predicates. These predicates can serve as edge features in a GNN, capturing the nature of the relationship between nodes. ### Potential Applications: 1. **Entity Classification**: Using the derived node and edge features, GNNs can classify entities into various financial categories, enhancing the granularity of financial data analysis. 2. **Relationship Prediction**: GNNs can predict potential relationships between entities, aiding in the discovery of hidden patterns or correlations within the financial data. 3. **Anomaly Detection**: By training GNNs on the structured data from FIBO and interlinked financial datasets, anomalies or irregularities in them may be detected, ensuring data integrity and accuracy. ### Acknowledgements We extend our sincere gratitude to the FIBO contributors for their meticulous efforts in knowledge representation. Their expertise and dedication have been instrumental in shaping a comprehensive and insightful framework that serves as a cornerstone for innovation in the financial industry. If you are interested in modeling the financial industry you should consider [contributing to FIBO](https://github.com/edmcouncil/fibo/blob/master/CONTRIBUTING.md). ### Citation ```bibtex @misc{fibo2023Q3, title={Financial Industry Business Ontology (FIBO)}, author={Object Management Group, Inc. and EDM Council, Inc. and Various Contributors}, year={2023}, note={Available as OWL 2 ontologies and UML models compliant with the Semantics for Information Modeling and Federation (SMIF) draft specification. Contributions are open on GitHub, consult the repository for a list of contributors.}, howpublished={\url{https://spec.edmcouncil.org/fibo/}}, abstract={The Financial Industry Business Ontology (FIBO) is a collaborative effort to standardize the language used to define the terms, conditions, and characteristics of financial instruments; the legal and relationship structure of business entities; the content and time dimensions of market data; and the legal obligations and process aspects of corporate actions.}, license={MIT License, \url{https://opensource.org/licenses/MIT}} } ```