The Resource Description Framework (RDF) is a language for representing information about resources in the World Wide Web. It is a syntax independent data model that may be serialised in a variety of concrete syntaxes. RDF is the core data format used on the Semantic Web.

learn more… | top users | synonyms

3
votes
3answers
18 views

restrict xsd:string to [A-Z] for rdfs:range

I think the core question is stated in the title... I don't know exactly how to go about? OWL restrictions don't do the trick for me (at first glance). Regex? If so, at what point? (rdfs:range ...
0
votes
2answers
16 views

rdf using apache jena on net beans

I want to create a simple RDF graph and then try simple querying using SPARQL. Since I'm familiar with java and net beans, I want to use Apache Jena on NetBeans. I downloaded the related files from ...
0
votes
0answers
8 views

Owl Protege model repository

I can't really grasp the concept of how I can add an ontology model in a repository for storing. For example, I've created an ontology model in Protege 4.3. What's the next step? Suppose I want to ...
0
votes
2answers
18 views

Duplicate namespace (prefixes) in RDF resource

I've a RDF that has multiple resources in it that I'm generating from my data model. Because each resource is added (concatenated) separately, I've multiple prefixes (when in N3). It looks something ...
0
votes
1answer
21 views

Jena: property name cannot be resolved to a variable?

I'm using Jena to query my ontology, and I'm following Step 8: Querying a Model of this tutorial. The RDF file vc-db-1.rdf being queried here is generated from Step 3: Writing RDF and is shown below: ...
0
votes
0answers
8 views

Are there plugins for marking up Wordpress fields with RDFa for Semantic Web?

I am thinking of something like what Drupal has. You define a content type and specify a RDfa type, aka Class for that content node. Then you can add specific properties for each field. Ideally, ...
0
votes
1answer
17 views

GML strings in Turtle

I am trying to use the OGC GeoSPARQL vocabulary in a Turtle file. Here is a fragment: :spatialextent a geosparql:Geometry; geosparql:asGML "<gml:Polygon ...
0
votes
0answers
23 views

How to populate an existing ontology with rdf triplets from multiple xml files?

I have an ontology which has already been defined. and i have a folder with hundreds of xml files which have been extracted by crawling.How can i extract triplets from all these xml files and populate ...
1
vote
1answer
26 views

ParserConfig error in Sesame 2.7 when trying to upload RDF files from DBpedia

I am trying to upload into my Sesame repository a set of RDF file coming from DBpedia. The problem is: for almost every RDF file, Sesame give the following error: 'whatever_file_is': 'some_value' was ...
1
vote
1answer
44 views

Querying Open Data Communities Data with SPARQL

I'm trying to get some information from the Lower Layer Super Output Areas (LSOAs) and UK Postcodes datasets. I need the postal code and lsoa information in a data dump for excel use. Notation and ...
2
votes
1answer
13 views

Lifetime of RDF nodes in Redland RDF after parsing a model?

I am parsing an RDF_model using librdf_parser_parse_string_into_model. I then retain the librdf_model but free the librdf_parser. It looks to me as if the nodes in the model then have disappeared as ...
0
votes
0answers
23 views

Owl api: creating a new ontology that imports others

I have just started using the OWL API in order to generate some examples that use other ontologies. The situation is like this: I have two ontologies A and B that have many elements and imports from ...
0
votes
1answer
31 views

how to rename an ontology's prefixes

I have created an onology using Jena API which contains the following classes and DataType Properties: public class Onto { OntClass USER,...; OntModel model; String uriBase; ...
0
votes
1answer
32 views

How to extract Freebase Data Dump for a particular topic

I want to extract music data from the freebase data dumps. (http://www.freebase.com/music) Once I have the data dump how to I extract say the following properties ...
0
votes
1answer
36 views

Sparql Select Query works on Sesame-Workbench but not on Java

I'm trying to create a Sparql-Query to get all messages, that are related to a lecture. I'm new at the whole 'semantic web'-story so be patient if the usage namespace is completely wrong. The query I ...
0
votes
0answers
18 views

open existing postgresql store

I'm trying to write an RDF graph and store it on postgresql (using pythons rdflib). I do this by opening the store which I have already created and opening a graph through this store. This process ...
0
votes
0answers
8 views

virtuoso sponger bulk upload

I would like to upload to virtuso some rdf/xml files. As I see, I have to load them through sponger in the WebDAV rdf_sink folder. The data of each file are stored by default in ...
0
votes
1answer
36 views

Extract information from XML to RDF triples using ontology

I have an existing ontology and some XML files. I want to extract the data from the existing XML files and store them in (a new RDF file) RDF triples using Jena. How can I make the mapping between XML ...
0
votes
1answer
69 views

Fetching RDF for a topic from Freebase

I am trying to replicate the example code in https://developers.google.com/freebase/v1/rdf-overview#rdf-documentation to obtain the RDF for a particular topic and store the result in rdflib. After ...
1
vote
2answers
33 views

RDF Graph Entailment

I just read about the concept of entailment for RDF (Resource Description Framework).Can anyone tell me an example of entailment for two RDF graphs and explain them a bit. Thanks
0
votes
2answers
34 views

PHP / XML - replace chunk of XML in middle of file

Okay, I'm a bit stumped. I'm more familiar with Python when manipulating XML, but I would like to use PHP in this instance if possible. Is there a relatively straightforward way to replace a chunk ...
0
votes
1answer
52 views

Building AliBaba java exemple

Good evening, I am new to Java Persistence API and I would like to test AliBaba to see what it could do. AliBaba website. I read part of the exemple given here. I have the whole AliBaba project and ...
2
votes
1answer
29 views

Sesame 2.7 failed to recognise RDF Literal

I'm having some trouble with Sesame 2.7. Suppose I have the following RDF document: <rdf:RDF xmlns:arq="http://example.com/vocab.rdf#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" ...
-1
votes
0answers
19 views

Protege owl Ontology to RDF Sesame 2 Windows Client

I've created a Disease Ontology in Owl, complete with object properties. I'm looking for a way to create a database with that owl model along with a simple interface where we can add more information ...
0
votes
0answers
25 views

run prolog query on a jena inference model with allegrograph

I use Jena and allegrograph in eclipse to create a rdf repository and load an ontology to do some prolog queries. The ontology contains some owl properties like owl:inverseOf, hasValue, ...
-2
votes
1answer
43 views

How do I parse and save all the classes with their properties from an RDF file using Jena API in Java?

I have a project where I need to parse an RDF file and record all the data on which I will have to search for specific data afterwards. I searched the web and all I could find was how to query the ...
0
votes
1answer
33 views

RDF/SKOS concept hierarchy as Python dictionary

In Python, how do I turn RDF/SKOS taxonomy data into a dictionary that represents the concept hierarchy only? The dictionary must have this format: { 'term1': [ 'term2', 'term3'], 'term3': [{'term4' ...
1
vote
2answers
78 views

Jena sparql update doesn't execute

the situation is simple, I have an RDF (N3) file that I want to upload into sparql-auth-endpoint. I use JENA ARQ, but unfortunatelly it doesn't work - it means I got no errors but the graph doesn't ...
5
votes
2answers
66 views

Representing complicated sentences using RDF syntax

I am new to RDF and I have one question about RDF. With some simple sentence like : "Ann study Math", there's no problem to represent it using RDF. But with more complicated sentences such as: "Mr ...
0
votes
1answer
42 views

i need away to write rdf triples with Time attributes and make sparql query to get the time

i have triples: Fadi eat Apple. (subject = Fadi, predicate = eat, object = Apple). and i have the Time when fadi eat the Apple, its: 00:00:13 and i have the time when fadi ate the apple, its: 00:00:50 ...
0
votes
1answer
25 views

getting rdf xml:attribute in sparql query

Given This RDF: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
0
votes
1answer
42 views

what does a hashtag mean before a resource ID in RDF and OWL

I often see a hashtag in front of resources names in RDF serialization of OWL. For instance: ....rdf:resource="#hasParent" /> What does this mean? When I look it up, Google gives me a bunch of ...
0
votes
1answer
22 views

LOM - RDF binding

Im trying to expose some learning objects into the semantic web. I found out that the namespace used for this is "lom= http://ltsc.ieee.org/rdf/lomv1p0/lom#". I want to get the RDF definition of all ...
0
votes
1answer
49 views

sparql query about object to find another object

Given This RDF: <?xml version="1.0" encoding="utf-8"?><!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
3
votes
3answers
41 views

Testing the presence of a predicate in SPARQL

I have the following RDF model: @prefix : <http://test.com/#> . :graph1 :hasNode :node1 ; :centerNode :node1 . :graph1 :hasNode :node2 . :graph1 :hasNode :node3 . I ...
2
votes
2answers
47 views

Which .nt file from the DBpedia dataset contains the triples about DBpedia classes?

I am working on a DBpedia dataset and using Apache Jena to execute SPARQL over a local Jena TDB dataset. I have downloaded only some of the files from DBpedia Downloads so that I could keep the size ...
0
votes
1answer
79 views

Is it possible to read allowed values for a datatype property of a class?

I'm using an ontology in which I created a class named "USER". This class contains a datatype property named "gender". Then I inserted two allowed values for this datatype which are "male" and ...
0
votes
1answer
44 views

dotnetrdf Graph Sparql query

with rdf triples like this: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
2
votes
1answer
45 views

RDF Vocabulary for describing Uri components

Is there a known RDF vocabulary for describing metadata of Uri components? (e.g. scheme, authority, querystring, etc.) Update I have been able to find a DublinCore term resource for URI, but the ...
5
votes
1answer
132 views
+100

What is the most standard file format and notation for persisting expressive directed graphs?

I am interested in persisting individual directed graphs. This question is not asking for a full-scale graph database solution, but for a document format that I can use to save and individual ...
0
votes
1answer
31 views

What is Sparql Query to get Company and its subidiary through dbpedia triple store

I am new to RDF I am trying to get companies and number of its subsidaries through dbpedia I started with writing below queries in sparql at http://dbpedia.org/sparql or DBpedia SPARQL Explorer ...
1
vote
2answers
28 views

what makes an OWL class anonymous?

I am reading a tutorial that says that this is an anonymous OWL class: <owl:Class rdf:ID="Reptile"> <rdfs:subClassOf rdf:resource="#Animal”/> <rdfs:subClassOf ...
1
vote
1answer
32 views

Getting SWI-Prolog to convert Literal to number

It will be quite a miracle if someone could help with the following... I'm using SWI-Prolog to perform queries in a triples RDF file. The values can be queried, but instead of just a number, the word ...
0
votes
1answer
28 views

Unable to upload webdatacommons example file into OpenRDF Sesame 2.7.0 (seemingly) because of encoded Chinese characters

I just tried uploading the example webdatacommons RDF file Into Sesame 2.7.0 and get a message: "'洪雄熊' was not recognised as a language literal, and could not be verified, with language zh_tw ...
1
vote
1answer
78 views

Using GROUP BY, COUNT and SAMPLE in apache jena SPARQL

So I have an RDF schema that contains many "groups", and each of these groups has a "name", and contains a number of "elements". I need to select the name of every group, along with the number of ...
2
votes
1answer
42 views

SPARQL query on rdf:resource

Suppose I want to retrieve the names of all elements in the periodic table with a standard state of 'gas'. Here are what I believe are the relevant portions of the .owl file... <owl:Class ...
0
votes
1answer
50 views

using sparql with RDF Triples Files

Given This RDF: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
1
vote
1answer
31 views

Unable to Parse this RDF/XML since System.Xml was unable to parse the document

I'am using .Net RDF library to make some sparql query on RDF files. but when I tried to load the RDF file to C# .Net RDFlibrary. The error is: Unable to Parse this RDF/XML since System.Xml was ...
1
vote
2answers
43 views

How find “main” type for given topic in freebase RDF?

I need find "main type" for a given topic in the RDF file. When I am typing question to search box on http://www.freebase.com, auto-completer give me name of topic with this "main type". For ...
0
votes
1answer
71 views

Data property value extraction from an instance of an ontology

I am trying to display the data property values of the instances of my ontology.I am using Jena for this purpose. My instances are as follows <!-- ...

1 2 3 4 5 19