At

 view release on metacpan or  search on metacpan

share/lexicons/tools/ozone/hosting/getAccountHistory.json  view on Meta::CPAN

{
  "lexicon": 1,
  "id": "tools.ozone.hosting.getAccountHistory",
  "defs": {
    "main": {
      "type": "query",
      "description": "Get account history, e.g. log of updated email addresses or other identity information.",
      "parameters": {
        "type": "params",
        "required": ["did"],
        "properties": {
          "did": { "type": "string", "format": "did" },
          "events": {
            "type": "array",
            "items": {
              "type": "string",
              "knownValues": [
                "accountCreated",
                "emailUpdated",
                "emailConfirmed",
                "passwordUpdated",
                "handleUpdated"
              ]
            }
          },
          "cursor": { "type": "string" },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 100,
            "default": 50
          }
        }
      },
      "output": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": ["events"],
          "properties": {
            "cursor": { "type": "string" },
            "events": {
              "type": "array",
              "items": {
                "type": "ref",
                "ref": "#event"
              }
            }
          }
        }
      }
    },
    "event": {
      "type": "object",
      "required": ["details", "createdBy", "createdAt"],
      "properties": {
        "details": {
          "type": "union",
          "refs": [
            "#accountCreated",
            "#emailUpdated",
            "#emailConfirmed",
            "#passwordUpdated",
            "#handleUpdated"
          ]
        },
        "createdBy": { "type": "string" },



( run in 0.781 second using v1.01-cache-2.11-cpan-39bf76dae61 )