-
Notifications
You must be signed in to change notification settings - Fork 6
(RDF) Show information about a Node in an RDF file
Jose Emilio Labra Gayo edited this page Aug 14, 2024
·
4 revisions
It is possible to obtain information about a node in an RDF graph.
Given the following file in examples/user.shex
:
prefix : <http://example.org/>
prefix xsd: <http://www.w3.org/2001/XMLSchema#>
:a :name "Alice" ;
:birthdate "1990-05-02"^^xsd:date ;
:enrolledIn :cs101 .
:b :name "Bob", "Robert" .
:cs101 :name "Computer Science" .
If we want to obtain information about the node :a
, we can run the following command:
rudof node -n :a examples/simple.ttl
And the result will be:
Information about node
Outgoing arcs
:a
-:enrolledIn->
:cs101
-:birthdate->
"1990-05-02"^^<http://www.w3.org/2001/XMLSchema#date>
-:name->
"Alice"
- (RDF) Information about a node in RDF file
- (RDF) Merge several RDF data files
- (RDF/SPARQL) Information about a node in Wikidata
- (ShEx) Show info about a schema
- (ShEx) Validate a specific node with a shape
- (SHACL) Show info about a SHACL schema
- (SHACL) Read a SHACL Shapes graph and convert to some format
- (SHACL) Validating RDF data using SHACL
- (SPARQL) Running SPARQL queries
- (Python) Invoking this library from Python
- (SHACL → ShEx) Convert SHACL shapes graph to ShEx schema
- (ShEx → SVG/PNG/...) Convert a ShEx schema to an UML-like visualization in SVG, PNG, ...
- (ShEx → HTML) Convert ShEx schemas to HTML views
- (ShEx → SPARQL) Convert a simple ShEx schema to SPARQL
- (DCTap → ShEx) Convert a CSV file in DCTap to a ShEx schema
- (DCTap → SVG/PNG/...) Convert a CSV file in DCTap to an UML-like visualization in SVG, PNG, ...