···11+{22+ "lexicon": 1,33+ "id": "sh.tangled.owner",44+ "defs": {55+ "main": {66+ "type": "query",77+ "description": "Get the owner of a service",88+ "output": {99+ "encoding": "application/json",1010+ "schema": {1111+ "type": "object",1212+ "required": [1313+ "owner"1414+ ],1515+ "properties": {1616+ "owner": {1717+ "type": "string",1818+ "format": "did"1919+ }2020+ }2121+ }2222+ },2323+ "errors": [2424+ {2525+ "name": "OwnerNotFound",2626+ "description": "Owner is not set for this service"2727+ }2828+ ]2929+ }3030+ }3131+}
+5
xrpc/errors/errors.go
···5151 WithMessage("actor DID not supplied"),5252)53535454+var OwnerNotFoundError = NewXrpcError(5555+ WithTag("OwnerNotFound"),5656+ WithMessage("owner not set for this service"),5757+)5858+5459var AuthError = func(err error) XrpcError {5560 return NewXrpcError(5661 WithTag("Auth"),