Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dcat:Catalog: publisher granularity #386

Open
huberrob opened this issue Aug 5, 2024 · 3 comments
Open

dcat:Catalog: publisher granularity #386

huberrob opened this issue Aug 5, 2024 · 3 comments
Labels
feedback-requested Community feedback requested

Comments

@huberrob
Copy link

huberrob commented Aug 5, 2024

In DCAT-AP class dcat:Catalog has a dc:publisher property with granularity 1.
However there are some repositories/catalogs which are maintained by several organisations which share responsibilities such as PANGAEA which is jointly operated by awi.de and marum.de.
Therefore, changing granularity of d:publisher in this class should be changed to 1...*

@bertvannuffelen
Copy link
Contributor

@huberrob thanks for this feedback.

To better understand your request some followup questions:

A publisher is the organisation that takes the responsability to provide access to the catalogue. Ownership (or responsible for the content) is often the same organisation, but not always. Is that a distinction you want to make?
In your case is the catalogue being made available by multiple organisations on different (web)locations?
If someone has problems with the catalogue which organisation is than the first contact point or are both to be contacted?

@huberrob
Copy link
Author

huberrob commented Sep 4, 2024

No, I am specifically referring to the role publisher (DCTERMS: 'An entity responsible for making the resource available'). For example PANGAEA is operated by two organisations which equally share this responsibility (tech teams and content teams on both sides) so there are two organisations which both act as publisher (and are very picky with this;).

@bertvannuffelen bertvannuffelen added the feedback-requested Community feedback requested label Sep 4, 2024
@init-dcat-ap-de
Copy link

The range is a foaf:Agent. If you need more than one publisher, you can always use the foaf:Group class to bundle all members of the publisher group.

<ds123> a dcat:Dataset ;
  dcterms:publisher [
    a foaf:Group, foaf:Agent ;
    foaf:name "PANGEA Publisher Group" ;
    foaf:member [
      a foaf:Agent ;
      foaf:name "Org 1" ;
    ] , [
      a foaf:Agent ;
      foaf:name "Org 2" ;
    ] ;
  ] .

You could also use the Organization Ontology.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feedback-requested Community feedback requested
Projects
None yet
Development

No branches or pull requests

3 participants