SpiffInput

Spiff template input

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

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

JSON Schema

application-research-spiffinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpiffInput",
  "title": "SpiffInput",
  "type": "object",
  "description": "Spiff template input",
  "required": [
    "type",
    "path"
  ],
  "properties": {
    "type": {
      "const": "spiff"
    },
    "path": {
      "type": "string"
    },
    "mediaType": {
      "type": "string"
    },
    "compress": {
      "type": "boolean"
    },
    "values": {
      "type": "object"
    },
    "libraries": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}