{ "lexicon": 1, "id": "studio.voyager.account.managedByAI", "defs": { "main": { "type": "record", "key": "literal:self", "record": { "type": "object", "properties": { "aiRole": { "type": "string", "enum": [ "autonomous", "collaborative", "assisted", ], "description": "Level of AI involvement in account management", }, "createdAt": { "type": "string", "format": "datetime", "description": "timestamp when this declaration was created", }, "description": { "type": "string", "maxLength": 500, "description": "additional context about this AI account's purpose or operation", }, "responsibleParty": { "type": "object", "properties": { "did": { "type": "string", "format": "did", "description": "DID of the responsible party", }, "name": { "type": "string", "maxLength": 100, "description": "name of the person or organization responsible", }, "contact": { "type": "string", "maxLength": 300, "description": "contact info (email, url, etc)", }, }, "description": "info about the person or organization that is responsible for creating/managing this account", }, }, "required": [ "aiRole", "createdAt", ], }, "description": "declaration that this account is managed by AI", }, }, }