Schemas / Art (CDWA core)
rig.art.material
v0.31.0 · draft 3 fields 0 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
medium |
string | optional | Medium (oil, bronze) |
technique |
string | optional | How it was made (painting, carved) |
support |
string | optional | Support (canvas, panel, paper) |
Materials and techniques of a work. Format when present.
Field meanings follow CDWA Materials/Techniques and VRA Core material / technique.
All fields optional. Emit what the source has. An empty component is invalid - attach at least one field.
A combined phrase (oil on canvas) may be mapped into medium + support. Do not dual-author the phrase and the parts.
JSON Schema
Resolves at https://rig.works/schemas/rig.art.material.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.art.material.schema.json",
"title": "rig.art.material",
"type": "object",
"additionalProperties": false,
"properties": {
"medium": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"technique": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"support": {
"$ref": "./_defs.schema.json#/$defs/string"
}
},
"description": "Materials and techniques. Field meanings follow CDWA Materials/Techniques and VRA Core material / technique.",
"minProperties": 1
}