From a56912a3a46072033de05cbaaa363ad11bd3ef4a Mon Sep 17 00:00:00 2001 From: Bart Koelman <10324372+bkoelman@users.noreply.github.com> Date: Fri, 25 Apr 2025 02:10:10 +0200 Subject: [PATCH] Use https in external links (docs and schema refs) --- .github/ISSUE_TEMPLATE/question.md | 2 +- docs/usage/meta.md | 4 ++-- src/Examples/DapperExample/Properties/launchSettings.json | 2 +- .../DatabasePerTenantExample/Properties/launchSettings.json | 2 +- src/Examples/GettingStarted/Properties/launchSettings.json | 2 +- src/Examples/GettingStarted/README.md | 3 +-- .../JsonApiDotNetCoreExample/Properties/launchSettings.json | 2 +- .../MultiDbContextExample/Properties/launchSettings.json | 2 +- .../NoEntityFrameworkExample/Properties/launchSettings.json | 2 +- .../OpenApiKiotaClientExample/Properties/launchSettings.json | 2 +- .../OpenApiNSwagClientExample/Properties/launchSettings.json | 2 +- src/Examples/ReportsExample/Properties/launchSettings.json | 2 +- 12 files changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index 3e3c1ba085..7bf89d4e46 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -8,7 +8,7 @@ assignees: '' --- #### SUMMARY diff --git a/docs/usage/meta.md b/docs/usage/meta.md index a115e25740..674d39413b 100644 --- a/docs/usage/meta.md +++ b/docs/usage/meta.md @@ -60,7 +60,7 @@ public class PersonDefinition : JsonApiResourceDefinition { return new Dictionary { - ["notice"] = "Check our intranet at http://www.example.com/employees/" + + ["notice"] = "Check our intranet at https://www.example.com/employees/" + $"{person.StringId} for personal details." }; } @@ -80,7 +80,7 @@ public class PersonDefinition : JsonApiResourceDefinition ... }, "meta": { - "notice": "Check our intranet at http://www.example.com/employees/1 for personal details." + "notice": "Check our intranet at https://www.example.com/employees/1 for personal details." } } ] diff --git a/src/Examples/DapperExample/Properties/launchSettings.json b/src/Examples/DapperExample/Properties/launchSettings.json index 137620d860..0d86e8f61a 100644 --- a/src/Examples/DapperExample/Properties/launchSettings.json +++ b/src/Examples/DapperExample/Properties/launchSettings.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/launchsettings.json", + "$schema": "https://json.schemastore.org/launchsettings.json", "iisSettings": { "windowsAuthentication": false, "anonymousAuthentication": true, diff --git a/src/Examples/DatabasePerTenantExample/Properties/launchSettings.json b/src/Examples/DatabasePerTenantExample/Properties/launchSettings.json index 1ab75296f7..43ae84e51e 100644 --- a/src/Examples/DatabasePerTenantExample/Properties/launchSettings.json +++ b/src/Examples/DatabasePerTenantExample/Properties/launchSettings.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/launchsettings.json", + "$schema": "https://json.schemastore.org/launchsettings.json", "iisSettings": { "windowsAuthentication": false, "anonymousAuthentication": true, diff --git a/src/Examples/GettingStarted/Properties/launchSettings.json b/src/Examples/GettingStarted/Properties/launchSettings.json index d806502bcd..304c377082 100644 --- a/src/Examples/GettingStarted/Properties/launchSettings.json +++ b/src/Examples/GettingStarted/Properties/launchSettings.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/launchsettings.json", + "$schema": "https://json.schemastore.org/launchsettings.json", "iisSettings": { "windowsAuthentication": false, "anonymousAuthentication": true, diff --git a/src/Examples/GettingStarted/README.md b/src/Examples/GettingStarted/README.md index 8d8da60bc8..4d94ffd825 100644 --- a/src/Examples/GettingStarted/README.md +++ b/src/Examples/GettingStarted/README.md @@ -7,8 +7,7 @@ You can verify the project is running by checking this endpoint: `localhost:14141/api/people` -For further documentation and implementation of a JsonApiDotNetCore Application see the documentation or GitHub page: +For further documentation and implementation of a JsonApiDotNetCore application, see the documentation or GitHub page: Repository: https://github.com/json-api-dotnet/JsonApiDotNetCore - Documentation: https://www.jsonapi.net diff --git a/src/Examples/JsonApiDotNetCoreExample/Properties/launchSettings.json b/src/Examples/JsonApiDotNetCoreExample/Properties/launchSettings.json index 82b89e1843..7c4189f272 100644 --- a/src/Examples/JsonApiDotNetCoreExample/Properties/launchSettings.json +++ b/src/Examples/JsonApiDotNetCoreExample/Properties/launchSettings.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/launchsettings.json", + "$schema": "https://json.schemastore.org/launchsettings.json", "iisSettings": { "windowsAuthentication": false, "anonymousAuthentication": true, diff --git a/src/Examples/MultiDbContextExample/Properties/launchSettings.json b/src/Examples/MultiDbContextExample/Properties/launchSettings.json index 9d3467265f..2cb2d59cae 100644 --- a/src/Examples/MultiDbContextExample/Properties/launchSettings.json +++ b/src/Examples/MultiDbContextExample/Properties/launchSettings.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/launchsettings.json", + "$schema": "https://json.schemastore.org/launchsettings.json", "iisSettings": { "windowsAuthentication": false, "anonymousAuthentication": true, diff --git a/src/Examples/NoEntityFrameworkExample/Properties/launchSettings.json b/src/Examples/NoEntityFrameworkExample/Properties/launchSettings.json index d1e2e0ca67..e5d1b8837c 100644 --- a/src/Examples/NoEntityFrameworkExample/Properties/launchSettings.json +++ b/src/Examples/NoEntityFrameworkExample/Properties/launchSettings.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/launchsettings.json", + "$schema": "https://json.schemastore.org/launchsettings.json", "iisSettings": { "windowsAuthentication": false, "anonymousAuthentication": true, diff --git a/src/Examples/OpenApiKiotaClientExample/Properties/launchSettings.json b/src/Examples/OpenApiKiotaClientExample/Properties/launchSettings.json index afb5e5dac4..142f412e8a 100644 --- a/src/Examples/OpenApiKiotaClientExample/Properties/launchSettings.json +++ b/src/Examples/OpenApiKiotaClientExample/Properties/launchSettings.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/launchsettings.json", + "$schema": "https://json.schemastore.org/launchsettings.json", "profiles": { "Kestrel": { "commandName": "Project", diff --git a/src/Examples/OpenApiNSwagClientExample/Properties/launchSettings.json b/src/Examples/OpenApiNSwagClientExample/Properties/launchSettings.json index afb5e5dac4..142f412e8a 100644 --- a/src/Examples/OpenApiNSwagClientExample/Properties/launchSettings.json +++ b/src/Examples/OpenApiNSwagClientExample/Properties/launchSettings.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/launchsettings.json", + "$schema": "https://json.schemastore.org/launchsettings.json", "profiles": { "Kestrel": { "commandName": "Project", diff --git a/src/Examples/ReportsExample/Properties/launchSettings.json b/src/Examples/ReportsExample/Properties/launchSettings.json index 7add074ef2..83e6baea4c 100644 --- a/src/Examples/ReportsExample/Properties/launchSettings.json +++ b/src/Examples/ReportsExample/Properties/launchSettings.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/launchsettings.json", + "$schema": "https://json.schemastore.org/launchsettings.json", "iisSettings": { "windowsAuthentication": false, "anonymousAuthentication": true,