tq.ttl 5.08 KB
# baseURI: http://topbraid.org/examples/tq
# imports: http://schema.rdfs.org/all.rdf

@prefix owl:     <http://www.w3.org/2002/07/owl#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema:  <http://schema.org/> .
@prefix tq:      <http://topbraid.org/examples/tq#> .
@prefix vocab.sindice.net:  <http://vocab.sindice.net/> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .

<http://topbraid.org/examples/tq>
      rdf:type owl:Ontology ;
      owl:imports <http://schema.rdfs.org/all.rdf> ;
      owl:versionInfo "Created with TopBraid Composer"^^xsd:string .

tq:Australia
      rdf:type schema:Country ;
      rdfs:label "Australia"^^xsd:string .

tq:DarwinFritzsch
      rdf:type schema:Person ;
      rdfs:label "Darwin Fritzsch"^^xsd:string ;
      schema:image <http://knublauch.com/images/Darwin.200.jpg> .

tq:HolgerKnublauch
      rdf:type schema:Person ;
      rdfs:label "Holger Knublauch"^^xsd:string ;
      schema:birthDate "1971-07-07"^^xsd:date ;
      schema:children tq:DarwinFritzsch , tq:RubyFritzsch ;
      schema:colleagues tq:IrenePolikoff , tq:RalphHodgson , tq:RobertCoyne ;
      schema:email "[email protected]"^^xsd:string , "[email protected]"^^xsd:string ;
      schema:homeLocation tq:HomeLocationHK ;
      schema:image <http://www.topquadrant.com/images/headshots/Knublauch_SM.jpg> ;
      schema:telephone "+61 7 4057 4750"^^xsd:string ;
      schema:url "http://knublauch.com"^^xsd:string ;
      schema:worksFor tq:TopQuadrant .

tq:HomeLocationHK
      rdf:type schema:SingleFamilyResidence ;
      rdfs:label "Home location HK"^^xsd:string ;
      schema:address
              [ rdf:type schema:PostalAddress ;
                rdfs:label "Postal address HK"^^xsd:string ;
                schema:addressCountry
                        tq:Australia ;
                schema:addressLocality
                        "Kewarra Beach"^^xsd:string ;
                schema:addressRegion
                        "QLD"^^xsd:string ;
                schema:postalCode "4879"^^xsd:string ;
                schema:streetAddress
                        "3 Teewah Close"^^xsd:string
              ] ;
      schema:geo
              [ rdf:type schema:GeoCoordinates ;
                schema:latitude "-16.79123"^^xsd:float ;
                schema:longitude "145.68437"^^xsd:float
              ] .

tq:IrenePolikoff
      rdf:type schema:Person ;
      rdfs:label "Irene Polikoff"^^xsd:string ;
      schema:colleagues tq:HolgerKnublauch , tq:RalphHodgson , tq:RobertCoyne ;
      schema:image <http://www.topquadrant.com/images/headshots/Polikoff_SM.jpg> ;
      schema:worksFor tq:TopQuadrant .

tq:RalphHodgson
      rdf:type schema:Person ;
      rdfs:label "Ralph Hodgson"^^xsd:string ;
      schema:colleagues tq:HolgerKnublauch , tq:IrenePolikoff , tq:RobertCoyne ;
      schema:image <http://www.topquadrant.com/images/headshots/Hodgson_SM.jpg> ;
      schema:worksFor tq:TopQuadrant .

tq:RobertCoyne
      rdf:type schema:Person ;
      rdfs:label "Robert Coyne"^^xsd:string ;
      schema:colleagues tq:HolgerKnublauch , tq:IrenePolikoff , tq:RalphHodgson ;
      schema:image <http://www.topquadrant.com/images/headshots/Coyne_SM.jpg> ;
      schema:worksFor tq:TopQuadrant .

tq:RubyFritzsch
      rdf:type schema:Person ;
      rdfs:label "Ruby Fritzsch"^^xsd:string ;
      schema:image <http://knublauch.com/images/Ruby.200.jpg> .

tq:SemanticTechnologyTraining
      rdf:type schema:EducationEvent ;
      rdfs:label "Semantic technology training"^^xsd:string ;
      schema:description "Now in its 7th Year, TopQuadrant in collaboration with Jim Hendler is offering a program of Public and On-Site trainings and workshops on Semantic Web technologies and use of TopBraid Suite capabilities for semantic modeling, querying and application development."^^xsd:string ;
      schema:endDate "2011-12-12"^^xsd:date ;
      schema:image <http://www.topquadrant.com/images/SemWebWorkOnt-R2.jpg> ;
      schema:location tq:WashingtonDCArea ;
      schema:startDate "2011-12-05"^^xsd:date ;
      schema:url "http://www.topquadrant.com/training/intro.html"^^xsd:string .

tq:TBC-ME
      rdf:type schema:Product ;
      rdfs:label "TopBraid Composer Maestro Edition"^^xsd:string ;
      schema:image <https://si0.twimg.com/profile_images/93992802/TQLogo.png> ;
      schema:manufacturer tq:TopQuadrant .

tq:TBC-ME-Offer
      rdf:type schema:Offer ;
      rdfs:label "TBC-ME-Offer"^^xsd:string ;
      schema:itemOffered tq:TBC-ME ;
      schema:price "3000.00"^^xsd:float ;
      schema:priceCurrency
              "USD"^^xsd:string ;
      schema:seller tq:TopQuadrant .

tq:TopQuadrant
      rdf:type schema:Corporation ;
      rdfs:label "TopQuadrant"^^xsd:string ;
      schema:employees tq:HolgerKnublauch , tq:IrenePolikoff , tq:RalphHodgson ;
      schema:founders tq:IrenePolikoff , tq:RalphHodgson , tq:RobertCoyne ;
      schema:image <https://si0.twimg.com/profile_images/93992802/TQLogo.png> ;
      schema:url "http://topquadrant.com"^^xsd:string .

tq:WashingtonDCArea
      rdf:type schema:City ;
      rdfs:label "Washington DC area"^^xsd:string .