Skip to content

Commit

Permalink
feat: Identity datasets by their URI
Browse files Browse the repository at this point in the history
* Consistently identify variants with hash (#) instead of slash (/).

BREAKING CHANGE: terminology sources are no longer identifier by their
distribution URI. Keep BC by still allowing the distribution URI to be
used when searching. However, the sources query now returns source
instead of distribution URIs.
  • Loading branch information
ddeboer committed Sep 17, 2024
1 parent 9fd718b commit 17a88a6
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export default {
],
coverageThreshold: {
global: {
lines: 91.39,
statements: 91.39,
lines: 91.4,
statements: 91.4,
branches: 95.45,
functions: 92.62,
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"@context": "https://schema.org/docs/jsonldcontext.jsonld",
"@id": "http://vocab.getty.edu/aat/materials",
"@id": "http://vocab.getty.edu/aat#materials",
"@type": "Dataset",
"name": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"@context": "https://schema.org/docs/jsonldcontext.jsonld",
"@id": "http://vocab.getty.edu/aat/processes-and-techniques",
"@id": "http://vocab.getty.edu/aat#processes-and-techniques",
"@type": "Dataset",
"name": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"@context": "https://schema.org/docs/jsonldcontext.jsonld",
"@id": "http://vocab.getty.edu/aat/styles-and-periods",
"@id": "http://vocab.getty.edu/aat#styles-and-periods",
"@type": "Dataset",
"name": [
{
Expand All @@ -20,7 +20,7 @@
},
{
"@id": "https://data.cultureelerfgoed.nl/termennetwerk/onderwerpen/Stijlen"
}
}
],
"creator": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"@context": "https://schema.org/docs/jsonldcontext.jsonld",
"@id": "https://data.cultureelerfgoed.nl/term/id/cht/materials",
"@id": "https://data.cultureelerfgoed.nl/term/id/cht#materials",
"@type": "Dataset",
"name": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"@context": "https://schema.org/docs/jsonldcontext.jsonld",
"@id": "https://data.cultureelerfgoed.nl/term/id/cht/styles-and-periodes",
"@id": "https://data.cultureelerfgoed.nl/term/id/cht#styles-and-periodes",
"@type": "Dataset",
"name": [
{
Expand Down

0 comments on commit 17a88a6

Please sign in to comment.