Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Note: Any OPTIONAL field MAY also be set to null, which is equivalent to being a

- **created** *string*, OPTIONAL

An ISO-8601 formatted combined date and time at which the image was created.
The date and time at which the image was created, expressed in Internet Date/Time Format ([RFC-3339](https://tools.ietf.org/html/rfc3339#section-5.6)).

- **author** *string*, OPTIONAL

Expand Down Expand Up @@ -161,7 +161,7 @@ Note: Any OPTIONAL field MAY also be set to null, which is equivalent to being a

- **created** *string*, OPTIONAL

Creation time, expressed as an ISO-8601 formatted combined date and time.
Creation time, expressed in Internet Date/Time Format ([RFC-3339](https://tools.ietf.org/html/rfc3339#section-5.6)).

- **author** *string*, OPTIONAL

Expand Down
2 changes: 1 addition & 1 deletion specs-go/v1/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ type History struct {

// Image is the JSON structure which describes some basic information about the image.
type Image struct {
// Created defines an ISO-8601 formatted combined date and time at which the image was created.
// Created defines an RFC-3339 formatted combined date and time at which the image was created.
Created string `json:"created,omitempty"`

// Author defines the name and/or email address of the person or entity which created and is responsible for maintaining the image.
Expand Down