Aqua Security · Schema
RegistryList
RegistryList schema from Aqua Security API
Cloud NativeContainersKubernetesRuntime ProtectionSecurityVulnerability Scanning
Properties
| Name | Type | Description |
|---|---|---|
| count | integer | Total number of registries |
| result | array |
JSON Schema
{
"type": "object",
"properties": {
"count": {
"type": "integer",
"example": 3,
"description": "Total number of registries"
},
"result": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"example": "docker-hub",
"description": "Registry display name"
},
"type": {
"type": "string",
"enum": [
"HUB",
"V2",
"ECR",
"ACR",
"GCR",
"JFrog",
"Harbor"
],
"example": "HUB",
"description": "Registry type"
},
"url": {
"type": "string",
"example": "https://index.docker.io",
"description": "Registry URL"
},
"username": {
"type": "string",
"example": "myuser",
"description": "Authentication username"
},
"status": {
"type": "string",
"enum": [
"connected",
"disconnected",
"error"
],
"example": "connected",
"description": "Connection status"
}
}
}
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/aqua-security/refs/heads/main/json-schema/aqua-security-api-registry-list-schema.json",
"title": "RegistryList",
"description": "RegistryList schema from Aqua Security API"
}