asset/schema/task-remove.yaml

Summary

Maintainability
Test Coverage
---

definitions:
  stringOrList:
    oneOf:
      - type: string
      - type: array
        items:
          type: string

type: object
properties:
  type:
    type: string
    enum:
      - remove
  extends:
    type: string
  environment:
    $ref: '#/definitions/stringOrList'
  required-environment:
    type: array
    items:
      type: string
  images:
    $ref: '#/definitions/stringOrList'
  include-built:
    type: boolean
additionalProperties: false