RecognitionRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
strokeIds array IDs of strokes to recognize (empty for all)
recognitionTarget string Which strokes to target
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-recognitionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecognitionRequest",
  "title": "RecognitionRequest",
  "type": "object",
  "properties": {
    "strokeIds": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "IDs of strokes to recognize (empty for all)"
    },
    "recognitionTarget": {
      "type": "string",
      "enum": [
        "All",
        "Selected",
        "Recent"
      ],
      "description": "Which strokes to target"
    }
  }
}