mirror of
https://github.com/moby/moby.git
synced 2026-08-13 17:06:44 +00:00
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
22 lines
864 B
Go
22 lines
864 B
Go
package types
|
|
|
|
const (
|
|
// MediaTypeRawStream is vendor specific MIME-Type set for raw TTY streams.
|
|
MediaTypeRawStream = "application/vnd.docker.raw-stream"
|
|
|
|
// MediaTypeMultiplexedStream is vendor specific MIME-Type set for stdin/stdout/stderr multiplexed streams.
|
|
MediaTypeMultiplexedStream = "application/vnd.docker.multiplexed-stream"
|
|
|
|
// MediaTypeJSON is the MIME-Type for JSON objects.
|
|
MediaTypeJSON = "application/json"
|
|
|
|
// MediaTypeNDJSON is the MIME-Type for Newline Delimited JSON objects streams (https://github.com/ndjson/ndjson-spec).
|
|
MediaTypeNDJSON = "application/x-ndjson"
|
|
|
|
// MediaTypeJSONLines is the MIME-Type for JSONLines objects streams (https://jsonlines.org/).
|
|
MediaTypeJSONLines = "application/jsonl"
|
|
|
|
// MediaTypeJSONSequence is the MIME-Type for JSON Text Sequences (RFC7464).
|
|
MediaTypeJSONSequence = "application/json-seq"
|
|
)
|