Axway · Schema

platform.login

Published when a user signs in from any client type (tooling vs. browser).

API ManagementEnterpriseIntegrationSecurity

Properties

Name Type Description
from object
ip string Anonymized IP address.
View JSON Schema on GitHub

JSON Schema

axway-platformlogin-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/platform.login",
  "title": "platform.login",
  "type": "object",
  "description": "Published when a user signs in from any client type (tooling vs. browser).",
  "x-context": "user",
  "allOf": [
    {
      "$ref": "#/components/schemas/EventDataOrg"
    },
    {
      "$ref": "#/components/schemas/EventDataUser"
    }
  ],
  "properties": {
    "from": {
      "$ref": "#/components/schemas/EventDataFrom"
    },
    "ip": {
      "type": "string",
      "description": "Anonymized IP address.",
      "example": "10.0.0.1"
    }
  }
}