Closed cerupcat closed 5 years ago
My spec looks like:
"schema": { "type": "object", "properties": { "Version": { "type": "string" }, "File": { "type": "string", "format": "binary" } } }
and a File object is used. How do we use an UploadFile object instead?
File
UploadFile
You can change use UploadFile by editing the template and configuring typeAliases
typeAliases
typeAliases: File: UploadFile
Great. That's simple enough. :) Thanks!
My spec looks like:
and a
File
object is used. How do we use anUploadFile
object instead?