app.image.query

Query all docker images with query-filters and query-options.

query-options.extra.parse_tags is a boolean which when set will have normalized tags to be retrieved.

Type: object

Type: array
No Additional Items

Tuple Validation

Parameter 1: filters

filters

Type: array Default: []

List of filters for query results. See API documentation for "Query Methods" for more guidance.

No Additional Items
Each item of this array must be:
Type: object

Examples:

[
    [
        "name",
        "=",
        "bob"
    ]
]
[
    [
        "OR",
        [
            [
                [
                    "name",
                    "=",
                    "bob"
                ]
            ],
            [
                [
                    "name",
                    "=",
                    "larry"
                ]
            ]
        ]
    ]
]
Parameter 2: options

options

Type: object
Default:
{ "extra": {}, "order_by": [], "select": [], "count": false, "get": false, "offset": 0, "limit": 0, "force_sql_filters": false }

Query options including pagination, ordering, and additional parameters.

No Additional Properties

Extra

Type: object Default: {}

Extra options are defined on a per-endpoint basis and are described in the documentation for the associated query method.

Order By

Type: array of string Default: []

An array of field names describing the manner in which query results should be ordered. The field names may also have one of more of the following special prefixes: - (reverse sort direction), nulls_first: (place any null values at the head of the results list), nulls_last: (place any null values at the tail of the results list).

No Additional Items
Each item of this array must be:
Type: string

Example:

[
    "size",
    "-devname",
    "nulls_first:-expiretime"
]

Select

Type: array Default: []

An array of field names specifying the exact fields to include in the query return. The dot character . may be used to explicitly select only subkeys of the query result.

No Additional Items
Each item of this array must be:

Type: string
Type: array
No Additional Items
Each item of this array must be:
Type: object

Example:

[
    "username",
    "Authentication.status"
]

Count

Type: boolean Default: false

Return a numeric value representing the number of items that match the specified query-filters.

Get

Type: boolean Default: false

Return the JSON object of the first result matching the specified query-filters. The query fails if there specified query-filters return no results.

Offset

Type: integer Default: 0

This specifies the beginning offset of the results array. When combined with the limit query-option it may be used to implement pagination of large results arrays. WARNING: some query methods provide volatile results and the onus is on the developer to understand whether pagination is appropriate for a particular query API method.

Limit

Type: integer Default: 0

This specifies the maximum number of results matching the specified query-filters to return. When combined wtih the offset query-option it may be used to implement pagination of large results arrays.

WARNING: Some query methods provide volatile results and the onus is on the developer to understand whether pagination is appropriate for a particular query API method.

Force Sql Filters

Type: boolean Default: false

Force use of SQL for result filtering to reduce response time. May not work for all methods.

Result


Type: array of object
No Additional Items
Each item of this array must be:

AppImageQueryResultItem

Type: object
No Additional Properties

Id

Type: string

Unique identifier for the container image (usually SHA256 hash).

Must be at least 1 characters long

Repo Tags

Type: array of string

Array of repository tags associated with this image.

No Additional Items
Each item of this array must be:
Type: string

Repo Digests

Type: array of string

Array of repository digests (content-addressable identifiers) for this image.

No Additional Items
Each item of this array must be:
Type: string

Size

Type: integer

Size of the container image in bytes.

Dangling

Type: boolean

Whether this is a dangling image (no tags or references).

Update Available

Type: boolean

Whether a newer version of this image is available for download.

Created

Type: string

Timestamp when the container image was created (ISO format).

Author

Type: string

Author or maintainer of the container image.

Comment

Type: string

Comment or description provided by the image author.

Parsed Repo Tags


Parsed repository tag information or null if not available.

Type: array of object
No Additional Items
Each item of this array must be:

AppImageParsedRepoTags

Type: object
No Additional Properties

Reference

Type: string

Full reference to the container image (registry/repository:tag).

Image

Type: string

Container image name without registry or tag.

Tag

Type: string

Image tag (version) or digest identifier.

Registry

Type: string

Container registry hostname (e.g., docker.io, quay.io).

Complete Tag

Type: string

Complete image reference including registry, image name, and tag.

Reference Is Digest

Type: boolean

Whether the reference uses a digest hash instead of a tag name.

Type: null

AppImageQueryResultItem

Type: object
No Additional Properties

Id

Type: string

Unique identifier for the container image (usually SHA256 hash).

Must be at least 1 characters long

Repo Tags

Type: array of string

Array of repository tags associated with this image.

No Additional Items
Each item of this array must be:
Type: string

Repo Digests

Type: array of string

Array of repository digests (content-addressable identifiers) for this image.

No Additional Items
Each item of this array must be:
Type: string

Size

Type: integer

Size of the container image in bytes.

Dangling

Type: boolean

Whether this is a dangling image (no tags or references).

Update Available

Type: boolean

Whether a newer version of this image is available for download.

Created

Type: string

Timestamp when the container image was created (ISO format).

Author

Type: string

Author or maintainer of the container image.

Comment

Type: string

Comment or description provided by the image author.

Parsed Repo Tags


Parsed repository tag information or null if not available.

Type: array
No Additional Items
Each item of this array must be:
Type: object
Type: null
Type: integer


Required roles: APPS_READ