Where to mention route configuration like strip_path, protocols, etc. in openapi yaml

I am using openapi specification to generate kong.yaml file. e.g. I have orders.yml where order API details are mentioned with openapi specification standards. Now I want to set strip_path value to true in openapi file so that generated kong.yaml will set it to true, see below

  1. snippet of orders.yml
paths: #routes
  '/api/orders': # route path
    post:
      config:
        strip_path: true
      tags:

I put the strip path like above and ran inso command as below

inso generate config orders.yml --type declarative > kong.yaml

this command runs successfully but strip_path value is still false.

Please suggest how can I fix this.