{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/powerprofilesctl/list.json",
  "title": "powerprofilesctl/list",
  "description": "powerprofilesctl list of power profiles",
  "x-jsonize": {
    "definition": "powerprofilesctl/list",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "profile": {
        "type": "object",
        "properties": {
          "active": {
            "type": "boolean"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "active",
          "name"
        ]
      },
      "attributes": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string"
            },
            "value": {
              "type": "string"
            }
          },
          "required": [
            "name",
            "value"
          ]
        }
      }
    },
    "required": [
      "profile",
      "attributes"
    ]
  }
}
