netwerk-digitaal-erfgoed / requirements-datasets

Requirements for datasets
https://netwerk-digitaal-erfgoed.github.io/requirements-datasets/
1 stars 0 forks source link

Update conceptual model #50

Closed coret closed 2 years ago

coret commented 2 years ago
ddeboer commented 2 years ago

is license an IRI? In example it's a literal...

In which example?

ddeboer commented 2 years ago

See #51. I kept the label ‘publisher’ because the simple diagram is meant to only show required relations; publisher is required whereas creator is not.

coret commented 2 years ago

is license an IRI? In example it's a literal...

In which example?

I was referring to Example 3:

{
  "@context": "https://schema.org/",
  "@type": "Dataset",
  "license": "http://creativecommons.org/publicdomain/zero/1.0/"
}

But it's my bad, I thought you had to write "license":{"@id":"http://creativecommons.org/publicdomain/zero/1.0/"} to indicate an IRI, but confusingly "license": "http://creativecommons.org/publicdomain/zero/1.0/" is the same, but short-hand. Note to self: If you really wanted a literal, you'd have to write "license":{"@value":"http://creativecommons.org/publicdomain/zero/1.0/"}.