Microsoft Dynamics NAV · Schema
Feature
Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The feature ID |
| displayName | string | The feature display name |
| description | string | The feature description |
| enabled | boolean | Whether the feature is enabled |
| learnMoreUrl | string | URL to documentation about the feature |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Feature",
"title": "Feature",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The feature ID",
"example": "abc123"
},
"displayName": {
"type": "string",
"description": "The feature display name",
"example": "example_value"
},
"description": {
"type": "string",
"description": "The feature description",
"example": "A sample description."
},
"enabled": {
"type": "boolean",
"description": "Whether the feature is enabled",
"example": true
},
"learnMoreUrl": {
"type": "string",
"format": "uri",
"description": "URL to documentation about the feature",
"example": "https://www.example.com"
}
}
}