StorageLibrary

A storage library (StorageLibrary class)

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
id string Library identifier
folders array Folders included in the library
saveFolder object
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-storagelibrary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StorageLibrary",
  "title": "StorageLibrary",
  "type": "object",
  "description": "A storage library (StorageLibrary class)",
  "properties": {
    "id": {
      "type": "string",
      "description": "Library identifier",
      "enum": [
        "Documents",
        "Music",
        "Pictures",
        "Videos"
      ]
    },
    "folders": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StorageFolder"
      },
      "description": "Folders included in the library"
    },
    "saveFolder": {
      "$ref": "#/components/schemas/StorageFolder"
    }
  }
}