From 412463b7ec02bcfc2560d2c774058970dd1388d5 Mon Sep 17 00:00:00 2001 From: Fabian Deutsch Date: Mon, 16 Apr 2018 18:31:58 +0200 Subject: [PATCH] Update labels.md (#8102) Update the example to show that labels are part of the metadata of an object. --- docs/concepts/overview/working-with-objects/labels.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/concepts/overview/working-with-objects/labels.md b/docs/concepts/overview/working-with-objects/labels.md index 0ab6a3deee..1c16303449 100644 --- a/docs/concepts/overview/working-with-objects/labels.md +++ b/docs/concepts/overview/working-with-objects/labels.md @@ -10,9 +10,11 @@ Labels can be used to organize and to select subsets of objects. Labels can be Each object can have a set of key/value labels defined. Each Key must be unique for a given object. ```json -"labels": { - "key1" : "value1", - "key2" : "value2" +"metadata": { + "labels": { + "key1" : "value1", + "key2" : "value2" + } } ```