Object
Info
The object endpoint provides access to a single object from the Design Museum Gent collection, enriched with multilingual titles, descriptions, production and acquisition history, material information, validated image links and color data extracted from digital reproductions.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
colors | boolean | false | Include color data extracted from the digital image — HEX values, CSS names and base colors with percentages |
endpoint:
GET https://data.designmuseumgent.be/v2/id/object/{PID}
# check if an object exists
curl -I 'https://data.designmuseumgent.be/v2/id/object/1987-1105'
# conditional GET — only fetch if changed
curl -H 'If-None-Match: "1987-1105-1714298326000"' \
'https://data.designmuseumgent.be/v2/id/object/1987-1105'
example:
GET https://data.designmuseumgent.be/v2/id/object/1987-1105?colors=true
Response format
Data is returned as CIDOC-CRM compliant JSON-LD using the following vocabularies:
| Prefix | Namespace |
|---|---|
crm | http://www.cidoc-crm.org/cidoc-crm/ |
owl | https://www.w3.org/2002/07/owl# |
rdfs | http://www.w3.org/2000/01/rdf-schema# |
xsd | http://www.w3.org/2001/XMLSchema# |
prov | http://www.w3.org/ns/prov# |
| Code | Description |
|---|---|
| 200 | Successful request |
| 301 | Object has been merged — follow the Location header |
| 404 | Object not found |
| 410 | Object permanently removed |
| 500 | Server error |
Cache validation headers are included on every 200 response:
| Header | Description |
|---|---|
ETag | Cache validation token based on PID and last harvest timestamp |
Last-Modified | Timestamp of last harvest in HTTP date format |
Cache-Control | public, max-age=3600 |
Array consistency
All properties that can have multiple values are always returned as arrays, even when only one value is present. This guarantees a consistent shape regardless of collection data, so clients can always use the same JSONPath selector.
| Property | Always array |
|---|---|
crm:P108i_was_produced_by | ✓ |
crm:P94i_was_created_by | ✓ |
crm:P12i_was_present_at | ✓ |
crm:P2_has_type | ✓ |
crm:P45_consists_of | ✓ |
crm:P46_has_component | ✓ |
crm:P106_is_composed_of | ✓ |
crm:P106i_forms_part_of | ✓ |
crm:P138i_has_representation | ✓ |
crm:P67i_is_referred_to_by | ✓ |
crm:P1_is_identified_by | ✓ |
Properties that are semantically singular remain objects: crm:P50_has_current_keeper, crm:P24i_changed_ownership_through, crm:P46i_forms_part_of, crm:P129i_is_subject_of.
Special cases
Permanently removed objects
If an object has been permanently removed from the collection, the API returns HTTP 410 Gone:
{
"error": "This object has been permanently removed from our collection."
}
Resolved objects
Objects are sometimes merged into another record. In these cases the API returns HTTP 301 Moved Permanently with a Location header pointing to the canonical URI:
HTTP/1.1 301 Moved Permanently
Location: https://data.designmuseumgent.be/v2/id/object/1987-0858
{
"message": "This object has been merged into 1987-0858.",
"resolved": "https://data.designmuseumgent.be/v2/id/object/1987-0858"
}
Tips
Most HTTP clients follow redirects automatically. Make sure your client is configured to follow 301 redirects to always receive the canonical record.
Fields
Basic identification
| Field | Type | Description | Example |
|---|---|---|---|
@id | URI | Internal DMG URI for the object | https://data.designmuseumgent.be/v2/id/object/1987-1105 |
@type | string | CIDOC-CRM class | crm:E22_Human-Made_Object |
rdfs:label | string | Default label (Dutch title) | "Beeldje van een vis in opaalglas" |
owl:sameAs | array | External authority URI(s) in the Stad Gent datahub | |
prov:generatedAtTime | xsd:dateTime | Timestamp of last harvest | "2026-04-28T10:38:46" |
Warning
Stad Gent URIs (stad.gent/id/...) in owl:sameAs are persistent identifiers but do not currently resolve. Getty, Wikidata and EU Publications Office URIs do resolve and return linked data.
Provenance — prov:generatedAtTime
Each record includes a prov:generatedAtTime timestamp indicating when the record was last harvested from the source system. This is not the date the object was created or modified in the collection management system.
Incremental harvesting
Use prov:generatedAtTime together with ?modifiedSince= to build efficient incremental sync pipelines:
GET https://data.designmuseumgent.be/v2/id/objects?modifiedSince=2026-05-01&fullRecord=true
The ETag and Last-Modified response headers expose the same timestamp for HTTP cache validation.
Identifiers and titles — crm:P1_is_identified_by
Always an array of crm:E42_Identifier (object number) and crm:E41_Appellation (multilingual title) nodes. Titles are available in Dutch, French and English where translations exist. Language tags use EU Publications Office language authority URIs (NLD, FRA, ENG).
Object type — crm:P2_has_type
Always an array of concept types classifying the object, resolved to internal DMG concept URIs where available, with owl:sameAs pointing to external authority URIs (Getty AAT).
Materials — crm:P45_consists_of
Always an array of materials typed as crm:E57_Material, resolved to internal DMG concept URIs where available.
Descriptions — crm:P67i_is_referred_to_by
Always an array of crm:E33_Linguistic_Object nodes, one per available language, typed as Getty AAT 300080091 (description). Not all objects have descriptions in all three languages.
Current keeper — crm:P50_has_current_keeper
Always Design Museum Gent (http://www.wikidata.org/entity/Q1809071). Singular object, not an array.
Production — crm:P108i_was_produced_by
Always an array of crm:E12_Production events describing the physical making of the object. Each event has a unique indexed URI (/production/1, /production/2, etc.).
| Field | Description |
|---|---|
@id | URI of the production event |
crm:P14_carried_out_by | Producer — resolved to internal DMG agent URI with owl:sameAs |
crm:P7_took_place_at | Place of production (Getty TGN) |
crm:P32_used_general_technique | Technique(s) used — resolved to internal DMG concept URI |
crm:P4_has_time-span | Date of production as EDTF string with xsd:gYear values |
Info
Production dates are stored as indexed integer columns (production_year_begin, production_year_end) enabling the ?date=, ?dateFrom= and ?dateTo= filters. EDTF uncertainty markers (~, ?, %) are stripped before storing.
Creation — crm:P94i_was_created_by
Always an array of crm:E65_Creation events describing the intellectual design act. Each event has a unique indexed URI (/creation/1, /creation/2, etc.).
| Field | Description |
|---|---|
@id | URI of the creation event |
crm:P14_carried_out_by | Designer — resolved to internal DMG agent URI |
crm:P7_took_place_at | Place of creation (Getty TGN) |
crm:P4_has_time-span | Date of creation as EDTF string |
Info
Production (crm:E12_Production) and Creation (crm:E65_Creation) are modelled as separate events because they represent distinct activities — the physical making and the intellectual design act — which may involve different actors, places and dates.
Acquisition — crm:P24i_changed_ownership_through
Singular object describing how the object entered the collection as a crm:E8_Acquisition event.
| Field | Description |
|---|---|
crm:P2_has_type | Acquisition method (e.g. "legaat", "aankoop") |
crm:P4_has_time-span | Year of acquisition |
crm:P7_took_place_at | Place of acquisition (Getty TGN) |
crm:P22_transferred_title_to | Receiving institution |
Dimensions — crm:P43_has_dimension
Array of crm:E54_Dimension nodes for the overall object. Unit is always cm (http://vocab.getty.edu/aat/300379098). Individual physical parts may also carry their own crm:P43_has_dimension — see below.
Physical parts — crm:P46_has_component
Always an array of named physical components that the object physically consists of, as recorded in fysiekeOnderdelen in the source system. Each part has a /part/N URI scoped to the parent object and may include its own materials and dimensions.
This is distinct from the set membership relationship — see crm:P106_is_composed_of below.
"crm:P46_has_component": [
{
"@id": "https://data.designmuseumgent.be/v2/id/object/2016-0017/part/1",
"@type": "crm:E22_Human-Made_Object",
"rdfs:label": "vormen",
"crm:P45_consists_of": [
{
"@id": "https://data.designmuseumgent.be/v2/id/concept/530006485",
"@type": "crm:E57_Material",
"owl:sameAs": "http://vocab.getty.edu/aat/300010662",
"rdfs:label": "porselein"
}
]
},
{
"@id": "https://data.designmuseumgent.be/v2/id/object/2016-0017/part/3",
"@type": "crm:E22_Human-Made_Object",
"rdfs:label": "onderdeel 1",
"crm:P43_has_dimension": [
{
"@type": "crm:E54_Dimension",
"crm:P2_has_type": {
"@id": "https://data.designmuseumgent.be/v2/id/type/hoogte",
"rdfs:label": "hoogte"
},
"crm:P90_has_value": 3.4,
"crm:P91_has_unit": { "rdfs:label": "cm" }
}
]
}
]
Info
Not all objects have named physical parts. When present, parts are served directly from the stored JSON-LD and are not affected by the koepelrecord relations columns.
Set composition — crm:P106_is_composed_of
Always an array. When an object is a koepelrecord — a parent grouping record for a set such as a cutlery service, a series of prints or a collection of tools — crm:P106_is_composed_of lists all member objects as resolvable DMG object URIs.
"crm:P106_is_composed_of": [
{
"@id": "https://data.designmuseumgent.be/v2/id/object/3645_1-3",
"@type": "crm:E22_Human-Made_Object"
},
{
"@id": "https://data.designmuseumgent.be/v2/id/object/3645_2-3",
"@type": "crm:E22_Human-Made_Object"
}
]
Set membership — crm:P46i_forms_part_of
Singular object. When an object is a member of a koepelrecord set, crm:P46i_forms_part_of points to the parent koepelrecord.
"crm:P46i_forms_part_of": {
"@id": "https://data.designmuseumgent.be/v2/id/object/3645_0-3",
"@type": "crm:E22_Human-Made_Object"
}
Object number pattern
| Pattern | Role | Example |
|---|---|---|
PREFIX_0-N | Koepelrecord (parent) | 3645_0-3 — parent of 3 set members |
PREFIX_X-N | Set member | 3645_1-3 — member 1 of 3 |
Summary of component and set properties
| Property | Shape | Direction | Description |
|---|---|---|---|
crm:P46_has_component | array | object → physical parts | Named parts physically constituting this object (fysiekeOnderdelen) — includes materials and dimensions |
crm:P106_is_composed_of | array | koepelrecord → set members | Objects that together form this set — resolvable URIs only |
crm:P46i_forms_part_of | object | set member → koepelrecord | This object belongs to this set |
Tips
Use crm:P46i_forms_part_of to navigate from a set member to its parent, and crm:P106_is_composed_of to navigate from a koepelrecord to all its members. Both URIs are fully resolvable via the object endpoint.
Sub-collections — crm:P106i_forms_part_of
Always an array. Objects may belong to one or more named sub-collections or provenance groups, modelled as crm:E78_Curated_Holding nodes. Distinct from both physical parts and koepelrecord set membership.
"crm:P106i_forms_part_of": [
{
"@id": "https://data.designmuseumgent.be/v2/id/concept/530010723",
"@type": "crm:E78_Curated_Holding",
"rdfs:label": "legaat Havermans",
"owl:sameAs": "https://stad.gent/id/concept/530010723"
}
]
Exhibitions — crm:P12i_was_present_at
Always an array of exhibitions the object was shown in. Each @id is an internal DMG URI pointing to the full exhibition record. When the exhibition is matched in the database, the external Stad Gent URI is preserved as owl:sameAs.
Media — crm:P129i_is_subject_of
Singular object or array depending on whether media resources are attached. Always contains the IIIF manifest when available. When video or audio resources are also present they are merged into the same property as additional crm:E73_Information_Object nodes, each typed using Getty AAT:
| Type | Getty AAT | Description |
|---|---|---|
| IIIF manifest | 300417895 | IIIF presentation manifest |
| Video | 300263419 | Video recording |
| Audio | 300312042 | Audio recording |
Each media node includes crm:P102_has_title and optionally crm:P4_has_time-span (publication year).
Images — crm:P138i_has_representation
Always an array of direct, validated links to IIIF image URIs. Only URIs returning 2xx/3xx from the IIIF image server are included — 403 and 404 images are pruned.
Each crm:E38_Image contains @id (full resolution), thumbnail (400px wide), crm:P3_has_note (attribution) and crm:P104_is_subject_to (rights statement as crm:E30_Right).
image is a non-CIDOC convenience field repeating the first image for clients that only need a single thumbnail (obj.image.thumbnail). JSON-LD consumers should ignore image and read crm:P138i_has_representation.
Color data — crm:P65_shows_visual_item
Info
Color data is hidden by default. Add ?colors=true to include it:
GET https://data.designmuseumgent.be/v2/id/object/1987-0959_0-3?colors=true
When ?colors=true is set, color information is exposed as one crm:E36_Visual_Item per image, each containing two crm:E26_Physical_Feature nodes:
/colors/hex — exact HEX values per dominant color cluster, with CSS name and percentage as crm:E54_Dimension.
/colors/base — same colors aggregated into broad base categories for indexing and filtering.
Available base colors: red orange yellow green blue purple pink brown grey black white
How colors are extracted
- Background removed using
rembgneural network — only the object itself is analysed - KMeans clustering groups foreground pixels into dominant clusters
- Each cluster is mapped to the closest CSS named color using LAB color distance
- Each cluster is also mapped to a base color category
Creative projects — crm:P15i_was_motivation_of
Array of crm:E7_Activity nodes when creative projects inspired by this object are available. Curated manually — not all objects have associated projects.
Example response
{
"@id": "https://data.designmuseumgent.be/v2/id/object/2016-0017",
"@type": "crm:E22_Human-Made_Object",
"@context": {
"crm": "http://www.cidoc-crm.org/cidoc-crm/",
"owl": "https://www.w3.org/2002/07/owl#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"prov": "http://www.w3.org/ns/prov#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#"
},
"owl:sameAs": ["https://stad.gent/id/mensgemaaktobject/dmg/530022921"],
"rdfs:label": "Artefacts of a New History",
"prov:generatedAtTime": {
"@type": "xsd:dateTime",
"@value": "2026-05-01T01:40:59.7479533"
},
"crm:P2_has_type": [
{
"@id": "https://data.designmuseumgent.be/v2/id/concept/530009189",
"@type": "crm:E55_Type",
"owl:sameAs": "http://vocab.getty.edu/aat/300166391",
"rdfs:label": "prototype"
}
],
"crm:P1_is_identified_by": [
{
"@id": "https://data.designmuseumgent.be/v2/id/object/2016-0017/identifier/objectnummer",
"@type": "crm:E42_Identifier",
"rdfs:label": "2016-0017",
"crm:P2_has_type": {
"@id": "https://data.designmuseumgent.be/v2/id/type/objectnummer",
"@type": "crm:E55_Type",
"rdfs:label": "Objectnummer"
}
},
{
"@type": "crm:E41_Appellation",
"rdfs:label": "Artefacts of a New History",
"crm:P72_has_language": {
"@id": "http://publications.europa.eu/resource/authority/language/NLD"
}
}
],
"crm:P67i_is_referred_to_by": [
{
"@type": "crm:E33_Linguistic_Object",
"rdfs:label": "'Artefacts of a New History' is een essenhouten kist met negen ge-3D-printe porseleinen objecten...",
"crm:P2_has_type": {
"@id": "http://vocab.getty.edu/aat/300080091",
"@type": "crm:E55_Type",
"rdfs:label": "description"
},
"crm:P72_has_language": {
"@id": "http://publications.europa.eu/resource/authority/language/NLD"
}
}
],
"crm:P50_has_current_keeper": {
"@id": "http://www.wikidata.org/entity/Q1809071",
"@type": "crm:E39_Actor",
"rdfs:label": "Design Museum Gent"
},
"crm:P108i_was_produced_by": [
{
"@id": "https://data.designmuseumgent.be/v2/id/object/2016-0017/production/1",
"@type": "crm:E12_Production",
"crm:P14_carried_out_by": {
"@id": "https://data.designmuseumgent.be/v2/id/agent/DMG-A-02681",
"@type": "crm:E39_Actor",
"owl:sameAs": "https://stad.gent/id/agent/530023101",
"rdfs:label": "Unfold"
},
"crm:P7_took_place_at": {
"@id": "http://vocab.getty.edu/tgn/7007856",
"@type": "crm:E53_Place",
"rdfs:label": "Antwerpen (stad)"
},
"crm:P32_used_general_technique": [
{
"@id": "https://data.designmuseumgent.be/v2/id/concept/530009209",
"@type": "crm:E55_Type",
"rdfs:label": "3D-printen"
}
],
"crm:P4_has_time-span": {
"@type": "crm:E52_Time-Span",
"rdfs:label": "2016/2016",
"crm:P82a_begin_of_the_begin": { "@type": "xsd:gYear", "@value": "2016" },
"crm:P82b_end_of_the_end": { "@type": "xsd:gYear", "@value": "2016" }
}
}
],
"crm:P94i_was_created_by": [
{
"@id": "https://data.designmuseumgent.be/v2/id/object/2016-0017/creation/1",
"@type": "crm:E65_Creation",
"crm:P14_carried_out_by": {
"@id": "https://data.designmuseumgent.be/v2/id/agent/DMG-A-02681",
"@type": "crm:E39_Actor",
"owl:sameAs": "https://stad.gent/id/agent/530023101",
"rdfs:label": "Unfold"
},
"crm:P7_took_place_at": {
"@id": "http://vocab.getty.edu/tgn/7007856",
"@type": "crm:E53_Place",
"rdfs:label": "Antwerpen (stad)"
},
"crm:P4_has_time-span": {
"@type": "crm:E52_Time-Span",
"rdfs:label": "2016/2016",
"crm:P82a_begin_of_the_begin": { "@type": "xsd:gYear", "@value": "2016" },
"crm:P82b_end_of_the_end": { "@type": "xsd:gYear", "@value": "2016" }
}
},
{
"@id": "https://data.designmuseumgent.be/v2/id/object/2016-0017/creation/2",
"@type": "crm:E65_Creation",
"crm:P14_carried_out_by": {
"@id": "https://data.designmuseumgent.be/v2/id/agent/DMG-A-04902",
"@type": "crm:E39_Actor",
"owl:sameAs": "https://stad.gent/id/agent/530025517",
"rdfs:label": "Verbruggen, Dries"
},
"crm:P7_took_place_at": {
"@id": "http://vocab.getty.edu/tgn/7007856",
"@type": "crm:E53_Place",
"rdfs:label": "Antwerpen (stad)"
},
"crm:P4_has_time-span": {
"@type": "crm:E52_Time-Span",
"rdfs:label": "2016/2016",
"crm:P82a_begin_of_the_begin": { "@type": "xsd:gYear", "@value": "2016" },
"crm:P82b_end_of_the_end": { "@type": "xsd:gYear", "@value": "2016" }
}
},
{
"@id": "https://data.designmuseumgent.be/v2/id/object/2016-0017/creation/3",
"@type": "crm:E65_Creation",
"crm:P14_carried_out_by": {
"@id": "https://data.designmuseumgent.be/v2/id/agent/DMG-A-04903",
"@type": "crm:E39_Actor",
"owl:sameAs": "https://stad.gent/id/agent/530025518",
"rdfs:label": "Warnier, Claire"
},
"crm:P7_took_place_at": {
"@id": "http://vocab.getty.edu/tgn/7007856",
"@type": "crm:E53_Place",
"rdfs:label": "Antwerpen (stad)"
},
"crm:P4_has_time-span": {
"@type": "crm:E52_Time-Span",
"rdfs:label": "2016/2016",
"crm:P82a_begin_of_the_begin": { "@type": "xsd:gYear", "@value": "2016" },
"crm:P82b_end_of_the_end": { "@type": "xsd:gYear", "@value": "2016" }
}
}
],
"crm:P24i_changed_ownership_through": {
"@id": "https://data.designmuseumgent.be/v2/id/object/2016-0017/acquisition",
"@type": "crm:E8_Acquisition",
"crm:P2_has_type": {
"@id": "https://data.designmuseumgent.be/v2/id/concept/530001021",
"@type": "crm:E55_Type",
"rdfs:label": "aankoop"
},
"crm:P4_has_time-span": {
"@type": "crm:E52_Time-Span",
"rdfs:label": "2016",
"crm:P82a_begin_of_the_begin": { "@type": "xsd:gYear", "@value": "2016" },
"crm:P82b_end_of_the_end": { "@type": "xsd:gYear", "@value": "2016" }
},
"crm:P7_took_place_at": {
"@id": "http://vocab.getty.edu/tgn/7007856",
"@type": "crm:E53_Place",
"rdfs:label": "Antwerpen (stad)"
},
"crm:P22_transferred_title_to": {
"@id": "http://www.wikidata.org/entity/Q1809071",
"@type": "crm:E39_Actor",
"rdfs:label": "Design Museum Gent"
}
},
"crm:P43_has_dimension": [
{
"@type": "crm:E54_Dimension",
"crm:P2_has_type": {
"@id": "https://data.designmuseumgent.be/v2/id/type/hoogte",
"@type": "crm:E55_Type",
"rdfs:label": "hoogte"
},
"crm:P90_has_value": 6,
"crm:P91_has_unit": {
"@id": "http://vocab.getty.edu/aat/300379098",
"@type": "crm:E58_Measurement_Unit",
"rdfs:label": "cm"
}
}
],
"crm:P46_has_component": [
{
"@id": "https://data.designmuseumgent.be/v2/id/object/2016-0017/part/1",
"@type": "crm:E22_Human-Made_Object",
"rdfs:label": "vormen",
"crm:P45_consists_of": [
{
"@id": "https://data.designmuseumgent.be/v2/id/concept/530006485",
"@type": "crm:E57_Material",
"owl:sameAs": "http://vocab.getty.edu/aat/300010662",
"rdfs:label": "porselein"
}
]
},
{
"@id": "https://data.designmuseumgent.be/v2/id/object/2016-0017/part/3",
"@type": "crm:E22_Human-Made_Object",
"rdfs:label": "onderdeel 1",
"crm:P43_has_dimension": [
{
"@type": "crm:E54_Dimension",
"crm:P2_has_type": {
"@id": "https://data.designmuseumgent.be/v2/id/type/hoogte",
"@type": "crm:E55_Type",
"rdfs:label": "hoogte"
},
"crm:P90_has_value": 3.4,
"crm:P91_has_unit": {
"@id": "http://vocab.getty.edu/aat/300379098",
"@type": "crm:E58_Measurement_Unit",
"rdfs:label": "cm"
}
},
{
"@type": "crm:E54_Dimension",
"crm:P2_has_type": {
"@id": "https://data.designmuseumgent.be/v2/id/type/diameter",
"@type": "crm:E55_Type",
"rdfs:label": "diameter"
},
"crm:P90_has_value": 9,
"crm:P91_has_unit": {
"@id": "http://vocab.getty.edu/aat/300379098",
"@type": "crm:E58_Measurement_Unit",
"rdfs:label": "cm"
}
}
]
}
],
"crm:P12i_was_present_at": [
{
"@id": "https://data.designmuseumgent.be/v2/id/exhibition/TE_2019-003",
"@type": "crm:E7_Activity",
"owl:sameAs": "https://stad.gent/id/tentoonstelling/530003698",
"rdfs:label": "Object Stories. Een kijk op de collectie"
}
],
"crm:P129i_is_subject_of": {
"@id": "https://api.collectie.gent/iiif/presentation/v2/manifest/dmg:2016-0017",
"@type": "crm:E73_Information_Object",
"crm:P2_has_type": {
"@id": "http://vocab.getty.edu/aat/300417895",
"@type": "crm:E55_Type",
"rdfs:label": "IIIF manifest"
}
},
"crm:P138i_has_representation": [
{
"@id": "https://api.collectie.gent/iiif/image/iiif/2/example.jpg/full/full/0/default.jpg",
"@type": "crm:E38_Image",
"thumbnail": "https://api.collectie.gent/iiif/image/iiif/2/example.jpg/full/400,/0/default.jpg",
"crm:P3_has_note": "photographer: Foto Design Museum Gent, source: Design Museum Gent",
"crm:P104_is_subject_to": {
"@id": "http://creativecommons.org/publicdomain/zero/1.0/",
"@type": "crm:E30_Right"
}
}
],
"image": {
"@id": "https://api.collectie.gent/iiif/image/iiif/2/example.jpg/full/full/0/default.jpg",
"@type": "crm:E38_Image",
"thumbnail": "https://api.collectie.gent/iiif/image/iiif/2/example.jpg/full/400,/0/default.jpg",
"crm:P3_has_note": "photographer: Foto Design Museum Gent, source: Design Museum Gent",
"crm:P104_is_subject_to": {
"@id": "http://creativecommons.org/publicdomain/zero/1.0/",
"@type": "crm:E30_Right"
}
}
}
Examples
- Object with physical parts and dimensions: 2016-0017
- Object with multiple producers: 2017-0042_0
- Koepelrecord with set members: 3645_0-3
- Color data: 1987-0959_0-3?colors=true
- Media and projects: 1987-1105