Share feedback
Answers are generated based on the documentation.

Experimental

Schema

KitArtifactInput

Type: object

KitArtifactInput carries a v2 artifact inline or by staged digest.
All constraints apply
ref

Schema: KitRef

All schema constraints and annotations
{
  "properties": {
    "ref": {
      "$ref": "#/components/schemas/KitRef"
    }
  }
}
Exactly one alternative must match

Type: object

inline · required

Type: string

inline is the artifact in the pinned JSON encoding.
All schema constraints and annotations
{
  "description": "inline is the artifact in the pinned JSON encoding.",
  "format": "byte",
  "type": "string"
}
All schema constraints and annotations
{
  "properties": {
    "inline": {
      "description": "inline is the artifact in the pinned JSON encoding.",
      "format": "byte",
      "type": "string"
    }
  },
  "required": [
    "inline"
  ],
  "title": "inline",
  "type": "object"
}
All schema constraints and annotations
{
  "oneOf": [
    {
      "properties": {
        "inline": {
          "description": "inline is the artifact in the pinned JSON encoding.",
          "format": "byte",
          "type": "string"
        }
      },
      "required": [
        "inline"
      ],
      "title": "inline",
      "type": "object"
    }
  ]
}
All schema constraints and annotations
{
  "allOf": [
    {
      "properties": {
        "ref": {
          "$ref": "#/components/schemas/KitRef"
        }
      }
    },
    {
      "oneOf": [
        {
          "properties": {
            "inline": {
              "description": "inline is the artifact in the pinned JSON encoding.",
              "format": "byte",
              "type": "string"
            }
          },
          "required": [
            "inline"
          ],
          "title": "inline",
          "type": "object"
        }
      ]
    }
  ],
  "description": "KitArtifactInput carries a v2 artifact inline or by staged digest.",
  "required": [
    "ref"
  ],
  "title": "KitArtifactInput",
  "type": "object",
  "unevaluatedProperties": false
}