c++ - Docker Remote API JSON schema definition -
i have program communicates docker dameon remotely using rest api. receives information images, containers, repositories in json format. want translate rest api output json format c++ structures.
json format takes form of key, value pair key string, value string, number, array, etc.
i know if there standard schema definition docker json objects?
thanks.
first of all, there's official remote api documentation. however, since contains "only" example requests , no authoritative schema definitions, it's not you're looking for.
there not seem be official json schema docker remote api. however, api responses directly generated corresponding go structs can find in single file in source code repository.
for example, consider definition of container
response type:
// "/containers/json" type port struct { ip string privateport int publicport int type string } type container struct { id string `json:"id"` names []string `json:",omitempty"` image string `json:",omitempty"` command string `json:",omitempty"` created int `json:",omitempty"` ports []port `json:",omitempty"` sizerw int `json:",omitempty"` sizerootfs int `json:",omitempty"` labels map[string]string `json:",omitempty"` status string `json:",omitempty"` }
this contains possible keys , data types might encounter when requesting /containers/json
uri. other resource representations can found same way.
Comments
Post a Comment