WriteFileRequest

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
content string Text content to write
encoding string Text encoding
writeMode string
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-writefilerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WriteFileRequest",
  "title": "WriteFileRequest",
  "type": "object",
  "properties": {
    "content": {
      "type": "string",
      "description": "Text content to write"
    },
    "encoding": {
      "type": "string",
      "description": "Text encoding",
      "default": "UTF-8"
    },
    "writeMode": {
      "type": "string",
      "enum": [
        "text",
        "bytes",
        "lines"
      ],
      "default": "text"
    }
  },
  "required": [
    "content"
  ]
}