Fintech Investor Relations Stack
Investor relations/earnings pages with Organization + WebPage context, FAQs, and breadcrumb navigation.
When to use this stack
- Investor relations landing pages for fintech/financial products
- Earnings releases or investor updates with org context
- Pages where FAQs clarify filings, timelines, and contacts
What is included
Anchors the company identity with logo and URL.
Declares the investor relations page itself.
Answers questions on filings, earnings dates, and contacts.
Provides navigation context to the investor relations 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
- itemListElement[].name
- logo
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- url
Recommended properties
- address.addressCountry
- contactPoint.telephone
- dateModified
- datePublished
- inLanguage
- itemListElement[].item
- 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": "Organization",
"@id": "https://www.example.com/investors#org",
"name": "BrightPay Financial",
"url": "https://www.example.com",
"logo": "https://www.example.com/assets/logo.svg",
"sameAs": [
"https://www.linkedin.com/company/brightpay"
],
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+1-415-555-0170",
"contactType": "Investor Relations"
}
},
{
"@context": "https://schema.org",
"@type": "WebPage",
"@id": "https://www.example.com/investors#page",
"name": "Investor Relations — BrightPay Financial",
"description": "Financials, earnings releases, and filings for BrightPay Financial.",
"url": "https://www.example.com/investors",
"inLanguage": "en",
"dateModified": "2025-03-10"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Where can I find the latest earnings release?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Visit the Filings & Earnings section on this page. Releases and 10-Q/10-K filings are linked there."
}
},
{
"@type": "Question",
"name": "When is the next earnings call?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The next call is scheduled for May 7, 2025 at 2 PM PT. Dial-in and webcast details are provided on this page."
}
},
{
"@type": "Question",
"name": "Who is the transfer agent?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Acme Transfer Co. Contact details are listed under the Shareholder Services section."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Investors", "item": "https://www.example.com/investors" }
]
}
]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 include filings as CreativeWork?
Yes. If you surface specific filings on the page, you can add CreativeWork items with URLs matching the visible links.
Do I need both Organization and WebPage?
Yes. Organization anchors the entity; WebPage represents the investor relations page itself.