artist
artist · No Google docs page
Appears in
What is it?
The artist property identifies the primary creator of a visual artwork. It names the person responsible for the work in a specific medium, such as painting, sculpture, or installation art.
artist is distinct from creator: the schema.org spec defines artist as the person working in the primary artwork medium (watercolors, digital paints), while creator is broader and applies to any CreativeWork.
Why this matters for AEO
When a user asks "who created the painting La trahison des images," AI answer engines pull the artist field to attribute the work directly. Structured artist data with a Person object lets the AI answer with both the name and a disambiguation link, rather than scanning page text for artist mentions.
What the specs say
Schema.org:Person. The primary artist for a work in a medium other than pencils or digital line art, for example, if the primary artwork is done in watercolors or digital paints.
Google: No dedicated Google structured data page exists for VisualArtwork.
How to find your value
- Museum records — Artist attribution in catalog entries
- Gallery websites — Artist name on artwork pages
- Provenance records — Chain of ownership documentation
- Art databases — Wikidata, ULAN (Union List of Artist Names)
- Exhibition catalogs — Wall labels and catalog entries
Format and code
Single artist:
{
"@context": "https://schema.org",
"@type": "VisualArtwork",
"name": "La trahison des images",
"artist": {
"@type": "Person",
"name": "René Magritte"
}
}
With disambiguation:
{
"@context": "https://schema.org",
"@type": "VisualArtwork",
"name": "My Bed",
"artist": {
"@type": "Person",
"name": "Tracey Emin",
"sameAs": "https://www.wikidata.org/wiki/Q229455"
}
}
Multiple artists (collaborative works):
{
"artist": [
{"@type": "Person", "name": "Tracey Emin"},
{"@type": "Person", "name": "Louise Bourgeois"}
]
}
Webflow implementation
Static pages
Add the artist object inside your VisualArtwork JSON-LD block in Page Settings > Custom Code > Footer Code. Include name and, when possible, a sameAs link to Wikidata or ULAN.
CMS template pages
Create CMS text fields for artist name and identifier URL. Reference them in a custom code embed to build the Person object dynamically.
In Schema HQ
The artist field does not currently generate VisualArtwork markup. Add artist data manually through Webflow custom code.
Real examples
From Schema.org VisualArtwork Example:
{
"@context": "https://schema.org",
"@type": "VisualArtwork",
"name": "My Bed",
"artform": "installation",
"artist": [{"@type": "Person", "name": "Tracey Emin"}],
"artMedium": ["bedsheets", "condoms", "bed"]
}
From Lazarus Corporation Arts Blog:
{
"@context": "https://schema.org",
"@type": "VisualArtwork",
"name": "Still Life under the Lamp",
"artform": "print",
"artist": [{"@type": "Person", "name": "Pablo Picasso"}],
"artMedium": "linoprint",
"artworkSurface": "paper"
}
Related fields
FAQ
What is the difference between artist and creator?
artist is specific to visual art media (painting, sculpture, installation). creator is a general property for any CreativeWork. For VisualArtwork, artist is the more precise choice. Both accept Person objects.
Can artist be an Organization?
No. Schema.org defines artist as accepting only Person. For works created by a collective or studio, use creator with an Organization object, or list individual members as separate artist entries.
Should I include a sameAs link for the artist?
Yes, when available. A sameAs link to Wikidata, ULAN, or the artist's official website helps search engines and AI systems disambiguate artists who share the same name.