Axway · Schema

marketplace.consumer.signup

Published when a new organization signs up to a marketplace.

API ManagementEnterpriseIntegrationSecurity

Properties

Name Type Description
consumer_org_guid object
consumer_org_id object
consumer_org_name object
guid object
name object
pending boolean Whether the signup is pending approval.
View JSON Schema on GitHub

JSON Schema

axway-marketplaceconsumersignup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/marketplace.consumer.signup",
  "title": "marketplace.consumer.signup",
  "type": "object",
  "description": "Published when a new organization signs up to a marketplace.",
  "x-context": "org",
  "allOf": [
    {
      "$ref": "#/components/schemas/EventDataOrg"
    }
  ],
  "properties": {
    "consumer_org_guid": {
      "$ref": "#/components/schemas/Org/properties/guid"
    },
    "consumer_org_id": {
      "$ref": "#/components/schemas/Org/properties/org_id"
    },
    "consumer_org_name": {
      "$ref": "#/components/schemas/Org/properties/name"
    },
    "guid": {
      "$ref": "#/components/schemas/Provider/properties/guid"
    },
    "name": {
      "$ref": "#/components/schemas/Provider/properties/name"
    },
    "pending": {
      "type": "boolean",
      "description": "Whether the signup is pending approval.",
      "example": true
    }
  }
}