mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-05 00:23:33 +01:00
13 lines
430 B
Go
13 lines
430 B
Go
|
package manifest
|
||
|
|
||
|
// Versioned provides a struct with the manifest schemaVersion and . Incoming
|
||
|
// content with unknown schema version can be decoded against this struct to
|
||
|
// check the version.
|
||
|
type Versioned struct {
|
||
|
// SchemaVersion is the image manifest schema that this image follows
|
||
|
SchemaVersion int `json:"schemaVersion"`
|
||
|
|
||
|
// MediaType is the media type of this schema.
|
||
|
MediaType string `json:"mediaType,omitempty"`
|
||
|
}
|