{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$defs": {
    "Path": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "description": "Path is a location in the world: labels from a root organizer down, relative to the world."
    }
  },
  "properties": {
    "scope": {
      "$ref": "#/$defs/Path"
    }
  },
  "type": "object",
  "required": [
    "scope"
  ],
  "title": "SubscribeRequest",
  "description": "SubscribeRequest opens a subscription over a scope."
}
