The other properties on the object with a description are fine, it's just the ones without one that're the issue.
/**
* Global variables
*
* @typedef Core~Var
* @type Object
*
* @property {boolean} bindMgt
This is a part of my jsdoc.json from docma --debug.
{
"description": "Global variables",
"kind": "typedef",
"name": "Var",
"type": {
"names": [
"Object"
]
},
"properties": [{
"type": {
"names": [
"boolean"
]
},
"name": "bindMgt"
}]
}
This is the output.

The other properties on the object with a description are fine, it's just the ones without one that're the issue.
This is a part of my
jsdoc.jsonfromdocma --debug.{ "description": "Global variables", "kind": "typedef", "name": "Var", "type": { "names": [ "Object" ] }, "properties": [{ "type": { "names": [ "boolean" ] }, "name": "bindMgt" }] }This is the output.
