Skip to content

Super Catalogues#

You can utilise the DCAT-AP fields dct:hasPart and dct:isPartOf to organise your catalogues within a designated super catalogue. A super catalogue should include dct:hasPart field to list all the catalogues that belong to it. Similarly, a catalogue should have a dct:isPartOf field to establish a link with its corresponding super catalogue, if applicable. Note that:

  • A super catalogue can contain N catalogues.
  • A super catalogue cannot contain other super catalogues.
  • A super catalogue cannot contain datasets.
  • Each catalogue can only belong to 1 super catalogue.
  • A catalogue does not have to belong to a super catalogue.

The diagram below illustrates the limitation discussed above:

graph TD

SC(Europe) --> C1(Germany)
SC(Europe) --> C2(UK)

C1(Germany) --> D1(Berlin)
C1(Germany) --> D2(NRW)
C2(UK) --> D3(Wales)
C2(UK) --> D4(Northen Ireland)
C3(North Pole) --> D5(Bears)
C3(North Pole) --> D6(Penguins)

SC ~~~ C3

subgraph Super Catalogue
  SC
end
subgraph Catalogues
  C1
  C2
  C3
end
subgraph Datasets
  D1
  D2
  D3
  D4
  D5
  D6
end

classDef green fill:#9f6,stroke:#333,stroke-width:2px;
classDef orange fill:#f96,stroke:#333;
classDef white fill:#fff,stroke:#333;
class SC green
class C1 orange
class C2 orange
class C3 orange
class D1 white
class D2 white
class D3 white
class D4 white
class D5 white
class D6 white