Skip to content

Commit

Permalink
#201 Update documentation '#443'
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-asprino committed Aug 5, 2024
1 parent 7912bb9 commit af6848e
Show file tree
Hide file tree
Showing 31 changed files with 2,017 additions and 2,017 deletions.
6 changes: 3 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[![DOI](https://zenodo.org/badge/303967701.svg)](https://zenodo.org/badge/latestdoi/303967701)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Java 11](https://github.com/sparql-anything/sparql.anything/actions/workflows/maven_Java11.yml/badge.svg?branch=v1.0-DEV)](https://github.com/sparql-anything/sparql.anything/actions/workflows/maven_Java11.yml)
[![Java 14](https://github.com/sparql-anything/sparql.anything/actions/workflows/maven_Java14.yml/badge.svg?branch=v1.0-DEV)](https://github.com/sparql-anything/sparql.anything/actions/workflows/maven_Java14.yml)
[![Java 14](https://github.com/sparql-anything/sparql.anything/actions/workflows/maven_Java17.yml/badge.svg?branch=v1.0-DEV)](https://github.com/sparql-anything/sparql.anything/actions/workflows/maven_Java17.yml)
[![Java 17](https://github.com/sparql-anything/sparql.anything/actions/workflows/maven_Java17.yml/badge.svg?branch=v1.0-DEV)](https://github.com/sparql-anything/sparql.anything/actions/workflows/maven_Java17.yml)
[![CodeQL](https://github.com/SPARQL-Anything/sparql.anything/actions/workflows/codeql-analysis.yml/badge.svg?branch=v1.0-DEV)](https://github.com/SPARQL-Anything/sparql.anything/actions/workflows/codeql-analysis.yml)
[![How to](https://img.shields.io/badge/How%20to-use-green.svg)](#usage)
[![How to](https://img.shields.io/badge/How%20to-join-blue.svg)](https://forms.gle/t1paTLz7jVu3RYnu8)
Expand Down Expand Up @@ -416,6 +414,8 @@ the [Apache Jena documentation](https://jena.apache.org/documentation/query/libr

SPARQL Anything is available as Java Library, Command Line Interface, Web Application Server, and also Python library.

*Note*: as of version 1.0.0, SPARQL Anything requires Java 17+.

### Command Line Interface (CLI)

An executable JAR can be obtained from the [Releases](https://github.com/spice-h2020/sparql.anything/releases) page.
Expand Down
118 changes: 59 additions & 59 deletions docs/formats/Archive.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,25 +50,25 @@ WHERE
### Facade-X RDF

```turtle
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix eg: <http://www.example.org/> .
@prefix fx: <http://sparql.xyz/facade-x/ns/> .
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
@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 rss: <http://purl.org/rss/1.0/> .
@prefix vcard: <http://www.w3.org/2001/vcard-rdf/3.0#> .
@prefix whatwg: <https://html.spec.whatwg.org/#> .
@prefix xhtml: <http://www.w3.org/1999/xhtml#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix xyz: <http://sparql.xyz/facade-x/data/> .
[ rdf:type fx:root ;
rdf:_1 "example/" ;
rdf:_2 "example/test.csv" ;
rdf:_3 "example/test.json" ;
rdf:_4 "example/test.xml" ;
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX eg: <http://www.example.org/>
PREFIX fx: <http://sparql.xyz/facade-x/ns/>
PREFIX ja: <http://jena.hpl.hp.com/2005/11/Assembler#>
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 rss: <http://purl.org/rss/1.0/>
PREFIX vcard: <http://www.w3.org/2001/vcard-rdf/3.0#>
PREFIX whatwg: <https://html.spec.whatwg.org/#>
PREFIX xhtml: <http://www.w3.org/1999/xhtml#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX xyz: <http://sparql.xyz/facade-x/data/>
[ rdf:type fx:root;
rdf:_1 "example/";
rdf:_2 "example/test.csv";
rdf:_3 "example/test.json";
rdf:_4 "example/test.xml";
rdf:_5 "example/test.txt"
] .
Expand Down Expand Up @@ -137,50 +137,50 @@ WHERE
###### Result

```turtle
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix eg: <http://www.example.org/> .
@prefix fx: <http://sparql.xyz/facade-x/ns/> .
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
@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 rss: <http://purl.org/rss/1.0/> .
@prefix vcard: <http://www.w3.org/2001/vcard-rdf/3.0#> .
@prefix whatwg: <https://html.spec.whatwg.org/#> .
@prefix xhtml: <http://www.w3.org/1999/xhtml#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix xyz: <http://sparql.xyz/facade-x/data/> .
[ rdf:type fx:root ;
rdf:_1 "this is a test" ;
rdf:_1 [ rdf:_1 "Year" ;
rdf:_2 "Make" ;
rdf:_3 "Model" ;
rdf:_4 "Description" ;
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX eg: <http://www.example.org/>
PREFIX fx: <http://sparql.xyz/facade-x/ns/>
PREFIX ja: <http://jena.hpl.hp.com/2005/11/Assembler#>
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 rss: <http://purl.org/rss/1.0/>
PREFIX vcard: <http://www.w3.org/2001/vcard-rdf/3.0#>
PREFIX whatwg: <https://html.spec.whatwg.org/#>
PREFIX xhtml: <http://www.w3.org/1999/xhtml#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX xyz: <http://sparql.xyz/facade-x/data/>
[ rdf:type fx:root;
rdf:_1 "this is a test";
rdf:_1 [ rdf:_1 "Year";
rdf:_2 "Make";
rdf:_3 "Model";
rdf:_4 "Description";
rdf:_5 "Price"
] ;
rdf:_2 [ rdf:_1 "1997" ;
rdf:_2 "Ford" ;
rdf:_3 "E350" ;
rdf:_4 "ac, abs, moon" ;
];
rdf:_2 [ rdf:_1 "1997";
rdf:_2 "Ford";
rdf:_3 "E350";
rdf:_4 "ac, abs, moon";
rdf:_5 "3000.00"
] ;
rdf:_3 [ rdf:_1 "1999" ;
rdf:_2 "Chevy" ;
rdf:_3 "Venture \"Extended Edition\"" ;
rdf:_4 "" ;
];
rdf:_3 [ rdf:_1 "1999";
rdf:_2 "Chevy";
rdf:_3 "Venture \"Extended Edition\"";
rdf:_4 "";
rdf:_5 "4900.00"
] ;
rdf:_4 [ rdf:_1 "1999" ;
rdf:_2 "Chevy" ;
rdf:_3 "Venture \"Extended Edition, Very Large\"" ;
rdf:_4 "" ;
];
rdf:_4 [ rdf:_1 "1999";
rdf:_2 "Chevy";
rdf:_3 "Venture \"Extended Edition, Very Large\"";
rdf:_4 "";
rdf:_5 "5000.00"
] ;
rdf:_5 [ rdf:_1 "1996" ;
rdf:_2 "Jeep" ;
rdf:_3 "Grand Cherokee" ;
rdf:_4 "MUST SELL!\nair, moon roof, loaded" ;
];
rdf:_5 [ rdf:_1 "1996";
rdf:_2 "Jeep";
rdf:_3 "Grand Cherokee";
rdf:_4 "MUST SELL!\nair, moon roof, loaded";
rdf:_5 "4799.00"
]
] .
Expand Down
62 changes: 31 additions & 31 deletions docs/formats/Bibliography.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,38 +74,38 @@ WHERE
### Facade-X RDF

```turtle
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix eg: <http://www.example.org/> .
@prefix fx: <http://sparql.xyz/facade-x/ns/> .
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
@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 rss: <http://purl.org/rss/1.0/> .
@prefix vcard: <http://www.w3.org/2001/vcard-rdf/3.0#> .
@prefix whatwg: <https://html.spec.whatwg.org/#> .
@prefix xhtml: <http://www.w3.org/1999/xhtml#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix xyz: <http://sparql.xyz/facade-x/data/> .
[ rdf:type fx:root ;
rdf:_1 [ rdf:type xyz:article ;
xyz:author "Donald E. Knuth" ;
xyz:journal "The Computer Journal" ;
xyz:number "2" ;
xyz:pages "97--111" ;
xyz:publisher "Oxford University Press" ;
xyz:title "Literate Programming" ;
xyz:volume "27" ;
PREFIX dc: <http://purl.org/dc/elements/1.1/>
PREFIX eg: <http://www.example.org/>
PREFIX fx: <http://sparql.xyz/facade-x/ns/>
PREFIX ja: <http://jena.hpl.hp.com/2005/11/Assembler#>
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 rss: <http://purl.org/rss/1.0/>
PREFIX vcard: <http://www.w3.org/2001/vcard-rdf/3.0#>
PREFIX whatwg: <https://html.spec.whatwg.org/#>
PREFIX xhtml: <http://www.w3.org/1999/xhtml#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX xyz: <http://sparql.xyz/facade-x/data/>
[ rdf:type fx:root;
rdf:_1 [ rdf:type xyz:article;
xyz:author "Donald E. Knuth";
xyz:journal "The Computer Journal";
xyz:number "2";
xyz:pages "97--111";
xyz:publisher "Oxford University Press";
xyz:title "Literate Programming";
xyz:volume "27";
xyz:year "1984"
] ;
rdf:_2 [ rdf:type xyz:article ;
xyz:author "Berners-Lee, Tim and Hendler, James and Lassila, Ora" ;
xyz:journal "Scientific american" ;
xyz:number "5" ;
xyz:pages "34--43" ;
xyz:title "The semantic web" ;
xyz:volume "284" ;
];
rdf:_2 [ rdf:type xyz:article;
xyz:author "Berners-Lee, Tim and Hendler, James and Lassila, Ora";
xyz:journal "Scientific american";
xyz:number "5";
xyz:pages "34--43";
xyz:title "The semantic web";
xyz:volume "284";
xyz:year "2001"
]
] .
Expand Down
Loading

0 comments on commit af6848e

Please sign in to comment.