I think the error may be caused because you did not provide a description for your properties. You h

I think the error may be caused because you did not provide a description for your properties.
You have:
"properties": {
  "model": {
    "type": "string"
  },
  ...

This should be:
"properties": {
  "model": {
    "type": "string",
    "description": "name of the model to be used" //or whatever the appropriate description is
  },
  ...

And this should be repeated for each of your props.
Was this page helpful?