PhotoCaptureRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
encodingFormat string
outputPath string File path for the captured photo
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-photocapturerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PhotoCaptureRequest",
  "title": "PhotoCaptureRequest",
  "type": "object",
  "properties": {
    "encodingFormat": {
      "type": "string",
      "enum": [
        "Jpeg",
        "Png",
        "Bmp",
        "Tiff"
      ],
      "default": "Jpeg"
    },
    "outputPath": {
      "type": "string",
      "description": "File path for the captured photo"
    }
  },
  "required": [
    "outputPath"
  ]
}