Schemas / Art (CDWA core)
rig.art.object
v0.31.0 · draft 3 fields 0 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
workType |
string | optional | Kind of object (painting, sculpture, photograph) |
classification |
string | optional | Collection class (Paintings) |
inscription |
string | optional | Inscriptions / marks |
Object / work type of an artwork or cultural object. Format when present.
Field meanings follow CDWA Object/Work and Classification (the core subset), and VRA Core worktype. This schema is those type slots - not a LIDO XML file and not scene geometry.
All fields optional. Emit what the source has. An empty component is invalid - attach at least one field.
The title is rig.meta.named. Maker, date, measurements, materials, location, subject, image, and rights are sibling schemas. Do not re-declare those here.
JSON Schema
Resolves at https://rig.works/schemas/rig.art.object.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.art.object.schema.json",
"title": "rig.art.object",
"type": "object",
"additionalProperties": false,
"properties": {
"workType": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"classification": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"inscription": {
"$ref": "./_defs.schema.json#/$defs/string"
}
},
"description": "Object / work type. Field meanings follow CDWA Object/Work and Classification. Title is rig.meta.named.",
"minProperties": 1
}