UNPKG

aura-protocol

Version:

Core TypeScript definitions and JSON Schema for the AURA protocol - making websites machine-readable for AI agents

28 lines 655 B
{ "description": "AuraState - Structure for the AURA-State header\nSent as Base64-encoded JSON in HTTP responses", "type": "object", "properties": { "isAuthenticated": { "type": "boolean", "title": "isAuthenticated" }, "context": { "$ref": "#/definitions/Record<string,any>", "title": "context" }, "capabilities": { "type": "array", "items": { "type": "string" }, "title": "capabilities" } }, "definitions": { "Record<string,any>": { "title": "Record<string,any>", "type": "object" } }, "$schema": "http://json-schema.org/draft-07/schema#" }