You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
439 B
Go
13 lines
439 B
Go
package manifest
|
|
|
|
// Versioned provides a struct with the manifest schemaVersion and mediaType.
|
|
// 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"`
|
|
}
|