Skip to content

Commit

Permalink
chore: updated schema generation
Browse files Browse the repository at this point in the history
  • Loading branch information
bielu committed Dec 29, 2023
1 parent 4b960b3 commit ff8a335
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Bielu:Cdn:Akamai",
"definitions": {
"BieluUmbracoCdnAkamaiFastPurgeInterfaceNetwork6": {
"type": "string",
"description": "",
"x-enumNames": [
"Staging",
"Production"
],
"enum": [
"staging",
"production"
]
},
"BieluUmbracoCdnCoreConfigurationConfigurationBaseOptions": {
"type": "object",
"properties": {
"Disabled": {
"type": "boolean"
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/BieluUmbracoCdnCoreConfigurationConfigurationBaseOptions"
},
{
"type": "object",
"properties": {
"BaseUrl": {
"type": "string"
},
"Network": {
"$ref": "#/definitions/BieluUmbracoCdnAkamaiFastPurgeInterfaceNetwork6"
},
"SwitchKey": {
"type": "string"
}
}
}
]
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<IsPackable>false</IsPackable>
<IsPackable>true</IsPackable>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<ItemGroup>
<UmbracoJsonSchemaFiles Include="$(MSBuildThisFileDirectory)..\Schema\appsettings-schema.CloudflareOptions.json" />
<UmbracoJsonSchemaFiles Include="$(MSBuildThisFileDirectory)..\Schema\appsettings-schema.AkamaiOptions.json" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Bielu:Cdn::Azure:FrontDoor",
"title": "Bielu:Cdn:Azure:FrontDoor",
"definitions": {
"BieluUmbracoCdnAzureModelsAuthenticationType": {
"type": "string",
Expand Down

0 comments on commit ff8a335

Please sign in to comment.