Compliance / Certification Stack
Compliance/certification pages linking Organization identity with Certificate details, FAQs, and breadcrumb navigation.
When to use this stack
- Security/compliance certification pages (SOC 2, ISO, PCI) tied to the organization
- Trust/verification pages that need certificate metadata and FAQs
- Pages where FAQs clarify scope, validity, and renewal cadence
What is included
Anchors the certified organization with logo and URL.
Represents the compliance certificate with issuer and validity.
Answers scope, renewal, and audit questions.
Provides navigation context to the certification 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
- description
- issuedBy.name
- itemListElement[].name
- logo
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- url
Recommended properties
- contactPoint.contactType
- itemListElement[].item
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- sameAs
- url
- validUntil
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": "Organization",
"@id": "https://www.example.com/#org",
"name": "Example Corp",
"url": "https://www.example.com",
"logo": "https://www.example.com/assets/logo.svg",
"sameAs": [
"https://www.linkedin.com/company/example-corp"
]
},
{
"@context": "https://schema.org",
"@type": "Certificate",
"@id": "https://www.example.com/trust/soc2#certificate",
"name": "SOC 2 Type II — Example Corp",
"description": "SOC 2 Type II report covering Security and Availability trust principles.",
"issuedBy": { "@type": "Organization", "name": "Trusted Auditors LLC" },
"validUntil": "2026-03-31",
"url": "https://www.example.com/trust/soc2"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Which trust principles are covered?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Security and Availability. Privacy and Confidentiality are planned for the next audit cycle."
}
},
{
"@type": "Question",
"name": "How often is this renewed?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We undergo annual audits and publish the updated report within 30 days of completion."
}
},
{
"@type": "Question",
"name": "Can I request the full report?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Request the latest SOC 2 report via our trust portal. An NDA may be required."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Trust", "item": "https://www.example.com/trust" },
{ "@type": "ListItem", "position": 3, "name": "SOC 2 Certification", "item": "https://www.example.com/trust/soc2" }
]
}
]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
Should I include multiple certificates?
Add one Certificate object per certification shown on the page (e.g., SOC 2, ISO 27001) with unique @id values.
How do I handle report requests?
Link to your trust portal or contact flow in the Certificate.url and the on-page content; keep JSON-LD aligned.