JSON-LD Setup
Publish structured data so AI systems can interpret your agent without guesswork. JSON-LD is the fastest way to surface capabilities to AgentSignals.
Implementation steps
- Create a JSON-LD object that describes your agent.
- Embed it in the HTML head of your homepage.
- Re-scan with the AgentSignals Scanner to verify.
JSON-LD example
JSON-LDJSON
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Your Agent",
"applicationCategory": "Artificial Intelligence",
"url": "https://your-agent.com",
"operatingSystem": "Web",
"description": "Short, machine-readable summary of your agent."
}Embed in HTML
HTMLHTML
<script type="application/ld+json">
{JSON_LD_HERE}
</script>