Note:
ODS | SIOC | Sample Value |
Data Space Class | Class | sioc:Container |
Data Space SubClass? | SubClass? | sioct:Weblog |
Data Space Generic Instance | Type | sioc:Container |
Data Space Type Specific Instance | Type | sioct:Weblog |
Data Space Instance Identifier (URI) | ID | "<http://demo.openlinksw.com/dataspace/demo/weblog/myblog#id>" |
* attachment * content * has_container * has_creator * has_reply * id * link * links_to * reply_of * topic (tags)
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> select distinct ?attribute where { ?forum a sioct:Weblog . ?forum sioc:container_of ?post . ?post ?attribute ?o } order by ?attribute
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select DISTINCT ?forum_name, ?post, ?title ?cr ?url where { ?forum a sioct:Weblog . ?forum sioc:id ?forum_name. ?forum sioc:scope_of ?role. ?role sioc:function_of <http://demo.openlinksw.com/dataspace/demo#this> . ?forum sioc:container_of ?post. optional{?post dct:title ?title}. optional{?post dcc:created ?cr}. optional{?post sioc:link ?url}. } order by DESC (?cr)
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix svc: <http://rdfs.org/sioc/services#> prefix sioct: <http://rdfs.org/sioc/types#> select ?endp, ?proto where { ?forum a sioct:Weblog . ?forum svc:has_service ?svc . ?svc svc:service_endpoint ?endp . ?svc svc:service_protocol ?proto . } order by ?proto
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> prefix sioct: <http://rdfs.org/sioc/types#> select ?forum_name, ?post, ?title, ?cr, ?content, ?url where { ?forum a sioct:Weblog . ?forum sioc:id ?forum_name. ?forum sioc:scope_of ?role. ?role sioc:function_of <http://demo.openlinksw.com/dataspace/demo#this> . ?forum sioc:container_of ?post. optional{?post dct:title ?title }. optional{?post dcc:created ?cr }. optional{?post sioc:link ?url }. optional{?post sioc:links_to ?links_to }. optional{?post sioc:content ?content} }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select ?forum_name, ?post, ?title, ?cr, ?content, ?url, ?links_to where { ?forum a sioct:Weblog . ?forum sioc:id ?forum_name. ?forum sioc:scope_of ?role. ?role sioc:function_of <http://demo.openlinksw.com/dataspace/demo#this> . ?forum sioc:container_of ?post. optional{ ?post dct:title ?title }. optional{ ?post dcc:created ?cr }. optional{ ?post sioc:link ?url }. optional{ ?post sioc:links_to ?links_to }. optional{?post sioc:content ?content} }
ODS | SIOC | Sample Value |
Data Space Class | Class | sioc:Container |
Data Space SubClass? | SubClass? | sioct:Wiki |
Data Space Generic Instance | Type | sioc:Container |
Data Space Type Specific Instance | Type | sioct:Wiki |
Data Space Instance Identifier (URI) | ID | "<http://demo.openlinksw.com/dataspace/demo/wiki/mywiki#id>" |
* attachment * content * has_container * has_creator * id * link * links_to * reply_of (TBD - for older db is not supported) * topic (tags) * has_reply
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> select distinct ?attribute where { ?forum rdf:type sioct:Wiki . ?forum sioc:container_of ?post . ?post ?attribute ?o } order by ?attribute
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select distinct ?forum_name, ?post, ?title, ?link, ?links_to, ?cr where { ?forum rdf:type sioct:Wiki . ?forum sioc:id ?forum_name. ?forum sioc:container_of ?post . ?post dct:title ?title. optional {?post dcc:created ?cr}. optional {?post sioc:link ?link} . optional {?post sioc:links_to ?links_to} . } order by ?title
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select ?forum_name, ?post, ?title, ?link, ?cr, ?content where { ?forum rdf:type sioct:Wiki . ?forum sioc:id ?forum_name. ?forum sioc:container_of ?post . ?post dct:title ?title. optional {?post dcc:created ?cr}. optional {?post sioc:link ?link} . optional {?post sioc:content ?content}. }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select ?forum_name, ?post, ?title, ?link, ?links_to, ?cr, ?content where { ?forum rdf:type sioct:Wiki . ?forum sioc:id ?forum_name. ?forum sioc:container_of ?post . ?post dct:title ?title. optional {?post dcc:created ?cr}. optional {?post sioc:link ?link} . optional {?post sioc:links_to ?links_to} . optional {?post sioc:content ?content}. }
prefix svc: <http://rdfs.org/sioc/services#> prefix sioct: <http://rdfs.org/sioc/types#> select ?endp , ?proto where { ?forum a sioct:Wiki. ?forum svc:has_service ?svc . ?svc svc:service_endpoint ?endp . ?svc svc:service_protocol ?proto . } order by ?proto
ODS | SIOC | Sample Value |
Data Space Class | Class | sioc:Container |
Data Space SubClass? | SubClass? | sioct:Calendar |
Data Space Generic Instance | Type | sioc:Container |
Data Space Type Specific Instance | Type | sioct:Calendar |
Data Space Instance Identifier (URI) | ID | "<http://demo.openlinksw.com/dataspace/demo/calendar/mycalendar#id>" |
* content * has_container * has_creator * id * link * topic (tags)
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> select distinct ?attribute where { ?forum rdf:type sioct:Calendar . ?forum sioc:container_of ?post . ?post ?attribute ?o } order by ?attribute
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> prefix calr: <http://www.w3.org/2002/12/cal#> select distinct ?forum_name, ?post, ?title, ?link, ?cr where { ?forum rdf:type sioct:Calendar . ?forum sioc:id ?forum_name. ?forum sioc:container_of ?post . ?post rdf:type calr:vevent . ?post dct:title ?title. optional {?post dcc:created ?cr}. optional {?post sioc:link ?link} . }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> prefix calr: <http://www.w3.org/2002/12/cal#> select ?forum_name, ?post, ?title, ?link, ?links_to, ?cr, ?content where { ?forum rdf:type sioct:Calendar. ?forum sioc:id ?forum_name. ?forum sioc:container_of ?post . ?post rdf:type calr:vevent . optional {?post dct:title ?title}. optional {?post dcc:created ?cr}. optional {?post sioc:link ?link} . optional {?post sioc:links_to ?links_to} . optional {?post sioc:content ?content}. }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> prefix calr: <http://www.w3.org/2002/12/cal#> select distinct ?forum_name, ?post, ?url, ?summary, ?descr, ?location where { ?forum rdf:type sioct:Calendar . ?forum sioc:id ?forum_name. ?forum sioc:container_of ?post . ?post rdf:type calr:vevent . optional{?post dct:title ?title}. optional{?post calr:url ?url }. optional{?post calr:summary ?summary }. optional{?post calr:description ?descr }. optional{?post calr:dtstart ?start}. optional{?post calr:location ?location}. }
ODS | SIOC | Sample Value |
Data Space Class | Class | sioc:Container |
Data Space SubClass? | SubClass? | sioct:SubscriptionList? |
Data Space Generic Instance | Type | sioc:Container |
Data Space Type Specific Instance | Type | sioct:SubscriptionList? |
Data Space Instance Identifier (URI) | ID | "<http://demo.openlinksw.com/dataspace/demo/subscriptions/DemoFeeds#id>" |
* content * has_container * has_creator * has_reply * id * link * links_to * reply_of * topic (tags)
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> select distinct ?attribute where { ?forum rdf:type sioct:SubscriptionList . ?forum sioc:parent_of ?parentf . ?parentf sioc:container_of ?post . ?post ?attribute ?o } order by ?attribute
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select ?forum_name, ?channel, ?item_title, ?created where { ?forum a sioct:SubscriptionList; sioc:id ?forum_name. ?forum sioc:scope_of ?role. ?role sioc:function_of <http://demo.openlinksw.com/dataspace/demo#this> . ?forum sioc:parent_of ?channel . ?channel sioc:container_of ?post . optional{ ?post dct:title ?item_title }. optional{ ?post dcc:created ?created }. }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select ?forum_name, ?channel, ?item_title, ?url, ?created, ?content where { ?forum a sioct:SubscriptionList; sioc:id ?forum_name. ?forum sioc:scope_of ?role. ?role sioc:function_of <http://demo.openlinksw.com/dataspace/demo#this> . ?forum sioc:parent_of ?channel . ?channel sioc:container_of ?post . optional{ ?post dct:title ?item_title }. optional{ ?post sioc:links_to ?url }. optional{ ?post dcc:created ?created }. optional{ ?post sioc:content ?content}. }
ODS | SIOC | Sample Value |
Data Space Class | Class | sioc:Container |
Data Space SubClass? | SubClass? | sioct:BookmarkFolder? |
Data Space Generic Instance | Type | sioc:Container |
Data Space Type Specific Instance | Type | sioct:BookmarkFolder? |
Data Space Instance Identifier (URI) | ID | "<http://demo.openlinksw.com/dataspace/demo/bookmark/mybookmarks#id>" |
* content * has_container * has_creator * id * link * links_to * topic (tags)
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> select distinct ?attribute where { ?forum a sioct:BookmarkFolder . ?forum sioc:container_of ?post . ?post ?attribute ?o } order by ?attribute
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix dct: <http://purl.org/dc/elements/1.1/> select distinct ?forum_name, ?post, ?title, ?link, ?url where { ?forum a sioct:BookmarkFolder . ?forum sioc:id ?forum_name. ?forum sioc:scope_of ?role. ?role sioc:function_of <http://demo.openlinksw.com/dataspace/demo#this> . ?forum sioc:container_of ?post . optional{ ?post dct:title ?title }. optional{ ?post sioc:link ?link } . optional{ ?post sioc:links_to ?url } } order by ?title
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix svc: <http://rdfs.org/sioc/services#> prefix sioct: <http://rdfs.org/sioc/types#> select ?endp , ?proto where { ?forum a sioct:BookmarkFolder . ?forum svc:has_service ?svc . ?svc svc:service_endpoint ?endp . ?svc svc:service_protocol ?proto . } order by ?proto
ODS | SIOC | Sample Value |
Data Space Class | Class | sioc:Container |
Data Space SubClass? | SubClass? | sioct:AddressBook? |
Data Space Generic Instance | Type | sioc:Container |
Data Space Type Specific Instance | Type | sioct:AddressBook? |
Data Space Instance Identifier (URI) | ID | "<http://demo.openlinksw.com/dataspace/demo/addressbook/myAddressBook#id>" |
* has_container * has_creator * id * link * topic
prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> select distinct ?attribute where { ?forum a sioct:AddressBook . ?forum sioc:container_of ?post . ?post ?attribute ?o } order by ?attribute
prefix sioct: <http://rdfs.org/sioc/types#> prefix sioc: <http://rdfs.org/sioc/ns#> select distinct ?attribute where { ?s a sioct:AddressBook; sioc:scope_of ?role. ?role sioc:function_of ?member. ?member ?attribute ?o }
prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix foaf: <http://xmlns.com/foaf/0.1/> select ?member, ?id from <http://demo.openlinksw.com/dataspace> where { ?s a sioct:AddressBook; sioc:scope_of ?role. ?role sioc:function_of ?member. ?member sioc:id ?id. }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix foaf: <http://xmlns.com/foaf/0.1/> select ?member, ?knows where { ?s a sioct:AddressBook; sioc:scope_of ?role. ?role sioc:function_of ?member. ?member foaf:knows ?knows }
prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix vcd: <http://www.w3.org/2001/vcard-rdf/3.0#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select ?FN ?nick ?address ?title ?created ?link ?topic where { ?forum a sioct:AddressBook . ?forum sioc:container_of ?post . optional {?post vcd:FN ?FN }. optional {?post vcd:NICKNAME ?nick}. optional {?post vcd:ADR ?address}. optional {?post dct:title ?title}. optional {?post dcc:created ?created}. optional {?post sioc:link ?link }. optional {?post sioc:topic ?topic } . }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix svc: <http://rdfs.org/sioc/services#> prefix sioct: <http://rdfs.org/sioc/types#> select ?endp , ?proto where { ?forum a sioct:AddressBook . ?forum svc:has_service ?svc . ?svc svc:service_endpoint ?endp . ?svc svc:service_protocol ?proto . } order by ?proto
ODS | SIOC | Sample Value |
Data Space Class | Class | sioc:Container |
Data Space SubClass? | SubClass? | sioct:SurveyCollection? |
Data Space Generic Instance | Type | sioc:Container |
Data Space Type Specific Instance | Type | sioct:SurveyCollection? |
Data Space Instance Identifier (URI) | ID | "<http://demo.openlinksw.com/dataspace/demo/polls/mypolls#id>" |
* content * has_container * has_creator * id * link * topic (tags)
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> select distinct ?attribute where { ?forum a sioct:SurveyCollection. ?forum sioc:container_of ?post . ?post ?attribute ?o } order by ?attribute
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select DISTINCT ?forum_name, ?post, ?title ?cr ?url where { ?forum a sioct:SurveyCollection. ?forum sioc:id ?forum_name. ?forum sioc:scope_of ?role. ?role sioc:function_of <http://demo.openlinksw.com/dataspace/demo#this> . ?forum sioc:container_of ?post. optional{ ?post dct:title ?title }. optional{ ?post dcc:created ?cr }. optional{ ?post sioc:link ?url }. } order by DESC (?cr)
ODS | SIOC | Sample Value |
Data Space Class | Class | sioc:Container |
Data Space SubClass? | SubClass? | sioct:ImageGallery? |
Data Space Generic Instance | Type | sioc:Container |
Data Space Type Specific Instance | Type | sioct:ImageGallery? |
Data Space Instance Identifier (URI) | ID | "<http://demo.openlinksw.com/dataspace/demo/photos/MyGallery#id>" |
* content * has_container * has_creator * id * link * topic (tags) * links_to (TBD) * reply_of (TBD) * has_reply (TBD)
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> select distinct ?attribute where { ?forum rdf:type sioct:ImageGallery . ?forum sioc:container_of ?post . ?post ?attribute ?o } order by ?attribute
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select ?forum_name, ?post, ?title, ?link, ?cr, ?content where { ?forum rdf:type sioct:ImageGallery . ?forum sioc:id ?forum_name. ?forum sioc:container_of ?post . optional {?post dct:title ?title }. optional {?post dcc:created ?cr}. optional {?post sioc:link ?link} . optional {?post sioc:content ?content} }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix svc: <http://rdfs.org/sioc/services#> prefix sioct: <http://rdfs.org/sioc/types#> select ?endp , ?proto where { ?forum a sioct:ImageGallery . ?forum svc:has_service ?svc . ?svc svc:service_endpoint ?endp . ?svc svc:service_protocol ?proto . } order by ?proto
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select ?forum_name, ?post, ?title, ?link, ?links_to, ?cr, ?content where { ?forum rdf:type sioct:ImageGallery . ?forum sioc:id ?forum_name. ?forum sioc:container_of ?post . optional {?post dct:title ?title}. optional {?post dcc:created ?cr}. optional {?post sioc:link ?link} . optional {?post sioc:links_to ?links_to} . optional {?post sioc:content ?content} }
ODS | SIOC | Sample Value |
Data Space Class | Class | sioc:Container |
Data Space SubClass? | SubClass? | sioc:Community |
Data Space Generic Instance | Type | sioc:Container |
Data Space Type Specific Instance | Type | sioc:Community |
Data Space Instance Identifier (URI) | ID | "<http://demo.openlinksw.com/dataspace/demo/community/demoCommunity#id>" |
* content * has_container * has_creator * id * link * links_to * topic (tags) * has_reply (TBD) * reply_of (TBD)
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> select distinct ?attribute where { ?forum rdf:type sioc:Community . ?forum sioc:has_part ?parentf . ?parentf sioc:container_of ?post . ?post ?attribute ?o } order by ?attribute
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix dct: <http://purl.org/dc/elements/1.1/> select ?post ?title where { ?forum rdf:type sioc:Community . ?forum sioc:has_part ?parentf . ?parentf sioc:container_of ?post . optional{?post dct:title ?title} . }
ODS | SIOC | Sample Value |
Data Space Class | Class | sioc:Container |
Data Space SubClass? | SubClass? | sioct:Briefcase |
Data Space Generic Instance | Type | sioc:Container |
Data Space Type Specific Instance | Type | sioct:Briefcase |
Data Space Instance Identifier (URI) | ID | "<http://demo.openlinksw.com/dataspace/demo/briefcase/demoBriefcase#id>" |
* content ( supported for file types: 'text/*'); * has_container * has_creator * id * link * links_to ( supported for file types: 'text/html'); * topic (tags)
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> select distinct ?attribute where { ?forum rdf:type sioct:Briefcase . ?forum sioc:container_of ?post . ?post ?attribute ?o } order by ?attribute
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix svc: <http://rdfs.org/sioc/services#> prefix sioct: <http://rdfs.org/sioc/types#> select ?endp , ?proto where { ?forum a sioct:Briefcase . ?forum svc:has_service ?svc . ?svc svc:service_endpoint ?endp . ?svc svc:service_protocol ?proto . } order by ?proto
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select DISTINCT ?forum_name, ?post, ?title, ?cr, ?url, ?links_to where { ?forum a sioct:Briefcase . ?forum sioc:id ?forum_name. ?forum sioc:container_of ?post. optional { ?post dct:title ?title }. optional { ?post dcc:created ?cr }. optional { ?post sioc:link ?url }. optional { ?post sioc:links_to ?links_to }. } order by DESC (?cr)
ODS | SIOC | Sample Value |
Data Space Class | Class | sioc:Container |
Data Space SubClass? | SubClass? | sioct:MessageBoard? |
Data Space Generic Instance | Type | sioc:Container |
Data Space Type Specific Instance | Type | sioct:MessageBoard? |
* content * has_container * has_reply * id * link * links_to * reply_of * topic (tags) (TBD) * has_creator: if the creator is not known, the foaf:maker is filled in
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> select distinct ?attribute where { ?forum rdf:type sioct:MessageBoard . ?forum sioc:container_of ?post . ?post ?attribute ?o } order by ?attribute
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select distinct ?forum_name, ?post, ?title, ?mod_time, ?create_time, ?url where { ?forum a sioct:MessageBoard ; sioc:id ?forum_name. optional{ ?forum sioc:container_of ?post } . optional{ ?post dct:title ?title } . optional{ ?post dcc:modified ?mod_time } . optional{ ?post dcc:created ?create_time } . optional{ ?post sioc:link ?url } . }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select ?forum_name, ?post, ?title, ?mod_time, ?create_time, ?url, ?content where { ?forum a sioct:MessageBoard ; sioc:id ?forum_name FILTER REGEX(?forum_name,".*demo*."). optional{ ?forum sioc:container_of ?post } . optional{ ?post dct:title ?title } . optional{ ?post dcc:modified ?mod_time } . optional{ ?post dcc:created ?create_time } . optional{ ?post sioc:link ?url } . optional{ ?post sioc:content ?content}. }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select distinct ?forum_name, ?post, ?title, ?mod_time, ?create_time, ?url where { ?forum rdf:type sioct:MessageBoard. optional{ ?forum sioc:id ?forum_name. FILTER REGEX(?forum_name,".*demo*.") }. optional{ ?forum sioc:container_of ?post } . optional{ ?post dct:title ?title } . optional{ ?post dcc:modified ?mod_time } . optional{ ?post dcc:created ?create_time } . optional{ ?post sioc:link ?url } . }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> select distinct ?forum_name, ?post, ?title, ?mod_time, ?create_time, ?url where { ?forum rdf:type sioct:MessageBoard ; sioc:id ?forum_name FILTER REGEX(?forum_name,".*mywiki*."). optional{ ?forum sioc:container_of ?post } . optional{ ?post dct:title ?title } . optional{ ?post dcc:modified ?mod_time } . optional{ ?post dcc:created ?create_time } . optional{ ?post sioc:link ?url } . }
These SPARQL queries join data across serveral ODS data spaces.
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix skos: <http://www.w3.org/2004/02/skos/core#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix dc: <http://purl.org/dc/elements/1.1/> select ?title, ?tag, ?topic where { ?s a sioc:Item. optional { ?s dc:title ?title }. ?s sioc:id ?id . optional { ?s sioc:topic ?topic . ?topic rdf:type skos:Concept . ?topic skos:prefLabel ?tag } }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dct: <http://purl.org/dc/elements/1.1/> prefix dcc: <http://purl.org/dc/terms/> prefix skos: <http://www.w3.org/2004/02/skos/core#> prefix foaf: <http://xmlns.com/foaf/0.1/> select DISTINCT ?forum_name, ?post, ?title, ?cr, ?url, ?links_to, ?tag, ?nick, ?gender, ?org, ?geodata where { ?forum a sioct:Weblog . ?forum sioc:id ?forum_name. optional {?forum sioc:scope_of ?role } . optional { ?role sioc:function_of "<http://demo.openlinksw.com/dataspace/demo#this>" } . ?forum sioc:container_of ?post. optional { ?post dct:title ?title. ?post dcc:created ?cr. ?post sioc:link ?url. ?post sioc:links_to ?links_to. ?post foaf:maker ?maker } . optional { ?maker foaf:nick ?nick } . optional { ?maker foaf:name ?fname } . optional { ?maker foaf:gender ?gender } . optional { ?maker foaf:based_near ?geodata } . optional { ?maker foaf:organization ?org } . optional {?post sioc:topic ?topic . ?topic rdf:type skos:Concept . ?topic skos:prefLabel ?tag } }
prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix foaf: <http://xmlns.com/foaf/0.1/> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix dc: <http://purl.org/dc/elements/1.1/> prefix dcterms: <http://purl.org/dc/terms/> select DISTINCT ?post, ?post_sioc, ?post_author, ?post_title, ?post_date, ?reply where { ?post sioc:has_creator ?_x . ?_x sioc:id ?post_author . optional { ?post rdfs:seeAlso ?post_sioc } . optional { ?post sioc:has_reply ?reply } . optional { ?post dcterms:created ?post_date } . optional { ?post dc:title ?post_title } }
Click Here for a live SPARQL Query (via SPARQL Protocol) version of this query.
prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix foaf: <http://xmlns.com/foaf/0.1/> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix dc: <http://purl.org/dc/elements/1.1/> prefix dcterms: <http://purl.org/dc/terms/> CONSTRUCT { ?post sioc:has_creator ?_x . ?_x sioc:id ?post_author . ?post rdfs:seeAlso ?post_sioc . ?post sioc:has_reply ?reply . ?post dcterms:created ?post_date . ?post dc:title ?post_title . } where { ?post sioc:has_creator ?_x . ?_x sioc:id ?post_author . optional{ ?post rdfs:seeAlso ?post_sioc } . optional{ ?post sioc:has_reply ?reply } . optional{ ?post dcterms:created ?post_date } . optional{ ?post dc:title ?post_title } }
prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix dcterms: <http://purl.org/dc/terms/> CONSTRUCT { ?post dcterms:created ?created . ?post sioc:link ?link . ?post sioc:title ?title . } where { ?forum a sioct:MessageBoard . ?post sioc:has_container ?forum . optional { ?post dcterms:created ?created } . optional { ?post sioc:link ?link } . optional { ?post sioc:title ?title } }
prefix foaf: <http://xmlns.com/foaf/0.1/> prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> CONSTRUCT { ?x rdf:type sioc:User . } where { ?x rdf:type sioc:User . }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix skos: <http://www.w3.org/2004/02/skos/core#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dc: <http://purl.org/dc/elements/1.1/> prefix dcterms: <http://purl.org/dc/terms/> CONSTRUCT { ?post dc:title ?title . ?post sioc:link ?link . ?post sioc:links_to ?links_to . ?post sioc:topic ?topic . ?post dcterms:created ?cr } where { ?post rdf:type sioc:Item . optional { ?post dc:title ?title } . optional { ?post sioc:link ?link } . optional { ?post sioc:links_to ?links_to } . optional { ?post dcterms:created ?cr } . optional { ?post sioc:topic ?topic }. optional { ?topic skos:prefLabel ?tag }. ?post sioc:has_container ?forum . ?forum a sioct:ImageGallery . ?forum sioc:scope_of ?role. ?role sioc:function_of ?member. ?member sioc:id "demo" }
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix sioc: <http://rdfs.org/sioc/ns#> prefix sioct: <http://rdfs.org/sioc/types#> prefix xsd: <http://www.w3.org/2001/XMLSchema#> prefix dc: <http://purl.org/dc/elements/1.1/> prefix dcterms: <http://purl.org/dc/terms/> CONSTRUCT { ?post dc:title ?title . ?post dcterms:created ?date } where { ?forum rdf:type sioc:Community . ?forum sioc:has_part ?parentf . ?parentf sioc:container_of ?post . optional { ?post dc:title ?title } . optional { ?post dcterms:created ?date } . }