Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Ontology IRI #269

Merged
merged 25 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions schema/iguana.owx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0"?>
<Ontology xmlns="http://www.w3.org/2002/07/owl#"
xml:base="https://iguana-benchmark.eu/ontology/"
xml:base="https://vocab.dice-research.org/iguana/ontology.owx"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
ontologyIRI="https://iguana-benchmark.eu/ontology/"
versionIRI="https://iguana-benchmark.eu/ontology/4.0.0/">
ontologyIRI="https://vocab.dice-research.org/iguana/"
versionIRI="https://vocab.dice-research.org/iguana/4.0.0/">
<Prefix name="dc" IRI="http://purl.org/dc/elements/1.1/"/>
<Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
<Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/aksw/iguana/commons/rdf/IGUANA_BASE.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import java.util.Map;

public class IGUANA_BASE {
public static final String NS = "http://iguana-benchmark.eu" + "/";
public static final String NS = "https://vocab.dice-research.org/iguana/";
public static final String PREFIX = "iguana";

private IGUANA_BASE() {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"taskID","startDate","endDate","noOfWorkers","AvgQPS","NoQ","NoQPH","PAvgQPS","QMPH"
"http://iguana-benchmark.eu/resource/123/0","2023-10-21T20:49:24.399Z","2023-10-21T20:50:42.399Z","4","0.5","40","7200","0.75","720"
"http://iguana-benchmark.eu/resource/123/1","2023-10-21T20:52:00.399Z","2023-10-21T20:53:18.399Z","4","0.5","20","7200","0.75","1440"
https://vocab.dice-research.org/iguana/resource/123/0,"2023-10-21T20:49:24.399Z","2023-10-21T20:50:42.399Z","4","0.5","40","7200","0.75","720"
https://vocab.dice-research.org/iguana/resource/123/1,"2023-10-21T20:52:00.399Z","2023-10-21T20:53:18.399Z","4","0.5","20","7200","0.75","1440"
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"taskID","connection","version","dataset"
"http://iguana-benchmark.eu/resource/123/0","test-connection-1","v1.0.0","http://iguana-benchmark.eu/resource/test-dataset-1"
"http://iguana-benchmark.eu/resource/123/0","test-connection-2","v1.1.0","http://iguana-benchmark.eu/resource/test-dataset-2"
"http://iguana-benchmark.eu/resource/123/1","test-connection-4","v1.3.0","http://iguana-benchmark.eu/resource/test-dataset-4"
"http://iguana-benchmark.eu/resource/123/1","test-connection-3","v1.2.0","http://iguana-benchmark.eu/resource/test-dataset-3"
"https://vocab.dice-research.org/iguana/resource/123/0","test-connection-1","v1.0.0","https://vocab.dice-research.org/iguana/resource/test-dataset-1"
"https://vocab.dice-research.org/iguana/resource/123/0","test-connection-2","v1.1.0","https://vocab.dice-research.org/iguana/resource/test-dataset-2"
"https://vocab.dice-research.org/iguana/resource/123/1","test-connection-4","v1.3.0","https://vocab.dice-research.org/iguana/resource/test-dataset-4"
"https://vocab.dice-research.org/iguana/resource/123/1","test-connection-3","v1.2.0","https://vocab.dice-research.org/iguana/resource/test-dataset-3"
Loading