{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {},
  "operationId": "get",
  "schemas": {
    "input": {
      "type": "object",
      "properties": {
        "options": {
          "type": "object",
          "properties": {
            "includeResolved": {
              "type": "boolean"
            },
            "includeProvenance": {
              "type": "boolean"
            },
            "includeContext": {
              "type": "boolean"
            }
          },
          "additionalProperties": false
        }
      },
      "additionalProperties": false
    },
    "output": {
      "type": "object",
      "properties": {
        "modelVersion": {
          "const": "sdm/1"
        },
        "body": {
          "type": "array"
        }
      },
      "additionalProperties": false,
      "required": [
        "modelVersion",
        "body"
      ]
    }
  }
}
