Home
Axway
Amplify Platform Environment Structure
Amplify Platform Environment Structure
Environment schema from Axway Amplify Platform API
Type: object
Properties: 9
Required: 5
API Management Enterprise Integration Security
Environment is a JSON Structure definition published by Axway, describing 9 properties, of which 5 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.
Properties
_id
governance
guid
isProduction
name
org_guid
source
type
url
Meta-schema: https://json-structure.org/draft/2020-12/schema
JSON Structure
{
"$schema": "https://json-structure.org/draft/2020-12/schema",
"name": "Environment",
"description": "Environment schema from Axway Amplify Platform API",
"type": "object",
"properties": {
"_id": {
"type": "string",
"description": "Document ID of the environment.",
"readOnly": true,
"deprecated": true,
"example": "507f1f77bcf86cd799439011"
},
"governance": {
"type": "string",
"description": "Governance of the environment.",
"enum": [
"Customer Managed",
"Axway Managed"
],
"example": "Customer Managed"
},
"guid": {
"type": "string",
"description": "GUID of the environment.",
"example": "example_value"
},
"isProduction": {
"type": "boolean",
"description": "Whether the environment is a production environment.",
"default": false,
"example": true
},
"name": {
"type": "string",
"description": "Name of the environment",
"x-no-tags": true,
"example": "Example Name"
},
"org_guid": {
"type": "string",
"description": "`guid` of the organization the environment is associated to.",
"example": "example_value"
},
"source": {
"type": "string",
"example": "example_value"
},
"type": {
"type": "string",
"description": "Type of environment",
"default": "usage",
"enum": [
"usage",
"integration"
],
"example": "usage"
},
"url": {
"type": "string",
"format": "secure-url",
"description": "URL of the integration environment.",
"example": "https://example.com"
}
},
"required": [
"guid",
"isProduction",
"name",
"org_guid",
"type"
]
}