registryajp:KnowledgeBoundary
AJP AI AGENT SCHEMA STANDARD

ajp:KnowledgeBoundary

extends schema:Thing

A declaration of the scope and limits of an AI agent's knowledge — what domains it covers, what it explicitly excludes, and how current its knowledge is.

REQUIRED PROPERTIES (3)
ajp:coveredDomains[Text]required

Topic areas the agent has reliable knowledge in

ajp:excludedDomains[Text]required

Topic areas explicitly outside the agent's knowledge

ajp:realTimeDataAccessBooleanrequired

Whether agent can access live data

OPTIONAL PROPERTIES (3)
ajp:knowledgeCutoffDateDate

Date after which knowledge may be outdated

ajp:geographicScope[schema:Country]

Countries the agent has knowledge about

ajp:knowledgeConfidenceLevelText

high / medium / low — overall confidence

EXAMPLE JSON-LD
{
  "@context": {
    "@vocab": "https://schema.org/",
    "ajp": "https://schema.anthonyjamespeacock.com/"
  },
  "@type": [
    "ajp:KnowledgeBoundary"
  ],
  "ajp:coveredDomains": "<[Text]>",
  "ajp:excludedDomains": "<[Text]>",
  "ajp:realTimeDataAccess": "<Boolean>"
}
MACHINE ENDPOINT
GET /api/schema/KnowledgeBoundary
Accept: application/ld+json
View raw JSON-LD →
OTHER TYPES