From 3927a8978b7242189c74d15668dd809674a2c5ea Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Mon, 2 Oct 2023 20:35:45 +0200 Subject: [PATCH] Fix redirect for json-schema.org (#1718) * Fix redirect * Add changelog --- docs/source/endpoints/types.md | 2 +- news/1718.documentation | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 news/1718.documentation diff --git a/docs/source/endpoints/types.md b/docs/source/endpoints/types.md index d2ea10eada..e12f66b75b 100644 --- a/docs/source/endpoints/types.md +++ b/docs/source/endpoints/types.md @@ -107,7 +107,7 @@ To get the schema of a content type, access the `/@types` endpoint with the name :language: http ``` -The content type schema uses the [JSON Schema](http://json-schema.org/) format. +The content type schema uses the [JSON Schema](https://json-schema.org/) format. The tagged values for the widgets are also exposed in the `properties` attribute of the schema. For `Choice` fields, their vocabulary or source will be linked to in a `vocabulary` or `querysource` property (one or the other, never both): diff --git a/news/1718.documentation b/news/1718.documentation new file mode 100644 index 0000000000..acca3051ee --- /dev/null +++ b/news/1718.documentation @@ -0,0 +1 @@ +Fix redirect for https://json-schema.org/. @stevepiercy