Artist Portfolio Stack
Artist portfolios with Person + CreativeWork context, FAQs, and breadcrumb navigation.
When to use this stack
- Artist portfolio pages with selected works
- Creative professional bios with featured projects
- Pages where FAQs clarify commissions, process, and licensing
What is included
Represents the artist and portfolio owner.
Highlights portfolio pieces or collections.
Answers commission, licensing, and availability questions.
Provides navigation context to the portfolio page.
Properties across the bundle
Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.
Required properties
- creator.name
- itemListElement[].name
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- url
Recommended properties
- datePublished
- description
- image
- itemListElement[].item
- jobTitle
- knowsAbout
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- sameAs[]
Combined JSON-LD
Paste this as one script tag, then replace every example value with data from the live page.
[
{
"@context": "https://schema.org",
"@type": "Person",
"@id": "https://www.example.com/artists/avery#person",
"name": "Avery Chen",
"url": "https://www.example.com/artists/avery",
"jobTitle": "Illustrator",
"image": "https://www.example.com/images/avery-chen.webp",
"knowsAbout": ["Editorial Illustration", "Brand Identity", "Digital Painting"],
"sameAs": [
"https://www.instagram.com/averychen",
"https://www.behance.net/averychen"
]
},
{
"@context": "https://schema.org",
"@type": "CreativeWork",
"@id": "https://www.example.com/artists/avery#work-1",
"name": "Neon Market Poster Series",
"creator": {
"@type": "Person",
"name": "Avery Chen"
},
"url": "https://www.example.com/portfolio/neon-market",
"description": "A three-poster series exploring urban light and motion.",
"datePublished": "2024-08-12",
"image": "https://www.example.com/images/neon-market.webp"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Are commissions open?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. I accept a limited number of commissions each quarter. Use the inquiry form to request availability."
}
},
{
"@type": "Question",
"name": "Do you license existing artwork?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Licensing is available for editorial and commercial use. Provide usage details for a quote."
}
},
{
"@type": "Question",
"name": "What is your typical timeline?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most projects take 2–4 weeks depending on complexity and revision rounds."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Artists", "item": "https://www.example.com/artists" },
{ "@type": "ListItem", "position": 3, "name": "Avery Chen", "item": "https://www.example.com/artists/avery" }
]
}
]Implement and verify
- 01
Start with the live page
Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.
- 02
Add one JSON-LD script
Use the combined example as a template in the document head or before the closing body tag.
- 03
Complete regional details
Fill shipping destinations and timing for every region the page actually serves.
- 04
Link the return policy
Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.
- 05
Match visible answers
Add only FAQs that users can read on the same page, with identical answers.
- 06
Validate after changes
Run Rich Results Test after implementation and whenever price, availability, or policy data changes.
Common errors and fixes
- Missing currency or availability
Use ISO currency codes and complete schema.org availability URLs in Offer data.
- Incomplete shipping details
Include shippingDestination.addressCountry and deliveryTime.transitTime with units.
- Return policy is not connected
Reference MerchantReturnPolicy from the Offer and provide a stable public policy URL.
- FAQ answers differ from the page
Keep structured FAQ answers identical to visible answers.
Stack FAQs
Can I list multiple portfolio pieces?
Yes. Add one CreativeWork per piece with unique @id values and URLs matching visible work pages.
Should I include awards or exhibitions?
Include them in the page body and add CreativeWork items if they are listed as distinct works.