Schemas / Art (CDWA core)
rig.art.creation
v0.31.0 · draft 3 fields 0 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
createdDate |
string | optional | Creation date as the source wrote it (1889, ca. 1888-1889) |
period |
string | optional | Style / period / movement |
culture |
string | optional | Culture or people |
Creation date and period of a work. Format when present.
Field meanings follow CDWA Creation (date, period) and VRA Core date / stylePeriod. The maker is not repeated here.
All fields optional. Emit what the source has. An empty component is invalid - attach at least one field.
Do not force ISO 8601 when the source is approximate. The maker is rig.art.attribution.
JSON Schema
Resolves at https://rig.works/schemas/rig.art.creation.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.art.creation.schema.json",
"title": "rig.art.creation",
"type": "object",
"additionalProperties": false,
"properties": {
"createdDate": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"period": {
"$ref": "./_defs.schema.json#/$defs/string"
},
"culture": {
"$ref": "./_defs.schema.json#/$defs/string"
}
},
"description": "Creation date and period. Field meanings follow CDWA Creation. Maker is rig.art.attribution.",
"minProperties": 1
}