| 
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:    (01)
   ## FIBO Ontology Fix
  # Business Facing Types    (02)
  # URI 
<http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes/>
  # URL 
<http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes.rdf>    (03)
  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}
          }
   }    (04)
  # Ownership & Control    (05)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control/>
  # URL 
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control.rdf>    (06)
  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}
          }
   }    (07)
  # Agents    (08)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents.rdf>    (09)
  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}
          }
   }    (010)
  # People    (011)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People.rdf>    (012)
  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}
          }
   }    (013)
  # Agreements    (014)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements.rdf>    (015)
  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}
          }
   }    (016)
  # Contracts    (017)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts.rdf>    (018)
  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}
          }
   }    (019)
  # Jurisdiction    (020)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction.rdf>    (021)
  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}
          }
   }    (022)
  # Legal Core    (023)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore.rdf>    (024)
  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}
          }
   }    (025)
  # Formal Organizations    (026)
  # URI 
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations/>
  # URL 
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations.rdf>    (027)
  INSERT
  {GRAPH 
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations.rdf>     (028)
         {
              ?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}
          }
   }    (029)
  # Organizations    (030)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations/>
  # URL 
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations.rdf>    (031)
  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}
          }
   }    (032)
  # Parties    (033)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Parties/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Parties.rdf>    (034)
  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}
          }
   }    (035)
  # Roles    (036)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles.rdf>    (037)
  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}
          }
   }    (038)
  # Adresses    (039)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses.rdf>    (040)
  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}
          }
   }    (041)
  # Relations    (042)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations.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/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}
          }
   }    (044)
  # Legal Capacity    (045)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity/>
  # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity.rdf>    (046)
  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}
          }
   }    (047)
  # Accounting Equity    (048)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity/>
  # URL 
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity.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/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}
          }
   }    (050)
  # Currency Amount    (051)
  # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount/>
  # URL 
<http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount.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/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}
          }
   }    (053)
  # Ownership    (054)
  # URI 
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership/>
  # URL 
<http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership.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/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}
          }
   }    (056)
  # Legitimate Organizations    (057)
  # URI 
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations/>
  # URL 
<http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations.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/Organizations/LegitimateOrganizations/>.     (059)
<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>    (060)
.    (061)
<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>    (062)
          {
              {?s rdfs:subClassOf ?o}
              UNION
              {?s rdfs:subPropertyOf ?o}
              UNION
              {?s owl:equivalentClass ?o}
              UNION
              {?s owl:equivalentProperty ?o}
              UNION
              {?s a ?o}
          }
   }    (063)
-- 
Regards,    (064)
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    (065)
 smime.p7s Description: S/MIME Cryptographic Signature
 
_________________________________________________________________
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    (01)
 |