From 72efacbe70cc8b0b840737172bcbe84ab1e19423 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Wed, 1 Feb 2023 11:00:37 +0900 Subject: [PATCH] runtime: remove `When serialized in JSON, the format MUST adhere to the following pattern` The sentence looked like as if it required a specific indentation pattern. Fix issue 1177 Signed-off-by: Akihiro Suda --- runtime.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/runtime.md b/runtime.md index 0964019d3..9b60d4660 100644 --- a/runtime.md +++ b/runtime.md @@ -32,7 +32,11 @@ The state of a container includes the following properties: The state MAY include additional properties. -When serialized in JSON, the format MUST adhere to the following pattern: +When serialized in JSON, the format MUST adhere to the JSON Schema [`schema/state-schema.json`](schema/state-schema.json). + +See [Query State](#query-state) for information on retrieving the state of a container. + +### Example ```json { @@ -47,8 +51,6 @@ When serialized in JSON, the format MUST adhere to the following pattern: } ``` -See [Query State](#query-state) for information on retrieving the state of a container. - ## Lifecycle The lifecycle describes the timeline of events that happen from when a container is created to when it ceases to exist.