My sense is that a Financial Industry ontology should be able to
consume/describe/apply the information models if the FIX protocol
association. FIX won't create an ontology, but any ontology that is unable
to work with FIX is likely incomplete.    (01)
tc    (02)
-----Original Message-----
From: ontolog-forum-bounces@xxxxxxxxxxxxxxxx
[mailto:ontolog-forum-bounces@xxxxxxxxxxxxxxxx] On Behalf Of Kingsley Idehen
Sent: Monday, August 18, 2014 7:35 PM
To: ontolog-forum@xxxxxxxxxxxxxxxx
Subject: Re: [ontolog-forum] A Financial Industry Business Ontology from OMG    (03)
On 8/18/14 12:25 AM, Kingsley Idehen wrote:
> All,
>
> Here's a page that enables easy exploration of the OMG's Financial 
> Industry Business Ontology (FIBO) [1].
>
> A you might notice, the ontology is missing relations that associate 
> the ontology (itself) with the entity and relation types it describes, 
> hence the looping you might experience as you follow the owl:imports 
> relation objects. This problem can be resolved by introducing 
> rdfs:isDefinedBy, wdrs:describedby, and xhv:describes relations.
>
> Links:
>
> [1] http://linkeddata.uriburner.com/c/9C5GMJC -- Starting page for 
> easy navigation across hyperlink based relations (aka. RDF based 
> Linked Data) [2] http://linkeddata.uriburner.com/c/9CS7WMCR -- Control 
> Ontology [3] http://linkeddata.uriburner.com/c/9CT36LPZ -- Agents 
> Ontology [4] http://linkeddata.uriburner.com/c/9CUL2LP4 -- People 
> Ontology .
>
I've addressed the issues above, in regards to missing relations via a
SPARQL 1.1 query collection. Here's the dump of what I applied:    (04)
   ## FIBO Ontology Fix
  # Business Facing Types    (05)
  # URI
<http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes/>
  # URL
<http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes.rdf>    (06)
  INSERT
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes/> a
owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes.rdf>
<http://open.vocab.org/terms/describes>
?s .
          }
  }
  WHERE
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (07)
  # Ownership & Control    (08)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control/>
  # URL
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control.rdf>    (09)
  INSERT
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control/> a
owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control/>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (010)
  # Agents    (011)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents.rdf>    (012)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents/> a
owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (013)
  # People    (014)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People.rdf>    (015)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People/> a
owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (016)
  # Agreements    (017)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements.rdf>    (018)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements/> a
owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (019)
  # Contracts    (020)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts.rdf>    (021)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts/> a owl:Ontology
.
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (022)
  # Jurisdiction    (023)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction.rdf>    (024)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction/> a owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (025)
  # Legal Core    (026)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore.rdf>    (027)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore/> a owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (028)
  # Formal Organizations    (029)
  # URI
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations/>
  # URL
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations.rdf
>    (030)
  INSERT
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations.rdf
>     (031)
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations/>
.
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations/>
a owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations.rdf
>
.
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations.rdf
>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations.rdf
>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (032)
  # Organizations    (033)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations/>
  # URL
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations.rdf>    (034)
  INSERT
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations/> a
owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (035)
  # Parties    (036)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Parties/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Parties.rdf>    (037)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Parties.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Parties/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations/> a
owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Parties.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Parties.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (038)
  # Roles    (039)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles.rdf>    (040)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles/> a owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles.rdf>  .
<http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (041)
  # Adresses    (042)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses.rdf>    (043)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses/>.
<http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses/> a owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (044)
  # Relations    (045)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations.rdf>    (046)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations/>.
<http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations/> a owl:Ontology
.
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (047)
  # Legal Capacity    (048)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity.rdf>    (049)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity/>.
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity/> a owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (050)
  # Accounting Equity    (051)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity/>
  # URL
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity.rdf>    (052)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity/> a
owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (053)
  # Currency Amount    (054)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount/>
  # URL
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount.rdf>    (055)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount/> a
owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount.rdf> .
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount.rdf>
<http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (056)
  # Ownership    (057)
  # URI
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership/>
  # URL
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership.rdf>    (058)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership/> .
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership/> a
owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership.rdf>.
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership.rdf>
<http://open.vocab.org/terms/describes>
?s .
          }
  }
  WHERE
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership.rdf>
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (059)
  # Legitimate Organizations    (060)
  # URI
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations
/>
  # URL
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations
.rdf>     (061)
  INSERT
  {GRAPH <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity.rdf>
         {
              ?s rdfs:isDefinedBy
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations
/>.     (062)
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations
/>
<http://open.vocab.org/terms/defines> ?s.
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations
/>
a owl:Ontology .
              ?s <http://www.w3.org/2007/05/powder-s#describedby>
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations
.rdf>
.    (063)
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations
.rdf> <http://open.vocab.org/terms/describes> ?s .
          }
  }
  WHERE
  {GRAPH
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations
.rdf>     (064)
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (065)
--
Regards,    (066)
Kingsley Idehen 
Founder & CEO
OpenLink Software
Company Web: http://www.openlinksw.com
Personal Weblog 1: http://kidehen.blogspot.com Personal Weblog 2:
http://www.openlinksw.com/blog/~kidehen
Twitter Profile: https://twitter.com/kidehen
Google+ Profile: https://plus.google.com/+KingsleyIdehen/about
LinkedIn Profile: http://www.linkedin.com/in/kidehen
Personal WebID: http://kingsley.idehen.net/dataspace/person/kidehen#this    (067)
_________________________________________________________________
Message Archives: http://ontolog.cim3.net/forum/ontolog-forum/  
Config Subscr: http://ontolog.cim3.net/mailman/listinfo/ontolog-forum/  
Unsubscribe: mailto:ontolog-forum-leave@xxxxxxxxxxxxxxxx
Shared Files: http://ontolog.cim3.net/file/
Community Wiki: http://ontolog.cim3.net/wiki/ 
To join: http://ontolog.cim3.net/cgi-bin/wiki.pl?WikiHomePage#nid1J    (068)
 |