{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/apicentral.env.create", "title": "apicentral.env.create", "type": "object", "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.", "x-context": "api_central", "allOf": [ { "$ref": "#/components/schemas/EventDataCentral" } ], "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" } } }