1) Core JSON-LD (Organization + Website + WebPage + Product)

Paste this as one <script type="application/ld+json"> block:

<scripttype="application/ld+json">
{
"@context":"<https://schema.org>",
"@graph": [
    {
"@type":"Organization",
"@id":"<https://reactor.trade/#organization>",
"name":"Reactor Trade",
"url":"<https://reactor.trade/>",
"logo": {
"@type":"ImageObject",
"@id":"<https://reactor.trade/#logo>",
"url":"<https://reactor.trade/assets/logo.png>",
"contentUrl":"<https://reactor.trade/assets/logo.png>",
"caption":"Reactor Trade logo"
      },
"sameAs": [
"<https://x.com/REPLACE_WITH_OFFICIAL>",
"<https://t.me/REPLACE_WITH_OFFICIAL>",
"<https://github.com/REPLACE_WITH_OFFICIAL>",
"<https://discord.gg/REPLACE_WITH_OFFICIAL>"
      ]
    },
    {
"@type":"WebSite",
"@id":"<https://reactor.trade/#website>",
"url":"<https://reactor.trade/>",
"name":"Reactor Trade",
"publisher": {
"@id":"<https://reactor.trade/#organization>"
      },
"inLanguage":"en"
    },
    {
"@type":"WebPage",
"@id":"<https://reactor.trade/token-sale#webpage>",
"url":"<https://reactor.trade/token-sale>",
"name":"$REACT Token Sale Dashboard | Reactor Trade Utility Token",
"isPartOf": {"@id":"<https://reactor.trade/#website>" },
"about": [
        {"@id":"<https://reactor.trade/#organization>" },
        {"@id":"<https://reactor.trade/token-sale#react-token>" }
      ],
"primaryImageOfPage": {"@id":"<https://reactor.trade/token-sale#primaryimage>" },
"image": {"@id":"<https://reactor.trade/token-sale#primaryimage>" },
"inLanguage":"en",
"datePublished":"2025-01-01",
"dateModified":"2025-12-16",
"description":"Official token sale dashboard for the $REACT utility token used within the Reactor Trade platform. Includes token information, sale stages, eligibility and risk disclosures.",
"breadcrumb": {
"@type":"BreadcrumbList",
"itemListElement": [
          {"@type":"ListItem","position":1,"name":"Home","item":"<https://reactor.trade/>" },
          {"@type":"ListItem","position":2,"name":"Token Sale","item":"<https://reactor.trade/token-sale>" }
        ]
      }
    },
    {
"@type":"ImageObject",
"@id":"<https://reactor.trade/token-sale#primaryimage>",
"url":"<https://reactor.trade/assets/token-sale-dashboard.png>",
"contentUrl":"<https://reactor.trade/assets/token-sale-dashboard.png>",
"caption":"$REACT token sale dashboard"
    },
    {
"@type":"Product",
"@id":"<https://reactor.trade/token-sale#react-token>",
"name":"$REACT",
"description":"$REACT is the native utility token intended for use within the Reactor Trade platform (for example: access, rewards, incentives and governance-related features). This information is provided for educational purposes and does not constitute investment advice.",
"brand": {"@id":"<https://reactor.trade/#organization>" },
"manufacturer": {"@id":"<https://reactor.trade/#organization>" },
"url":"<https://reactor.trade/token-sale>",
"category":"Utility token",
"additionalProperty": [
        {"@type":"PropertyValue","name":"Token symbol","value":"REACT" },
        {"@type":"PropertyValue","name":"Network","value":"REPLACE_WITH_CHAIN(S)" },
        {"@type":"PropertyValue","name":"Contract address","value":"REPLACE_WITH_CONTRACT_ADDRESS_OR_LINK" }
      ],
"isSimilarTo": [
        {
"@type":"Product",
"name":"Utility token",
"description":"A digital token designed primarily for use within a specific platform or ecosystem."
        }
      ]
    }
  ]
}
</script>

What to replace


2) FAQ JSON-LD (Strong for SEO snippets + LLM answers)

Add this as a second <script type="application/ld+json"> block (FAQ is best kept separate):

<scripttype="application/ld+json">
{
"@context":"<https://schema.org>",
"@type":"FAQPage",
"@id":"<https://reactor.trade/token-sale#faq>",
"mainEntity": [
    {
"@type":"Question",
"name":"What is $REACT?",
"acceptedAnswer": {
"@type":"Answer",
"text":"$REACT is the native utility token intended for use within the Reactor Trade platform (for example: access, rewards, incentives and governance-related features)."
      }
    },
    {
"@type":"Question",
"name":"Is this token sale page investment advice?",
"acceptedAnswer": {
"@type":"Answer",
"text":"No. The token sale dashboard is provided for informational purposes only and does not constitute investment advice."
      }
    },
    {
"@type":"Question",
"name":"How do I participate in the token sale?",
"acceptedAnswer": {
"@type":"Answer",
"text":"Use the official dashboard on reactor.trade, review eligibility requirements and risk disclosures, and follow the on-page steps to connect a wallet and complete participation (where permitted)."
      }
    },
    {
"@type":"Question",
"name":"Are there eligibility or jurisdiction restrictions?",
"acceptedAnswer": {
"@type":"Answer",
"text":"Participation may be restricted based on jurisdiction and eligibility requirements. Refer to the dashboard terms and disclaimers for the most current information."
      }
    },
    {
"@type":"Question",
"name":"Where can I verify the $REACT contract address?",
"acceptedAnswer": {
"@type":"Answer",
"text":"Use the official Reactor Trade documentation or the token information section on the dashboard, which links to the relevant block explorer page(s) for verification."
      }
    }
  ]
}
</script>

Tip: Make sure these FAQs are also visible on the page (LLMs and Google cross-check).


3) Optional (but powerful): “SoftwareApplication” for the Dashboard

If the token sale dashboard is an app-like interface, you can add:

<scripttype="application/ld+json">
{
"@context":"<https://schema.org>",
"@type":"SoftwareApplication",
"@id":"<https://reactor.trade/token-sale#app>",
"name":"Reactor Trade Token Sale Dashboard",
"operatingSystem":"Web",
"applicationCategory":"FinanceApplication",
"url":"<https://reactor.trade/token-sale>",
"publisher": {"@id":"<https://reactor.trade/#organization>" },
"isPartOf": {"@id":"<https://reactor.trade/token-sale#webpage>" },
"description":"Web dashboard that provides token sale information for $REACT and participation steps where permitted, including eligibility and risk disclosures."
}
</script>


Implementation checklist (quick)