Schemas / Art (CDWA core)
rig.art.image
v0.31.0 · draft 1 field 1 required
Fields
| Field | Type | Meaning | |
|---|---|---|---|
asset |
entity | required | Entity carrying rig.media.asset_ref (kind image) |
Documentary image of a work. Format when present.
VRA Core distinguishes the work from images of the work. This schema is that image link.
Do not put a path on this schema. File identity lives on the asset entity. A second image is another entity.
JSON Schema
Resolves at https://rig.works/schemas/rig.art.image.schema.json —
raw file.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://rig.works/schemas/rig.art.image.schema.json",
"title": "rig.art.image",
"type": "object",
"additionalProperties": false,
"properties": {
"asset": {
"$ref": "./_defs.schema.json#/$defs/entity"
}
},
"required": [
"asset"
],
"description": "Documentary image of a work. asset is a rig.media.asset_ref entity. Not an inline path."
}