From dbc7d9e3fa855e383de1d9c73135795c3334f26a Mon Sep 17 00:00:00 2001 From: Edward Anderson Date: Mon, 29 Jun 2026 16:56:48 +0100 Subject: [PATCH 1/2] add requried term: part type --- docs/model/vocab/required/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/model/vocab/required/index.md b/docs/model/vocab/required/index.md index 1e5bc1f2..31d7ca77 100644 --- a/docs/model/vocab/required/index.md +++ b/docs/model/vocab/required/index.md @@ -26,6 +26,7 @@ For brevity in the table, the AAT URI is compacted with a namespace, however the | Shape | aat:300056273 | Type | A shape | | Occupation | aat:300263369 | Type | An occupation | | Nationality | aat:300379842 | Type | A nationality | +| Part Type | aat:300241583 | Type | A type of part | | Color | aat:300080438 | Dimension | A color | | Exhibition Activity | aat:300054766 | Activity | An exhibition | | Provenance Activity | aat:300055863 | Activity | A provenance activity | From cbad0ca2c703889ec682acfb03b30b516e7bc381 Mon Sep 17 00:00:00 2001 From: Edward Anderson Date: Tue, 30 Jun 2026 10:19:21 +0100 Subject: [PATCH 2/2] docs and example --- docs/model/vocab/required/index.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/model/vocab/required/index.md b/docs/model/vocab/required/index.md index 31d7ca77..7f3aa0dc 100644 --- a/docs/model/vocab/required/index.md +++ b/docs/model/vocab/required/index.md @@ -178,6 +178,18 @@ top = model.Person(ident="rembrandt/43", label="Rembrandt") top.classified_as = vocab.instances['artist occupation'] ``` +### Part Type + +The URI for Part Type is: [http://vocab.getty.edu/aat/300241583](http://vocab.getty.edu/aat/300241583) + +There are many features of a physical object that can be considered component parts (support, frame, drawer, ...). As with [Type of Work](#type-of-work), we do not specify a vocabulary of terms for these parts and instead require that any classification is itself classified with the Part Type meta-type. + +```crom +top = vocab.SupportPart(ident="nightwatch/support", label="Support of Night Watch") +top.made_of = vocab.instances['canvas'] +top.part_of = model.HumanMadeObject(ident="nightwatch", label="Night Watch by Rembrandt") +``` + ### Color The URI for Color is: [http://vocab.getty.edu/aat/300080438](http://vocab.getty.edu/aat/300080438)