We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Compliance/certification pages linking Organization identity with Certificate details, FAQs, and breadcrumb navigation.
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.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the 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" }
]
}
]Add one Certificate object per certification shown on the page (e.g., SOC 2, ISO 27001) with unique @id values.
Link to your trust portal or contact flow in the Certificate.url and the on-page content; keep JSON-LD aligned.