Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ Initial public release.
- RDF/Turtle and JSON-LD ontology definitions
- W3C PROV-JSON schema included

[3.0.0]: https://github.com/fwrise/dataprov/releases/tag/v3.0.0
[3.0.0]: https://github.com/RI-SE/dataprov/releases/tag/v3.0.0
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Thank you for your interest in contributing to dataprov!

1. Clone the repository:
```bash
git clone https://github.com/fwrise/dataprov.git
git clone https://github.com/RI-SE/dataprov.git
cd dataprov
```

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# dataprov

[![CI](https://github.com/fwrise/dataprov/actions/workflows/ci.yml/badge.svg)](https://github.com/fwrise/dataprov/actions/workflows/ci.yml)
[![CI](https://github.com/RI-SE/dataprov/actions/workflows/ci.yml/badge.svg)](https://github.com/RI-SE/dataprov/actions/workflows/ci.yml)
[![Python 3.10+](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
Expand Down
2 changes: 1 addition & 1 deletion dataprov/dataprov.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
from typing import Any

DATAPROV_VERSION = "3.0"
DATAPROV_NS = "https://github.com/RI-SE/dataprov/ontology/"
DATAPROV_NS = "https://ri-se.github.io/dataprov/ontology/"
PROV_NS = "http://www.w3.org/ns/prov#"
XSD_NS = "http://www.w3.org/2001/XMLSchema#"

Expand Down
2 changes: 1 addition & 1 deletion dataprov/dataprov_prov_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"properties": {
"dataprov": {
"type": "string",
"const": "https://github.com/RI-SE/dataprov/ontology/"
"const": "https://ri-se.github.io/dataprov/ontology/"
},
"prov": {
"type": "string",
Expand Down
6 changes: 3 additions & 3 deletions ontology/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This directory contains the formal ontology for the Dataprov provenance tracking

The Dataprov ontology extends the [W3C PROV Ontology](https://www.w3.org/TR/prov-o/) with additional classes and properties specifically designed for tracking data file provenance in processing pipelines.

**Namespace URI:** `https://github.com/RI-SE/dataprov/ontology/`
**Namespace URI:** `https://ri-se.github.io/dataprov/ontology/`
**Prefix:** `dataprov:`
**Version:** 3.0.0
**Format:** Turtle (RDF)
Expand Down Expand Up @@ -114,7 +114,7 @@ The Dataprov ontology extends the [W3C PROV Ontology](https://www.w3.org/TR/prov
```json
{
"prefix": {
"dataprov": "https://github.com/RI-SE/dataprov/ontology/",
"dataprov": "https://ri-se.github.io/dataprov/ontology/",
"prov": "http://www.w3.org/ns/prov#",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
Expand Down Expand Up @@ -167,7 +167,7 @@ You can add custom namespace properties to your provenance files:
```json
{
"prefix": {
"dataprov": "https://github.com/RI-SE/dataprov/ontology/",
"dataprov": "https://ri-se.github.io/dataprov/ontology/",
"prov": "http://www.w3.org/ns/prov#",
"myapp": "https://myorganization.com/ontology/myapp#"
},
Expand Down
58 changes: 29 additions & 29 deletions ontology/dataprov.jsonld
Original file line number Diff line number Diff line change
@@ -1,127 +1,127 @@
{
"@context": {
"@vocab": "https://github.com/RI-SE/dataprov/ontology/",
"@vocab": "https://ri-se.github.io/dataprov/ontology/",
"prov": "http://www.w3.org/ns/prov#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"owl": "http://www.w3.org/2002/07/owl#",

"RootEntity": {
"@id": "https://github.com/RI-SE/dataprov/ontology/RootEntity",
"@id": "https://ri-se.github.io/dataprov/ontology/RootEntity",
"@type": "@id"
},
"DataFile": {
"@id": "https://github.com/RI-SE/dataprov/ontology/DataFile",
"@id": "https://ri-se.github.io/dataprov/ontology/DataFile",
"@type": "@id"
},

"checksum": {
"@id": "https://github.com/RI-SE/dataprov/ontology/checksum",
"@id": "https://ri-se.github.io/dataprov/ontology/checksum",
"@type": "xsd:string"
},
"format": {
"@id": "https://github.com/RI-SE/dataprov/ontology/format",
"@id": "https://ri-se.github.io/dataprov/ontology/format",
"@type": "xsd:string"
},
"sizeBytes": {
"@id": "https://github.com/RI-SE/dataprov/ontology/sizeBytes",
"@id": "https://ri-se.github.io/dataprov/ontology/sizeBytes",
"@type": "xsd:nonNegativeInteger"
},
"createdAt": {
"@id": "https://github.com/RI-SE/dataprov/ontology/createdAt",
"@id": "https://ri-se.github.io/dataprov/ontology/createdAt",
"@type": "xsd:dateTime"
},
"originalPath": {
"@id": "https://github.com/RI-SE/dataprov/ontology/originalPath",
"@id": "https://ri-se.github.io/dataprov/ontology/originalPath",
"@type": "xsd:string"
},
"bundleChecksum": {
"@id": "https://github.com/RI-SE/dataprov/ontology/bundleChecksum",
"@id": "https://ri-se.github.io/dataprov/ontology/bundleChecksum",
"@type": "xsd:string"
},
"externalPath": {
"@id": "https://github.com/RI-SE/dataprov/ontology/externalPath",
"@id": "https://ri-se.github.io/dataprov/ontology/externalPath",
"@type": "xsd:string"
},

"operation": {
"@id": "https://github.com/RI-SE/dataprov/ontology/operation",
"@id": "https://ri-se.github.io/dataprov/ontology/operation",
"@type": "xsd:string"
},
"arguments": {
"@id": "https://github.com/RI-SE/dataprov/ontology/arguments",
"@id": "https://ri-se.github.io/dataprov/ontology/arguments",
"@type": "xsd:string"
},
"outputLog": {
"@id": "https://github.com/RI-SE/dataprov/ontology/outputLog",
"@id": "https://ri-se.github.io/dataprov/ontology/outputLog",
"@type": "xsd:string"
},
"warnings": {
"@id": "https://github.com/RI-SE/dataprov/ontology/warnings",
"@id": "https://ri-se.github.io/dataprov/ontology/warnings",
"@type": "xsd:string"
},
"drl": {
"@id": "https://github.com/RI-SE/dataprov/ontology/drl",
"@id": "https://ri-se.github.io/dataprov/ontology/drl",
"@type": "xsd:integer"
},

"toolName": {
"@id": "https://github.com/RI-SE/dataprov/ontology/toolName",
"@id": "https://ri-se.github.io/dataprov/ontology/toolName",
"@type": "xsd:string"
},
"toolVersion": {
"@id": "https://github.com/RI-SE/dataprov/ontology/toolVersion",
"@id": "https://ri-se.github.io/dataprov/ontology/toolVersion",
"@type": "xsd:string"
},
"toolSource": {
"@id": "https://github.com/RI-SE/dataprov/ontology/toolSource",
"@id": "https://ri-se.github.io/dataprov/ontology/toolSource",
"@type": "xsd:string"
},
"user": {
"@id": "https://github.com/RI-SE/dataprov/ontology/user",
"@id": "https://ri-se.github.io/dataprov/ontology/user",
"@type": "xsd:string"
},
"hostname": {
"@id": "https://github.com/RI-SE/dataprov/ontology/hostname",
"@id": "https://ri-se.github.io/dataprov/ontology/hostname",
"@type": "xsd:string"
},
"agentType": {
"@id": "https://github.com/RI-SE/dataprov/ontology/agentType",
"@id": "https://ri-se.github.io/dataprov/ontology/agentType",
"@type": "xsd:string"
},
"name": {
"@id": "https://github.com/RI-SE/dataprov/ontology/name",
"@id": "https://ri-se.github.io/dataprov/ontology/name",
"@type": "xsd:string"
},

"runtime": {
"@id": "https://github.com/RI-SE/dataprov/ontology/runtime",
"@id": "https://ri-se.github.io/dataprov/ontology/runtime",
"@type": "xsd:string"
},
"runtimeVersion": {
"@id": "https://github.com/RI-SE/dataprov/ontology/runtimeVersion",
"@id": "https://ri-se.github.io/dataprov/ontology/runtimeVersion",
"@type": "xsd:string"
},
"platform": {
"@id": "https://github.com/RI-SE/dataprov/ontology/platform",
"@id": "https://ri-se.github.io/dataprov/ontology/platform",
"@type": "xsd:string"
},
"machine": {
"@id": "https://github.com/RI-SE/dataprov/ontology/machine",
"@id": "https://ri-se.github.io/dataprov/ontology/machine",
"@type": "xsd:string"
},
"processor": {
"@id": "https://github.com/RI-SE/dataprov/ontology/processor",
"@id": "https://ri-se.github.io/dataprov/ontology/processor",
"@type": "xsd:string"
},

"hadProvenance": {
"@id": "https://github.com/RI-SE/dataprov/ontology/hadProvenance",
"@id": "https://ri-se.github.io/dataprov/ontology/hadProvenance",
"@type": "@id"
},

"metadata": {
"@id": "https://github.com/RI-SE/dataprov/ontology/metadata",
"@id": "https://ri-se.github.io/dataprov/ontology/metadata",
"@type": "@id"
}
}
Expand Down
Loading