Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Fdp Api
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EOSC-Pillar
FFDS
Fdp Api
Merge requests
!5
fix
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix
chore/update-to-1.12.0
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Baptiste Toulemonde
requested to merge
chore/update-to-1.12.0
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Viewing commit
5a6802fe
Show latest version
1 file
+
34
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
5a6802fe
fix
· 5a6802fe
Baptiste Toulemonde
authored
3 years ago
src/main/resources/defaultNavigationShacl.ttl
0 → 100644
+
34
−
0
Options
@prefix
:
<http://fairdatapoint.org/>
.
@prefix
sh:
<http://www.w3.org/ns/shacl#>
.
@prefix
r3d:
<http://www.re3data.org/schema/3-0#>
.
@prefix
dcat:
<http://www.w3.org/ns/dcat#>
.
@prefix
dct:
<http://purl.org/dc/terms/>
.
:
repoNavShape
a
sh:
NodeShape
;
sh:
targetClass
r3d:
Repository
;
sh:
property
[
sh:
path
r3d:
dataCatalog
;
sh:
node
:
catNavShape
;
]
.
:
catNavShape
a
sh:
NodeShape
;
sh:
targetClass
dcat:
Catalog
;
sh:
property
[
sh:
path
dcat:
dataset
;
sh:
node
:
datasetNavShape
;
]
;
sh:
property
[
sh:
path
dct:
isPartOf
;
sh:
node
:
repoNavShape
;
]
.
:
datasetNavShape
a
sh:
NodeShape
;
sh:
targetClass
dcat:
Dataset
;
sh:
property
[
sh:
path
dcat:
distribution
;
sh:
node
:
distNavShape
;
]
;
sh:
property
[
sh:
path
dct:
isPartOf
;
sh:
node
:
catNavShape
;
]
.
Loading