{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/importExportFile", "title": "importExportFile", "type": "object", "required": [ "type", "input" ], "properties": { "type": { "type": "string", "description": "The `file` type value.", "enum": [ "file" ], "example": "file" }, "input": { "type": "string", "description": "A .zip file containing the definition file.", "format": "binary" } } }