FileInput

File input

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
type object
path string
mediaType string
compress boolean
View JSON Schema on GitHub

JSON Schema

application-research-fileinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileInput",
  "title": "FileInput",
  "type": "object",
  "description": "File input",
  "required": [
    "type",
    "path"
  ],
  "properties": {
    "type": {
      "const": "file"
    },
    "path": {
      "type": "string"
    },
    "mediaType": {
      "type": "string"
    },
    "compress": {
      "type": "boolean"
    }
  }
}