Microsoft Windows 10 · Schema
WinRTNamespace
A Windows Runtime namespace containing types and APIs
DesktopOperating SystemUWPWin32Windows
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Fully qualified namespace name |
| description | string | Description of the namespace purpose |
| classCount | integer | Number of classes in the namespace |
| interfaceCount | integer | Number of interfaces in the namespace |
| enumCount | integer | Number of enumerations in the namespace |
| delegateCount | integer | Number of delegates in the namespace |
| minSupportedVersion | string | Minimum supported Windows version |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WinRTNamespace",
"title": "WinRTNamespace",
"type": "object",
"description": "A Windows Runtime namespace containing types and APIs",
"properties": {
"name": {
"type": "string",
"description": "Fully qualified namespace name",
"example": "Windows.UI.Notifications"
},
"description": {
"type": "string",
"description": "Description of the namespace purpose"
},
"classCount": {
"type": "integer",
"description": "Number of classes in the namespace"
},
"interfaceCount": {
"type": "integer",
"description": "Number of interfaces in the namespace"
},
"enumCount": {
"type": "integer",
"description": "Number of enumerations in the namespace"
},
"delegateCount": {
"type": "integer",
"description": "Number of delegates in the namespace"
},
"minSupportedVersion": {
"type": "string",
"description": "Minimum supported Windows version",
"example": "10.0.10240.0"
}
},
"required": [
"name"
]
}