Questions tagged [rdf-xml]

RDF/XML is an RDF serialization (using XML), defined by the W3C

Related tags

  • for question about RDF (not about a specific RDF serialization)
  • for questions about XML

Internet media type

application/rdf+xml

External links

51 questions
0
votes
1 answer

Transform and ingest graph RDF XML failure

Following previous post: Graph data model to transform XML to RDF
Chris
  • 123
  • 9
0
votes
1 answer

Graph data model to transform XML to RDF

I am engineering a semantic graph system. Raw /projects.xml 123859 Economic Development Fund ABC, Inc ABC,…
Chris
  • 123
  • 9
0
votes
0 answers

How to retrieve specific values from RDF XML file in python

I have an RDF/XML file that is formatted like so (truncated to only show the necessary data):
Luca Guarro
  • 1,085
  • 1
  • 11
  • 25
0
votes
2 answers
0
votes
1 answer

VDS.RDF.Parsing.RdfXmlParser Load(IRdfHandler handler, XmlDocument document) missing

I am looking for an overload with above mentioned signature. I need to load from an XmlDocument because loading from the owl file directly or via a Stream results in an Error: "The input document has exceeded a limit set by…
jahu
  • 533
  • 4
  • 15
0
votes
1 answer

Do all ontologies that import 'owl' or 'rdf', implement 'domain', 'range' and other related predicates?

Sorry if this is a noob's and simple question, but it will help me resolve a conceptual confusion of mine! I have some guesses, but want to make sure. I got the location of a part of brain via NeuroFMA ontology and the query below: PREFIX fma:…
RFAI
  • 459
  • 4
  • 17
0
votes
1 answer

IRI included an unencoded space Error when posted to SparQL Client on Neptune Server

I am getting this following error when making a POST request to my SPARQL Client endpoint: Malformed query: org.openrdf.rio.RDFParseException: IRI included an unencoded space: '32' [line 1] I am using Postman to make the request and have set a…
Haych
  • 932
  • 13
  • 36
0
votes
0 answers

SPARQL: ignore datatype of a value in a query

I have an ontology entity instance in RDF/XML like this:
nvbach91
  • 166
  • 8
0
votes
2 answers

SPARQL query for retrieving all object properties about one individual (in Protege)

I have data for 20 breeds as individual and their costs, energy level, adaptability level, hypoallergenic, and the purposes of having them as object properties. I want to retrieve all object properties in individual. so far this is my query: PREFIX…
0
votes
1 answer

Apache Jena exception when reading a model from a file (only on mac?)

I am trying to read an RDF/XML model from an .owl file using Apache Jena, but an exception I don't understand is being thrown. For some reason, the exception is occurring on my associate's mac computer, but the model reads fine with no exceptions on…
rye045
  • 93
  • 9
0
votes
1 answer

How to create RDFS based on RDF/XML file?

For my project, I need to get the RDFS from CIM RDF/XML (IEC 61970). .NET Framework does not have standard tools for working with RDF. Please help me solve my problem.
Huntrus
  • 11
0
votes
1 answer

Read RDF/XML file from website in Excel

I need to read a RDF/XML file from a website but haven't figured out how yet after reading some other posts and have no previous experience with such files. Ideally I would convert this file to be dealt with Excel as a bunch of data, can anyone…
Arduino
  • 373
  • 1
  • 3
  • 21
0
votes
1 answer

Query regarding SPARQL with a RDF file using CIDOC-CRM ontology

I'm a beginner in Apache Spark, SPARQL, I'm trying to make some queries on an RDF file using CIDOC-CRM ontology, I execute this SPARQL query but It never turn with a result from rdflib import Graph g = Graph() g.parse("data.rdf") res = g.query( …
Yardi
  • 101
  • 8
0
votes
1 answer

export graph from Virtuoso to RDF/XML format

I want to dump a graph from OpenLink Virtuoso to an RDF/XML file. I know the dump_one_graph command, however the result of this command is a Turtle file. Please help me to export in RDF/XML format.
0
votes
0 answers

Subject and Action with Same Predicte

I have RDF file with a RDF/XML format. The RDF file describes subject, action, and object of a sentence, and I want to extract them. The subject and object values are described in aapi:text, but object value is described by aapi:name. My problem is…