{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "gdd_intel_get",
  "type": "object",
  "properties": {
    "input": {
      "type": "object",
      "additionalProperties": false,
      "required": ["slice_id"],
      "properties": {
        "slice_id": { "type": "string", "minLength": 1 },
        "shape": { "type": "array", "items": { "type": "string" } }
      }
    },
    "output": {
      "type": "object",
      "required": ["slice_id", "data"],
      "properties": {
        "slice_id": { "type": "string" },
        "data": { "type": "object" }
      }
    }
  }
}
