On 8/19/14 2:44 PM, Toby Considine wrote:
> 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.
>
> tc (01)
There is no such thing as a "complete ontology" . Please do not make
such pursuits the basis for anything. (02)
Kingsley
>
>
> -----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
>
> 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:
>
> ## FIBO Ontology Fix
> # Business Facing Types
>
> # URI
> <http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes/>
> # URL
> <http://www.omg.org/spec/EDMC-FIBO/FND/Utilities/BusinessFacingTypes.rdf>
>
> 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}
> }
> }
>
>
> # Ownership & Control
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control/>
> # URL
> <http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Control.rdf>
>
> 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}
> }
> }
>
>
> # Agents
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents/>
> # URL <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/Agents.rdf>
>
> 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}
> }
> }
>
> # People
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People/>
> # URL <http://www.omg.org/spec/EDMC-FIBO/FND/AgentsAndPeople/People.rdf>
>
> 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}
> }
> }
>
> # Agreements
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements/>
> # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Agreements.rdf>
>
> 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}
> }
> }
>
>
> # Contracts
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts/>
> # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Agreements/Contracts.rdf>
>
> 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}
> }
> }
>
> # Jurisdiction
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction/>
> # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Law/Jurisdiction.rdf>
>
> 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}
> }
> }
>
> # Legal Core
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore/>
> # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCore.rdf>
>
> 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}
> }
> }
>
> # Formal Organizations
>
> # URI
> <http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations/>
> # URL
> <http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations.rdf
>
> INSERT
> {GRAPH
> <http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/FormalOrganizations.rdf
> {
> ?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}
> }
> }
>
> # Organizations
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations/>
> # URL
> <http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/Organizations.rdf>
>
> 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}
> }
> }
>
> # Parties
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Parties/>
> # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Parties.rdf>
>
> 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}
> }
> }
>
> # Roles
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles/>
> # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Parties/Roles.rdf>
>
> 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}
> }
> }
>
> # Adresses
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses/>
> # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Places/Addresses.rdf>
>
> 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}
> }
> }
>
> # Relations
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations/>
> # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Relations/Relations.rdf>
>
> 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}
> }
> }
>
> # Legal Capacity
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity/>
> # URL <http://www.omg.org/spec/EDMC-FIBO/FND/Law/LegalCapacity.rdf>
>
> 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}
> }
> }
>
> # Accounting Equity
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity/>
> # URL
> <http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/AccountingEquity.rdf>
>
> 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}
> }
> }
>
> # Currency Amount
>
> # URI <http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount/>
> # URL
> <http://www.omg.org/spec/EDMC-FIBO/FND/Accounting/CurrencyAmount.rdf>
>
> 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}
> }
> }
>
> # Ownership
>
> # URI
> <http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership/>
> # URL
> <http://www.omg.org/spec/EDMC-FIBO/FND/OwnershipAndControl/Ownership.rdf>
>
> 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}
> }
> }
>
> # Legitimate Organizations
>
> # URI
> <http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations
> />
> # URL
> <http://www.omg.org/spec/EDMC-FIBO/FND/Organizations/LegitimateOrganizations
> .rdf>
>
>
> 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
> />.
>
> <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>
> .
>
> <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>
>
> {
> {?s rdfs:subClassOf ?o}
> UNION
> {?s rdfs:subPropertyOf ?o}
> UNION
> {?s owl:equivalentClass ?o}
> UNION
> {?s owl:equivalentProperty ?o}
> UNION
> {?s a ?o}
> }
> }
>
> --
> Regards,
>
> 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
>
>
>
>
> _________________________________________________________________
> 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
>
>
> (03)
--
Regards, (04)
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 (05)
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)
|