{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "properties": {
    "cursor": {
      "description": "Opaque pagination cursor returned by a previous call.",
      "type": [
        "string",
        "null"
      ]
    },
    "limit": {
      "description": "Optional page size; defaults to a reasonable server-side value.",
      "format": "uint32",
      "minimum": 0.0,
      "type": [
        "integer",
        "null"
      ]
    },
    "threadId": {
      "description": "Optional loaded thread id. Pass this when showing feature state for an existing thread so enablement is computed from that thread's refreshed config, including project-local config for the thread's cwd.",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "title": "ExperimentalFeatureListParams",
  "type": "object"
}