Microsoft Dynamics NAV · Schema
CreateEnvironmentRequest
Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision
Properties
| Name | Type | Description |
|---|---|---|
| environmentType | string | Type of environment to create |
| countryCode | string | Country to create the environment within |
| ringName | string | Logical ring group (only Sandbox may be created in Preview ring) |
| applicationVersion | string | Application version (e.g., 26.0.0.0) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateEnvironmentRequest",
"title": "CreateEnvironmentRequest",
"type": "object",
"required": [
"environmentType",
"countryCode"
],
"properties": {
"environmentType": {
"type": "string",
"description": "Type of environment to create",
"enum": [
"Production",
"Sandbox"
],
"example": "Production"
},
"countryCode": {
"type": "string",
"description": "Country to create the environment within",
"example": "example_value"
},
"ringName": {
"type": "string",
"description": "Logical ring group (only Sandbox may be created in Preview ring)",
"example": "example_value"
},
"applicationVersion": {
"type": "string",
"description": "Application version (e.g., 26.0.0.0)",
"example": "example_value"
}
}
}