Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/model/vocab/required/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down Expand Up @@ -177,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)
Expand Down