{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/FileUploadUiBlock.json", "title": "FileUploadUiBlock", "allOf": [ { "$ref": "#/components/schemas/UserInputMultiValueUiBlock" }, { "properties": { "fileTypes": { "items": { "type": "string" }, "type": "array" }, "maxFiles": { "default": 10, "maximum": 10, "type": "integer" }, "type": { "enum": [ "FILE_UPLOAD" ], "type": "string" } }, "required": [ "type" ] } ], "type": "object" }