Axway · JSON Structure

Amplify Platform Apicentral.Env.Create Structure

Published when a Central environment is created. Either "action_user_guid" or "user_guid" can be provided to indicate the creator of the env. "action_user_guid" is preferred. "governance" is optional and assumed as "Customer Managed" if not passed. "production" is optional and assumed as false if not passed.

Type: object Properties: 4
API ManagementEnterpriseIntegrationSecurity

apicentral.env.create is a JSON Structure definition published by Axway, describing 4 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

governance group production user_guid

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "apicentral.env.create",
  "description": "Published when a Central environment is created.\n\nEither \"action_user_guid\" or \"user_guid\" can be provided to indicate the creator of the env. \"action_user_guid\" is preferred.\n\"governance\" is optional and assumed as \"Customer Managed\" if not passed.\n\"production\" is optional and assumed as false if not passed.",
  "type": "object",
  "properties": {
    "governance": {
      "type": "string",
      "enum": [
        "Axway Managed",
        "Customer Managed"
      ],
      "example": "Axway Managed"
    },
    "group": {
      "type": "string",
      "enum": [
        "management"
      ],
      "example": "management"
    },
    "production": {
      "type": "boolean",
      "example": true
    },
    "user_guid": {
      "$ref": "#/components/schemas/User/properties/guid"
    }
  }
}