{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/proc/self-limits.json",
  "title": "proc/self-limits",
  "description": "/proc/\u003cpid\u003e/limits soft and hard resource limits",
  "x-jsonize": {
    "definition": "proc/self-limits",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "limit": {
        "type": "string"
      },
      "soft_limit": {
        "type": "string"
      },
      "hard_limit": {
        "type": "string"
      },
      "units": {
        "type": [
          "string",
          "null"
        ]
      }
    },
    "required": [
      "limit",
      "soft_limit",
      "hard_limit",
      "units"
    ]
  }
}
