DockerInput

Docker image input

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
type object
path string
repository string
View JSON Schema on GitHub

JSON Schema

application-research-dockerinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DockerInput",
  "title": "DockerInput",
  "type": "object",
  "description": "Docker image input",
  "required": [
    "type",
    "path"
  ],
  "properties": {
    "type": {
      "const": "docker"
    },
    "path": {
      "type": "string"
    },
    "repository": {
      "type": "string"
    }
  }
}