Axway · JSON Structure

Amplify Platform Platform.Activation.Complete Structure

Published when a user activates their account.

Type: object Properties: 1
API ManagementEnterpriseIntegrationSecurity

platform.activation.complete is a JSON Structure definition published by Axway, describing 1 property. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

orgs

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "platform.activation.complete",
  "description": "Published when a user activates their account.",
  "type": "object",
  "properties": {
    "orgs": {
      "type": "array",
      "description": "Array of orgs the user is a member of",
      "items": {
        "type": "object",
        "properties": {
          "guid": {
            "$ref": "#/components/schemas/Org/properties/guid"
          },
          "name": {
            "$ref": "#/components/schemas/Org/properties/name"
          },
          "org_id": {
            "$ref": "#/components/schemas/Org/properties/org_id"
          }
        }
      },
      "example": [
        {
          "guid": {},
          "name": {},
          "org_id": {}
        }
      ]
    }
  }
}