Blues · Schema

Notefile

IoTCellularConnectivityDevice ManagementFleet ManagementSatelliteLoRaWiFiNotecardNotehub

Properties

Name Type Description
id string Notefile id (e.g., "test.qi", "config.db").
notes array
template string
View JSON Schema on GitHub

JSON Schema

blues-wireless-notefile.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "description": "Notefile id (e.g., \"test.qi\", \"config.db\").",
      "type": "string"
    },
    "notes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Note"
      },
      "minItems": 0
    },
    "template": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "notes"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Notefile"
}