Aqua Security · JSON Structure

Aqua Security Api Image Request Structure

ImageRequest schema from Aqua Security API

Type: object Properties: 2 Required: 2
Cloud NativeContainersKubernetesRuntime ProtectionSecurityVulnerability Scanning

ImageRequest is a JSON Structure definition published by Aqua Security, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

registry image

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "registry": {
      "type": "string",
      "example": "docker-hub",
      "description": "Name of the configured registry"
    },
    "image": {
      "type": "string",
      "example": "nginx:latest",
      "description": "Full image name including tag"
    }
  },
  "required": [
    "registry",
    "image"
  ],
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aqua-security/refs/heads/main/json-structure/aqua-security-api-image-request-structure.json",
  "name": "ImageRequest",
  "description": "ImageRequest schema from Aqua Security API"
}