From 83b3b4606fbfd17798554f49c0bc046d01a3cba1 Mon Sep 17 00:00:00 2001 From: David Dougherty Date: Wed, 12 Jun 2024 08:07:11 -0700 Subject: [PATCH] DEV: update link in JSON section (#314) --- .../oss_and_stack/stack-with-enterprise/json/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/operate/oss_and_stack/stack-with-enterprise/json/_index.md b/content/operate/oss_and_stack/stack-with-enterprise/json/_index.md index 92a48f859..050770698 100644 --- a/content/operate/oss_and_stack/stack-with-enterprise/json/_index.md +++ b/content/operate/oss_and_stack/stack-with-enterprise/json/_index.md @@ -39,7 +39,7 @@ See [JSONPath examples]({{< relref "/develop/data-types/json/path" >}}) for exam ### Legacy path syntax -The [legacy path syntax]({{< relref "/develop/data-types/json/path" >}}) refers to the path implementation in RedisJSON v1. RedisJSON v2 still supports this legacy path syntax in addition to JSONPath syntax. +The [legacy path syntax]({{< relref "/develop/data-types/json/path" >}}#legacy-path-syntax) refers to the path implementation in RedisJSON v1. RedisJSON v2 still supports this legacy path syntax in addition to JSONPath syntax. The legacy path syntax works as follows: @@ -59,7 +59,7 @@ The following paths refer to `headphones`, which is a child of `inventory` under ### Key name rules -You can only use the [legacy path syntax](#legacy-path-syntax) to access JSON keys if they follow these name syntax rules: +You can only use the legacy path syntax to access JSON keys if they follow these name syntax rules: - Key names must begin with a letter, a dollar sign (`$`), or an underscore (`_`). - Key names can contain letters, digits, dollar signs, and underscores.