FunctionParameter

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
name string
type string
direction string
description string
optional boolean
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-functionparameter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FunctionParameter",
  "title": "FunctionParameter",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "direction": {
      "type": "string",
      "enum": [
        "in",
        "out",
        "inout"
      ]
    },
    "description": {
      "type": "string"
    },
    "optional": {
      "type": "boolean"
    }
  }
}