-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now with examples for all key features. Also started to use expressions for slot definitions (see conditional requirement of `value` for `Property` when `is_defined_by` is not given).
- Loading branch information
Showing
10 changed files
with
121 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"id": "exthisdsver:#", | ||
"id": "exthisns:mything", | ||
"meta_type": "dlthing:Thing", | ||
"has_property": [ | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"id": "https://ror.org/02nv7yv05", | ||
"identifier": [ | ||
{ | ||
"notation": "02nv7yv05", | ||
"schema_agency": "https://ror.org" | ||
}, | ||
{ | ||
"notation": "5008462-8", | ||
"schema_agency": "https://d-nb.info" | ||
}, | ||
{ | ||
"notation": "n83199611", | ||
"schema_agency": "https://lccn.loc.gov" | ||
}, | ||
{ | ||
"notation": "148696642", | ||
"schema_agency": "https://viaf.org" | ||
}, | ||
{ | ||
"notation": "DE 122624631", | ||
"schema_agency": "https://www.bzst.de" | ||
} | ||
], | ||
"meta_type": "dlthing:Thing", | ||
"same_as": [ | ||
"https://en.wikipedia.org/wiki/Forschungszentrum_J%C3%BClich", | ||
"https://www.fz-juelich.de", | ||
"https://www.wikidata.org/wiki/Q697111" | ||
], | ||
"@type": "Thing" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Identification options for a thing. | ||
# | ||
# `id` is the identifier of the metadata record. In practice it can | ||
# by any of the identifiers below. In a particular context, it is often | ||
# useful to agree on a particular type of identifier to simplify knowledge | ||
# aggregation for individual things. Arbitrary other identifiers | ||
# can be recorded in addition. | ||
id: https://ror.org/02nv7yv05 | ||
identifier: | ||
# Research Organization Registry | ||
- notation: 02nv7yv05 | ||
schema_agency: https://ror.org | ||
# German National Library | ||
- notation: 5008462-8 | ||
schema_agency: https://d-nb.info | ||
# Library of Congress Control Number | ||
- notation: n83199611 | ||
schema_agency: https://lccn.loc.gov | ||
# Virtual International Authority File | ||
- notation: "148696642" | ||
schema_agency: https://viaf.org | ||
# VAT number | ||
- notation: "DE 122624631" | ||
schema_agency: https://www.bzst.de | ||
# Use `same_as` to point to other sources talking about the same thing | ||
same_as: | ||
- https://en.wikipedia.org/wiki/Forschungszentrum_J%C3%BClich | ||
- https://www.fz-juelich.de | ||
- https://www.wikidata.org/wiki/Q697111 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"id": "exthisns:mything", | ||
"meta_type": "dlthing:Thing", | ||
"@type": "Thing" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Any document on a Thing requires a identifier. | ||
# Beyond that, no property is required. | ||
id: exthisns:mything |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"id": "https://doi.org/10.21105/joss.03262", | ||
"is_about": [ | ||
"https://www.scicrunch.org/resolver/SCR_003931" | ||
], | ||
"meta_type": "dlthing:Thing", | ||
"@type": "Thing" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Relate a thing to topic/subjects | ||
id: https://doi.org/10.21105/joss.03262 | ||
is_about: | ||
# DataLad software | ||
- https://www.scicrunch.org/resolver/SCR_003931 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters