2971 lines
96 KiB
JSON
2971 lines
96 KiB
JSON
{
|
|
"title": "AppSettings",
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"type": "object",
|
|
"definitions": {
|
|
"webOptimizer": {
|
|
"type": "object",
|
|
"description": "Settings for WebOptimizer.Core",
|
|
"properties": {
|
|
"enableCaching": {
|
|
"description": "Determines if the \"cache-control\" HTTP headers should be set and if conditional GET (304) requests should be supported. This could be helpful to disable while in development mode.",
|
|
"type": "boolean"
|
|
},
|
|
"enableTagHelperBundling": {
|
|
"description": "Determines if `<script>` and `<link>` elements should point to the bundled path or a reference per source file should be created. This is helpful to disable when in development mode.",
|
|
"type": "boolean",
|
|
"default": true
|
|
}
|
|
}
|
|
},
|
|
"cdn": {
|
|
"type": "object",
|
|
"description": "Definitions for WebEssentials.AspNetCore.CdnTagHelpers",
|
|
"properties": {
|
|
"url": {
|
|
"description": "An absolute URL used as a prefix for static resources",
|
|
"type": "string",
|
|
"pattern": "^((//|https?://).+|)$"
|
|
},
|
|
"prefetch": {
|
|
"description": "If true, injects a <link rel='dns-prefetch'> tag that speeds up DNS resolution to the CDN.",
|
|
"type": "boolean",
|
|
"default": true
|
|
}
|
|
}
|
|
},
|
|
"pwa": {
|
|
"properties": {
|
|
"cacheId": {
|
|
"description": "The cache identifier of the service worker (can be any string). Change this property to force the service worker to reload in browsers.",
|
|
"type": "string",
|
|
"default": "v1.0"
|
|
},
|
|
"offlineRoute": {
|
|
"description": "The route to the page to show when offline.",
|
|
"type": "string",
|
|
"default": "/offline.html"
|
|
},
|
|
"registerServiceWorker": {
|
|
"description": "Determines if a script that registers the service worker should be injected into the bottom of the HTML page.",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"registerWebmanifest": {
|
|
"description": "Determines if a meta tag that points to the web manifest should be inserted at the end of the head element.",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"routesToPreCache": {
|
|
"description": "A comma separated list of routes to pre-cache when service worker installs in the browser.",
|
|
"type": "string",
|
|
"default": ""
|
|
},
|
|
"strategy": {
|
|
"description": "Selects one of the predefined service worker types.",
|
|
"enum": [
|
|
"cacheFirst",
|
|
"cacheFirstSafe",
|
|
"minimal",
|
|
"networkFirst"
|
|
],
|
|
"default": "cacheFirstSafe"
|
|
}
|
|
}
|
|
},
|
|
"ElmahIo": {
|
|
"properties": {
|
|
"ApiKey": {
|
|
"description": "An elmah.io API key with the Messages | Write permission.",
|
|
"type": "string",
|
|
"pattern": "^[0-9a-f]{32}$"
|
|
},
|
|
"LogId": {
|
|
"description": "The Id of the elmah.io log to store messages in.",
|
|
"type": "string",
|
|
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
|
|
},
|
|
"Application": {
|
|
"description": "An application name to put on all error messages.",
|
|
"type": "string"
|
|
},
|
|
"HandledStatusCodesToLog": {
|
|
"description": "A list of HTTP status codes (besides 404) to log even though no exception is thrown.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"TreatLoggingAsBreadcrumbs": {
|
|
"description": "Include log messages from Microsoft.Extensions.Logging as breadcrumbs.",
|
|
"type": "boolean"
|
|
},
|
|
"HeartbeatId": {
|
|
"description": "The Id of the elmah.io heartbeat to notify.",
|
|
"type": "string",
|
|
"pattern": "^[0-9a-f]{32}$"
|
|
}
|
|
},
|
|
"required": [
|
|
"ApiKey",
|
|
"LogId"
|
|
]
|
|
},
|
|
"protocols": {
|
|
"description": "The protocols enabled on the endpoint.",
|
|
"type": "string",
|
|
"enum": [
|
|
"None",
|
|
"Http1",
|
|
"Http2",
|
|
"Http1AndHttp2",
|
|
"Http3",
|
|
"Http1AndHttp2AndHttp3"
|
|
]
|
|
},
|
|
"certificate": {
|
|
"description": "Certificate configuration.",
|
|
"type": "object",
|
|
"properties": {
|
|
"Path": {
|
|
"description": "The certificate file path. If a file path is specified then the certificate will be loaded from the file system.",
|
|
"type": "string"
|
|
},
|
|
"KeyPath": {
|
|
"description": "The certificate key file path. Available in .NET 5 and later.",
|
|
"type": "string"
|
|
},
|
|
"Password": {
|
|
"description": "The certificate password used to access the private key.",
|
|
"type": "string"
|
|
},
|
|
"Subject": {
|
|
"description": "The certificate subject. If a subject is specified then the certificate will be loaded from the certificate store.",
|
|
"type": "string"
|
|
},
|
|
"Store": {
|
|
"description": "The certificate store name. Defaults to 'My'.",
|
|
"type": "string",
|
|
"default": "My"
|
|
},
|
|
"Location": {
|
|
"description": "The certificate store location. Defaults to 'CurrentUser'.",
|
|
"type": "string",
|
|
"enum": [
|
|
"LocalMachine",
|
|
"CurrentUser"
|
|
],
|
|
"default": "CurrentUser"
|
|
},
|
|
"AllowInvalid": {
|
|
"description": "A value indicating whether or not to load certificates that are considered invalid. Defaults to false.",
|
|
"type": "boolean",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
"sslProtocols": {
|
|
"description": "Specifies allowable SSL protocols. Defaults to 'None' which allows the operating system to choose the best protocol to use, and to block protocols that are not secure. Unless your app has a specific reason not to, you should use this default. Available in .NET 5 and later.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"enum": [
|
|
"None",
|
|
"Tls",
|
|
"Tls11",
|
|
"Tls12",
|
|
"Tls13"
|
|
],
|
|
"default": "None"
|
|
}
|
|
},
|
|
"clientCertificateMode": {
|
|
"description": "Specifies the client certificate requirements for a HTTPS connection. Defaults to 'NoCertificate'. Available in .NET 5 and later.",
|
|
"type": "string",
|
|
"enum": [
|
|
"NoCertificate",
|
|
"AllowCertificate",
|
|
"RequireCertificate"
|
|
],
|
|
"default": "NoCertificate"
|
|
},
|
|
"kestrel": {
|
|
"type": "object",
|
|
"description": "ASP.NET Core Kestrel server configuration.",
|
|
"properties": {
|
|
"Endpoints": {
|
|
"description": "Endpoints that Kestrel listens to for network requests. Each endpoint has a name specified by its JSON property name.",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"description": "Kestrel endpoint configuration.",
|
|
"type": "object",
|
|
"properties": {
|
|
"Url": {
|
|
"description": "The scheme, host name, and port the endpoint will listen on. A Url is required.",
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"Protocols": {
|
|
"$ref": "#/definitions/protocols"
|
|
},
|
|
"SslProtocols": {
|
|
"$ref": "#/definitions/sslProtocols"
|
|
},
|
|
"Certificate": {
|
|
"$ref": "#/definitions/certificate"
|
|
},
|
|
"ClientCertificateMode": {
|
|
"$ref": "#/definitions/clientCertificateMode"
|
|
},
|
|
"Sni": {
|
|
"description": "Server Name Indication (SNI) configuration. This enables the mapping of client requested host names to certificates and other TLS settings. Wildcard names prefixed with '*.', as well as a top level '*' are supported. Available in .NET 5 and later.",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"description": "Endpoint SNI configuration.",
|
|
"type": "object",
|
|
"properties": {
|
|
"Protocols": {
|
|
"$ref": "#/definitions/protocols"
|
|
},
|
|
"SslProtocols": {
|
|
"$ref": "#/definitions/sslProtocols"
|
|
},
|
|
"Certificate": {
|
|
"$ref": "#/definitions/certificate"
|
|
},
|
|
"ClientCertificateMode": {
|
|
"$ref": "#/definitions/clientCertificateMode"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"Url"
|
|
]
|
|
}
|
|
},
|
|
"EndpointDefaults": {
|
|
"description": "Default configuration applied to all endpoints. Named endpoint specific configuration overrides defaults.",
|
|
"type": "object",
|
|
"properties": {
|
|
"Protocols": {
|
|
"$ref": "#/definitions/protocols"
|
|
},
|
|
"SslProtocols": {
|
|
"$ref": "#/definitions/sslProtocols"
|
|
},
|
|
"ClientCertificateMode": {
|
|
"$ref": "#/definitions/clientCertificateMode"
|
|
}
|
|
}
|
|
},
|
|
"Certificates": {
|
|
"description": "Certificates that Kestrel uses with HTTPS endpoints. Each certificate has a name specified by its JSON property name. The 'Default' certificate is used by HTTPS endpoints that haven't specified a certificate.",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/certificate"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"logLevelThreshold": {
|
|
"description": "Log level threshold.",
|
|
"type": "string",
|
|
"enum": [
|
|
"Trace",
|
|
"Debug",
|
|
"Information",
|
|
"Warning",
|
|
"Error",
|
|
"Critical",
|
|
"None"
|
|
]
|
|
},
|
|
"logLevel": {
|
|
"description": "Log level configurations used when creating logs. Only logs that exceeds its matching log level will be enabled. Each log level configuration has a category specified by its JSON property name. For more information about configuring log levels, see https://docs.microsoft.com/aspnet/core/fundamentals/logging/#configure-logging.",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/logLevelThreshold"
|
|
}
|
|
},
|
|
"logging": {
|
|
"type": "object",
|
|
"description": "Configuration for Microsoft.Extensions.Logging.",
|
|
"properties": {
|
|
"LogLevel": {
|
|
"$ref": "#/definitions/logLevel"
|
|
},
|
|
"Console": {
|
|
"properties": {
|
|
"LogLevel": {
|
|
"$ref": "#/definitions/logLevel"
|
|
},
|
|
"FormatterName": {
|
|
"description": "Name of the log message formatter to use. Defaults to 'simple'.",
|
|
"type": "string",
|
|
"default": "simple"
|
|
},
|
|
"FormatterOptions": {
|
|
"description": "Log message formatter options. Additional properties are available on the options depending on the configured formatter. The formatter is specified by FormatterName.",
|
|
"type": "object",
|
|
"properties": {
|
|
"IncludeScopes": {
|
|
"description": "Include scopes when true. Defaults to false.",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"TimestampFormat": {
|
|
"description": "Format string used to format timestamp in logging messages. Defaults to null.",
|
|
"type": "string"
|
|
},
|
|
"UseUtcTimestamp": {
|
|
"description": "Indication whether or not UTC timezone should be used to for timestamps in logging messages. Defaults to false.",
|
|
"type": "boolean",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
"LogToStandardErrorThreshold": {
|
|
"description": "The minimum level of messages are written to Console.Error.",
|
|
"$ref": "#/definitions/logLevelThreshold"
|
|
}
|
|
}
|
|
},
|
|
"EventSource": {
|
|
"properties": {
|
|
"LogLevel": {
|
|
"$ref": "#/definitions/logLevel"
|
|
}
|
|
}
|
|
},
|
|
"Debug": {
|
|
"properties": {
|
|
"LogLevel": {
|
|
"$ref": "#/definitions/logLevel"
|
|
}
|
|
}
|
|
},
|
|
"EventLog": {
|
|
"properties": {
|
|
"LogLevel": {
|
|
"$ref": "#/definitions/logLevel"
|
|
}
|
|
}
|
|
},
|
|
"ElmahIo": {
|
|
"properties": {
|
|
"LogLevel": {
|
|
"$ref": "#/definitions/logLevel"
|
|
}
|
|
}
|
|
},
|
|
"ElmahIoBreadcrumbs": {
|
|
"properties": {
|
|
"LogLevel": {
|
|
"$ref": "#/definitions/logLevel"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"additionalProperties": {
|
|
"type": "object",
|
|
"description": "Logging configuration for a provider. The provider name must match the configuration's JSON property property name.",
|
|
"properties": {
|
|
"LogLevel": {
|
|
"$ref": "#/definitions/logLevel"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"allowedHosts": {
|
|
"description": "ASP.NET Core host filtering middleware configuration. Allowed hosts is a semicolon-delimited list of host names without port numbers. Requests without a matching host name will be refused. Host names may be prefixed with a '*.' wildcard, or use '*' to allow all hosts.",
|
|
"type": "string"
|
|
},
|
|
"connectionStrings": {
|
|
"description": "Connection string configuration. Get connection strings with the IConfiguration.GetConnectionString(string) extension method.",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"description": "Connection string configuration. Each connection string has a name specified by its JSON property name.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"NLog": {
|
|
"type": "object",
|
|
"description": "NLog configuration",
|
|
"default": {},
|
|
"properties": {
|
|
"autoReload": {
|
|
"type": "boolean",
|
|
"description": "Automatically reload the NLog configuration when notified that appsettings.json file has changed.",
|
|
"default": false
|
|
},
|
|
"throwConfigExceptions": {
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
],
|
|
"description": "Throws an exception when there is a config error? If not set, then throwExceptions will be used for this setting.",
|
|
"default": false
|
|
},
|
|
"throwExceptions": {
|
|
"type": "boolean",
|
|
"description": "Throws an exception when there is an error. For unit testing only and advanced troubleshooting.",
|
|
"default": false
|
|
},
|
|
"internalLogLevel": {
|
|
"type": "string",
|
|
"description": "The minimal log level for the internal logger.",
|
|
"enum": [
|
|
"Trace",
|
|
"Debug",
|
|
"Info",
|
|
"Warn",
|
|
"Error",
|
|
"Fatal",
|
|
"Off"
|
|
],
|
|
"default": "Off"
|
|
},
|
|
"internalLogFile": {
|
|
"type": "string",
|
|
"description": "Write internal log to the specified filepath"
|
|
},
|
|
"internalLogToConsole": {
|
|
"type": "boolean",
|
|
"description": "Write internal log to a console",
|
|
"default": "false"
|
|
},
|
|
"internalLogToConsoleError": {
|
|
"type": "boolean",
|
|
"description": "Write internal log to a console with error stream",
|
|
"default": "false"
|
|
},
|
|
"globalThreshold": {
|
|
"type": "string",
|
|
"description": "Log events below this threshold are not logged.",
|
|
"enum": [
|
|
"Trace",
|
|
"Debug",
|
|
"Info",
|
|
"Warn",
|
|
"Error",
|
|
"Fatal",
|
|
"Off"
|
|
],
|
|
"default": "Off"
|
|
},
|
|
"autoShutdown": {
|
|
"type": "boolean",
|
|
"description": "Automatically call `LogFactory.Shutdown` on AppDomain.Unload or AppDomain.ProcessExit",
|
|
"default": "true"
|
|
},
|
|
"extensions": {
|
|
"type": "array",
|
|
"description": "Load NLog extension packages for additional targets and layouts",
|
|
"default": [],
|
|
"items": {
|
|
"type": "object",
|
|
"description": "",
|
|
"default": {},
|
|
"properties": {
|
|
"assembly": {
|
|
"type": "string",
|
|
"description": "Assembly Name of the NLog extension package."
|
|
},
|
|
"prefix": {
|
|
"type": "string",
|
|
"description": "Appends prefix to all type-names loaded from the assembly",
|
|
"default": ""
|
|
},
|
|
"assemblyFile": {
|
|
"type": "string",
|
|
"description": "Absolute filepath to the Assembly-file of the NLog extension package.",
|
|
"default": ""
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"variables": {
|
|
"type": "object",
|
|
"description": "Key-value pair of variables",
|
|
"propertyNames": {
|
|
"pattern": "^[A-Za-z0-9_.-]+$"
|
|
},
|
|
"patternProperties": {
|
|
".*": {
|
|
"type": [
|
|
"number",
|
|
"string",
|
|
"boolean"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"default-wrapper": {
|
|
"type": "object",
|
|
"description": "",
|
|
"default": {},
|
|
"required": [
|
|
"type"
|
|
],
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"description": ""
|
|
}
|
|
}
|
|
},
|
|
"targets": {
|
|
"type": "object",
|
|
"description": "",
|
|
"default": {},
|
|
"properties": {
|
|
"async": {
|
|
"type": "boolean",
|
|
"description": "Wrap all defined targets using AsyncWrapper with OverflowAction=Discard for better performance."
|
|
}
|
|
}
|
|
},
|
|
"rules": {
|
|
"oneOf": [
|
|
{
|
|
"type": "array",
|
|
"description": "",
|
|
"default": [],
|
|
"items": {
|
|
"$ref": "#/definitions/NLogRulesItem"
|
|
}
|
|
},
|
|
{
|
|
"type": "object",
|
|
"propertyNames": {
|
|
"pattern": "^[0-9]+$"
|
|
},
|
|
"patternProperties": {
|
|
".*": {
|
|
"$ref": "#/definitions/NLogRulesItem"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"NLogRulesItem": {
|
|
"type": "object",
|
|
"description": "Redirect LogEvents from matching Logger objects to specified targets",
|
|
"default": {},
|
|
"required": [
|
|
"logger"
|
|
],
|
|
"properties": {
|
|
"logger": {
|
|
"type": "string",
|
|
"description": "Match Logger objects based on their Logger-name. Can use wildcard characters ('*' or '?')."
|
|
},
|
|
"ruleName": {
|
|
"type": "string",
|
|
"description": "Rule identifier to allow rule lookup with Configuration.FindRuleByName and Configuration.RemoveRuleByName."
|
|
},
|
|
"level": {
|
|
"anyOf": [
|
|
{
|
|
"type": "string",
|
|
"description": "",
|
|
"enum": [
|
|
"Trace",
|
|
"Debug",
|
|
"Info",
|
|
"Warn",
|
|
"Error",
|
|
"Fatal"
|
|
]
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
]
|
|
},
|
|
"levels": {
|
|
"type": "string",
|
|
"description": "Comma separated list of levels that this rule matches."
|
|
},
|
|
"minLevel": {
|
|
"anyOf": [
|
|
{
|
|
"type": "string",
|
|
"description": "",
|
|
"enum": [
|
|
"Trace",
|
|
"Debug",
|
|
"Info",
|
|
"Warn",
|
|
"Error",
|
|
"Fatal"
|
|
]
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
]
|
|
},
|
|
"maxLevel": {
|
|
"anyOf": [
|
|
{
|
|
"type": "string",
|
|
"description": "",
|
|
"enum": [
|
|
"Trace",
|
|
"Debug",
|
|
"Info",
|
|
"Warn",
|
|
"Error",
|
|
"Fatal"
|
|
]
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
]
|
|
},
|
|
"writeTo": {
|
|
"type": "string",
|
|
"description": "Name or names of a target - separated by comma. Remove this property for sending events to the blackhole."
|
|
},
|
|
"final": {
|
|
"type": "boolean",
|
|
"description": "Ignore further rules if this one matches.",
|
|
"default": false
|
|
},
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"description": "",
|
|
"default": true
|
|
},
|
|
"filters": {
|
|
"oneOf": [
|
|
{
|
|
"type": "array",
|
|
"description": "",
|
|
"default": [],
|
|
"items": {
|
|
"type": "object",
|
|
"description": "",
|
|
"default": {},
|
|
"required": [
|
|
"type"
|
|
],
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"description": ""
|
|
},
|
|
"action": {
|
|
"type": "string",
|
|
"description": "Result action when filter matches logevent.",
|
|
"enum": [
|
|
"Neutral",
|
|
"Log",
|
|
"Ignore",
|
|
"LogFinal",
|
|
"IgnoreFinal"
|
|
],
|
|
"default": "Neutral"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "object",
|
|
"description": "",
|
|
"default": {}
|
|
}
|
|
]
|
|
},
|
|
"filterDefaultAction": {
|
|
"type": "string",
|
|
"description": "Default action if none of the filters match.",
|
|
"enum": [
|
|
"Neutral",
|
|
"Log",
|
|
"Ignore",
|
|
"LogFinal",
|
|
"IgnoreFinal"
|
|
],
|
|
"default": "Ignore"
|
|
}
|
|
}
|
|
},
|
|
"umbraco": {
|
|
"description": "Configuration of Open Source .NET CMS - Umbraco",
|
|
"properties": {
|
|
"CMS": {
|
|
"type": "object",
|
|
"properties": {
|
|
"ActiveDirectory": {
|
|
"$ref": "#/definitions/umbracoActiveDirectory"
|
|
},
|
|
"Content": {
|
|
"$ref": "#/definitions/umbracoContent"
|
|
},
|
|
"Debug": {
|
|
"$ref": "#/definitions/umbracoDebug"
|
|
},
|
|
"Examine": {
|
|
"properties": {
|
|
"LuceneDirectoryFactory": {
|
|
"description": "Lucene directory factory type",
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"ExceptionFilter": {
|
|
"properties": {
|
|
"Disabled": {
|
|
"description": "Indicating whether the exception filter is disabled",
|
|
"type": "boolean",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
"Global": {
|
|
"$ref": "#/definitions/umbracoGlobal"
|
|
},
|
|
"HealthChecks": {
|
|
"$ref": "#/definitions/umbracoHealthChecks"
|
|
},
|
|
"Hosting": {
|
|
"$ref": "#/definitions/umbracoHosting"
|
|
},
|
|
"Imaging": {
|
|
"$ref": "#/definitions/umbracoImaging"
|
|
},
|
|
"KeepAlive": {
|
|
"$ref": "#/definitions/umbracoKeepAlive"
|
|
},
|
|
"Logging": {
|
|
"properties": {
|
|
"MaxLogAge": {
|
|
"description": "Maximum age of a log file - https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-timespan-format-strings",
|
|
"type": "string",
|
|
"default": "1.00:00:00"
|
|
}
|
|
}
|
|
},
|
|
"ModelsBuilder": {
|
|
"$ref": "#/definitions/umbracoModelsBuilder"
|
|
},
|
|
"NuCache": {
|
|
"properties": {
|
|
"BTreeBlockSize": {
|
|
"type": "integer"
|
|
}
|
|
}
|
|
},
|
|
"Plugins": {
|
|
"properties": {
|
|
"BrowsableFileExtensions": {
|
|
"description": "Allowed file extensions (including the period .) that should be accessible from the browser",
|
|
"type": [
|
|
"string"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"RequestHandler": {
|
|
"$ref": "#/definitions/umbracoRequestHandler"
|
|
},
|
|
"RichTextEditor": {
|
|
"$ref": "#/definitions/umbracoRichTextEditor"
|
|
},
|
|
"Runtime": {
|
|
"properties": {
|
|
"MaxQueryStringLength": {
|
|
"description": "Value for the maximum query string length",
|
|
"type": "integer"
|
|
},
|
|
"MaxRequestLength": {
|
|
"description": "Value for the maximum request length",
|
|
"type": "integer"
|
|
}
|
|
}
|
|
},
|
|
"RuntimeMinification": {
|
|
"$ref": "#/definitions/umbracoRuntimeMinification"
|
|
},
|
|
"Security": {
|
|
"$ref": "#/definitions/umbracoSecurity"
|
|
},
|
|
"Tours": {
|
|
"properties": {
|
|
"EnableTours": {
|
|
"description": "Indicating whether back-office tours are enabled",
|
|
"type": "boolean",
|
|
"default": true
|
|
}
|
|
}
|
|
},
|
|
"TypeFinder": {
|
|
"properties": {
|
|
"AssembliesAcceptingLoadExceptions": {
|
|
"description": "A CSV string of assemblies that accept load exceptions during type finder operations",
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"WebRouting": {
|
|
"$ref": "#/definitions/umbracoWebRouting"
|
|
},
|
|
"Unattended": {
|
|
"$ref": "#/definitions/umbracoUnattended"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"CMS"
|
|
]
|
|
},
|
|
"umbracoActiveDirectory": {
|
|
"description": "Configuration of Active Directory for Umbraco CMS",
|
|
"properties": {
|
|
"Domain": {
|
|
"type": "string",
|
|
"description": "Active Directory Domain"
|
|
}
|
|
}
|
|
},
|
|
"umbracoContent": {
|
|
"properties": {
|
|
"AllowedUploadFiles": {
|
|
"description": "Collection of file extensions without . that are allowed for upload",
|
|
"type": [
|
|
"string"
|
|
]
|
|
},
|
|
"DisallowedUploadFiles": {
|
|
"description": "Collection of file extensions without . that are disallowed for upload",
|
|
"type": [
|
|
"string"
|
|
]
|
|
},
|
|
"Error404Collection": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/umbracoContentErrorPage"
|
|
}
|
|
},
|
|
"Imaging": {
|
|
"properties": {
|
|
"AutoFillImageProperties": {
|
|
"description": "Imaging autofill following media file upload fields",
|
|
"properties": {
|
|
"Alias": {
|
|
"default": "umbracoFile"
|
|
},
|
|
"ExtensionFieldAlias": {
|
|
"default": "umbracoExtension"
|
|
},
|
|
"HeightFieldAlias": {
|
|
"default": "umbracoHeight"
|
|
},
|
|
"LengthFieldAlias": {
|
|
"default": "umbracoBytes"
|
|
},
|
|
"WidthFieldAlias": {
|
|
"default": "umbracoWidth"
|
|
}
|
|
}
|
|
},
|
|
"ImageFileTypes": {
|
|
"description": "Collection of accepted image file extensions",
|
|
"type": [
|
|
"string"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"LoginBackgroundImage": {
|
|
"description": "Path to the login screen background image",
|
|
"default": "assets/img/login.jpg",
|
|
"type": "string"
|
|
},
|
|
"LoginLogoImage": {
|
|
"description": "Path to the login screen logo image",
|
|
"default": "assets/img/application/umbraco_logo_white.svg",
|
|
"type": "string"
|
|
},
|
|
"MacroErrors": {
|
|
"description": "Macro error behaviour",
|
|
"enum": [
|
|
"Inline",
|
|
"Silent",
|
|
"Throw",
|
|
"Content"
|
|
]
|
|
},
|
|
"Notifications": {
|
|
"properties": {
|
|
"Email": {
|
|
"description": "Email address used for notifications",
|
|
"type": "string"
|
|
},
|
|
"DisableHtmlEmail": {
|
|
"description": "Whether HTML email notifications should be disabled",
|
|
"type": "boolean",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
"PreviewBadge": {
|
|
"description": "Preview badge mark-up",
|
|
"type": "string"
|
|
},
|
|
"ResolveUrlsFromTextString": {
|
|
"description": "URLs should be resolved from text strings",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"ShowDeprecatedPropertyEditors": {
|
|
"description": "Deprecated property editors should be shown",
|
|
"type": "boolean",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
"umbracoContentErrorPage": {
|
|
"properties": {
|
|
"ContentId": {
|
|
"description": "An int of the content",
|
|
"type": "integer"
|
|
},
|
|
"ContentKey": {
|
|
"description": "A guid of the content",
|
|
"type": "string"
|
|
},
|
|
"ContentXPath": {
|
|
"description": "An XPath query for the content",
|
|
"type": "string"
|
|
},
|
|
"Culture": {
|
|
"description": "Content culture",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"allOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoValidatableEntryBase"
|
|
},
|
|
{
|
|
"type": "object",
|
|
"description": "Typed configuration for a content error page.",
|
|
"required": [
|
|
"Culture"
|
|
],
|
|
"properties": {
|
|
"ContentId": {
|
|
"type": "integer",
|
|
"description": "Gets or sets a value for the content Id.",
|
|
"format": "int32"
|
|
},
|
|
"ContentKey": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the content key.",
|
|
"format": "guid"
|
|
},
|
|
"ContentXPath": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the content XPath."
|
|
},
|
|
"HasContentId": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether the ContentId field is populated."
|
|
},
|
|
"HasContentKey": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether the ContentKey field is populated."
|
|
},
|
|
"HasContentXPath": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether the ContentXPath field is populated."
|
|
},
|
|
"Culture": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the content culture.",
|
|
"minLength": 1
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"umbracoDebug": {
|
|
"properties": {
|
|
"LogIncompletedScopes": {
|
|
"description": "Indicating whether incompleted scopes should be logged",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"DumpOnTimeoutThreadAbort": {
|
|
"description": "Indicating whether memory dumps on thread abort should be taken",
|
|
"type": "boolean",
|
|
"default": false
|
|
}
|
|
}
|
|
},
|
|
"umbracoGlobal": {
|
|
"properties": {
|
|
"ReservedUrls": {
|
|
"description": "CSV string of reserved URLs (must end with a comma)",
|
|
"type": "string",
|
|
"default": "~/config/splashes/noNodes.aspx,~/.well-known,"
|
|
},
|
|
"ReservedPaths": {
|
|
"description": "CSV string of reserved paths (must end with a comma)",
|
|
"type": "string",
|
|
"default": "~/app_plugins/,~/install/,~/mini-profiler-resources/,~/umbraco/,"
|
|
},
|
|
"TimeOut": {
|
|
"description": "Duration of timeout https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-timespan-format-strings",
|
|
"type": "string",
|
|
"default": "00:20:00"
|
|
},
|
|
"DefaultUILanguage": {
|
|
"description": "Default UI language of Umbraco backoffice",
|
|
"type": "string",
|
|
"default": "en-US"
|
|
},
|
|
"HideTopLevelNodeFromPath": {
|
|
"description": "Indicating whether to hide the top level node from the path",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"UseHttps": {
|
|
"description": "Indicating whether HTTPS should be used",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"VersionCheckPeriod": {
|
|
"description": "Check for new version. Period in days",
|
|
"type": "integer",
|
|
"default": 7
|
|
},
|
|
"UmbracoPath": {
|
|
"description": "Umbraco back-office path",
|
|
"type": "string",
|
|
"default": "~/umbraco"
|
|
},
|
|
"IconsPath": {
|
|
"description": "Path to Umbraco Icons for backoffice",
|
|
"type": "string",
|
|
"default": "~/umbraco/assets/icons"
|
|
},
|
|
"UmbracoCssPath": {
|
|
"description": "Path to store CSS files used for website built with Umbraco",
|
|
"type": "string",
|
|
"default": "~/css"
|
|
},
|
|
"UmbracoMediaPath": {
|
|
"description": "Path to store media files",
|
|
"type": "string",
|
|
"default": "~/media"
|
|
},
|
|
"InstallMissingDatabase": {
|
|
"description": "Indicating whether to install the database when it is missing",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"DisableElectionForSingleServer": {
|
|
"description": "Indicating whether to disable the election for a single server",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"NoNodesViewPath": {
|
|
"description": "Path to view when the website built with Umbraco has no content nodes",
|
|
"type": "string",
|
|
"default": "~/umbraco/UmbracoWebsite/NoNodes.cshtml"
|
|
},
|
|
"DatabaseServerRegistrar": {
|
|
"properties": {
|
|
"WaitTimeBetweenCalls": {
|
|
"description": "The amount of time to wait between calls to the database on the background thread https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-timespan-format-strings",
|
|
"type": "string",
|
|
"default": "00:01:00"
|
|
},
|
|
"StaleServerTimeout": {
|
|
"description": "The time span to wait before considering a server stale, after it has last been accessed https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-timespan-format-strings",
|
|
"type": "string",
|
|
"default": "00:02:00"
|
|
}
|
|
}
|
|
},
|
|
"DatabaseServerMessenger": {
|
|
"properties": {
|
|
"MaxProcessingInstructionCount": {
|
|
"description": "The maximum number of instructions that can be processed at startup; otherwise the server cold-boots (rebuilds its caches)",
|
|
"type": "integer",
|
|
"default": 1000
|
|
},
|
|
"TimeToRetainInstructions": {
|
|
"description": "The time to keep instructions in the database. Records older than this number will be pruned https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-timespan-format-strings",
|
|
"type": "string",
|
|
"default": "2.00:00:00"
|
|
},
|
|
"TimeBetweenSyncOperations": {
|
|
"description": "The time to wait between each sync operations https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-timespan-format-strings",
|
|
"type": "string",
|
|
"default": "00:00:05"
|
|
},
|
|
"TimeBetweenPruneOperations": {
|
|
"description": "The time to wait between each prune operations https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-timespan-format-strings",
|
|
"type": "string",
|
|
"default": "00:01:00"
|
|
}
|
|
}
|
|
},
|
|
"Smtp": {
|
|
"properties": {
|
|
"From": {
|
|
"description": "Email address to use for messages",
|
|
"type": "string"
|
|
},
|
|
"Host": {
|
|
"description": "SMTP Server hostname",
|
|
"type": "string"
|
|
},
|
|
"Port": {
|
|
"description": "SMTP Server Port Number",
|
|
"type": "integer"
|
|
},
|
|
"SecureSocketOptions": {
|
|
"description": "Secure socket options for SMTP server",
|
|
"enum": [
|
|
"None",
|
|
"Auto",
|
|
"SslOnConnect",
|
|
"StartTls",
|
|
"StartTlsWhenAvailable"
|
|
],
|
|
"default": "Auto"
|
|
},
|
|
"PickupDirectoryLocation": {
|
|
"description": "SMTP pick-up directory path",
|
|
"type": "string"
|
|
},
|
|
"DeliveryMethod": {
|
|
"description": "SMTP delivery method",
|
|
"enum": [
|
|
"Network",
|
|
"SpecifiedPickupDirectory",
|
|
"PickupDirectoryFromIis"
|
|
],
|
|
"default": "Network"
|
|
},
|
|
"Username": {
|
|
"description": "SMTP server username",
|
|
"type": "string"
|
|
},
|
|
"Password": {
|
|
"description": "SMTP server password",
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"umbracoHealthChecks": {
|
|
"properties": {
|
|
"DisabledChecks": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/umbracoDisabledHealthChecks"
|
|
}
|
|
},
|
|
"Notification": {
|
|
"properties": {
|
|
"Enabled": {
|
|
"description": "Indicating whether health check notifications are enabled",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"FirstRunTime": {
|
|
"description": "The first run time of a healthcheck notification in crontab format",
|
|
"type": "string"
|
|
},
|
|
"Period": {
|
|
"description": "The period of the healthcheck notifications are run https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-timespan-format-strings",
|
|
"type": "string",
|
|
"default": "1.00:00:00"
|
|
},
|
|
"NotificationMethods": {
|
|
"description": "A collection of health check notification methods that are set by their alias such as 'email'",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "object",
|
|
"properties": {
|
|
"Enabled": {
|
|
"description": "Indicating whether the health check notification method is enabled",
|
|
"type": "boolean"
|
|
},
|
|
"Verbosity": {
|
|
"description": "The health check notifications reporting verbosity",
|
|
"enum": [
|
|
"Summary",
|
|
"Detailed"
|
|
],
|
|
"default": "Summary"
|
|
},
|
|
"FailureOnly": {
|
|
"description": "Indicating whether the health check notifications should occur on failures only",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"Settings": {
|
|
"description": "An object of Health Check Notification provider specific settings. For the email notification it uses a setting 'RecipientEmail'",
|
|
"type": "object"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"DisabledChecks": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/umbracoDisabledHealthChecks"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"umbracoDisabledHealthChecks": {
|
|
"properties": {
|
|
"Id": {
|
|
"description": "Guid of healthcheck to disable",
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"umbracoHosting": {
|
|
"properties": {
|
|
"ApplicationVirtualPath": {
|
|
"type": "string"
|
|
},
|
|
"Debug": {
|
|
"description": "Indicating whether umbraco is running in [debug mode]",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"LocalTempStorageLocation": {
|
|
"description": "The location of temporary files",
|
|
"default": "Default",
|
|
"enum": [
|
|
"Default",
|
|
"EnvironmentTemp"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"umbracoImaging": {
|
|
"properties": {
|
|
"Cache": {
|
|
"properties": {
|
|
"BrowserMaxAge": {
|
|
"description": "Browser image cache maximum age https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-timespan-format-strings",
|
|
"type": "string",
|
|
"default": "7.00:00:00"
|
|
},
|
|
"CacheMaxAge": {
|
|
"description": "Image cache maximum age https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-timespan-format-strings",
|
|
"type": "string",
|
|
"default": "365.00:00:00"
|
|
},
|
|
"CachedNameLength": {
|
|
"description": "Length of the cached name",
|
|
"type": "integer",
|
|
"default": 8
|
|
},
|
|
"CacheFolder": {
|
|
"description": "Location of media cache folder",
|
|
"type": "string",
|
|
"default": "..\\umbraco\\mediacache"
|
|
}
|
|
}
|
|
},
|
|
"Resize": {
|
|
"properties": {
|
|
"MaxWidth": {
|
|
"description": "Value for the maximim resize width",
|
|
"type": "integer",
|
|
"default": 5000
|
|
},
|
|
"MaxHeight": {
|
|
"description": "Value for the maximim resize height",
|
|
"type": "integer",
|
|
"default": 5000
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"umbracoKeepAlive": {
|
|
"properties": {
|
|
"DisableKeepAliveTask": {
|
|
"description": "Indicating whether the keep alive task is disabled",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"KeepAlivePingUrl": {
|
|
"description": "Keep alive ping URL. {umbracoApplicationUrl} is replaced",
|
|
"type": "string",
|
|
"default": "{umbracoApplicationUrl}/api/keepalive/ping"
|
|
}
|
|
}
|
|
},
|
|
"umbracoRichTextEditor": {
|
|
"properties": {
|
|
"Commands": {
|
|
"description": "Commands to add to the TinyMCE Richtext editor",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/umbracoRichTextEditorCommands"
|
|
}
|
|
},
|
|
"Plugins": {
|
|
"description": "An array of TinyMCE Plugins to load such as 'paste', 'table'",
|
|
"type": [
|
|
"string"
|
|
]
|
|
},
|
|
"CustomConfig": {
|
|
"description": "Custom configuration for TinyMCE and its plugins",
|
|
"type": "object"
|
|
},
|
|
"ValidElements": {
|
|
"description": "A CSV string of valid HTML elements in the richtext editor. Ex: iframe[*],button[class|title]",
|
|
"type": "string"
|
|
},
|
|
"InvalidElements": {
|
|
"description": "A CSV string of invalid HTML elements in the richtext editor. Ex: font",
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"umbracoRichTextEditorCommands": {
|
|
"properties": {
|
|
"Name": {
|
|
"description": "Friendly name of Richtext Editor Command",
|
|
"type": "string"
|
|
},
|
|
"Alias": {
|
|
"description": "Alias of the Richtext Editor Command",
|
|
"type": "string"
|
|
},
|
|
"Mode": {
|
|
"description": "Set how the Richtext Editor Command can be used. Such as when a selction is made",
|
|
"enum": [
|
|
"Insert",
|
|
"Selection",
|
|
"All"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"umbracoRequestHandler": {
|
|
"properties": {
|
|
"AddTrailingSlash": {
|
|
"description": "Indicating whether to add a trailing slash to URLs",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"CharCollection": {
|
|
"description": "Character collection for replacements",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/umbracoCharCollection"
|
|
}
|
|
},
|
|
"ConvertUrlsToAscii": {
|
|
"description": "Indicating whether to convert URLs to ASCII (valid values: true, try or false)",
|
|
"enum": [
|
|
"try",
|
|
"true",
|
|
"false"
|
|
],
|
|
"default": "try"
|
|
}
|
|
}
|
|
},
|
|
"umbracoCharCollection": {
|
|
"required": [
|
|
"Char",
|
|
"Replacement"
|
|
],
|
|
"properties": {
|
|
"Char": {
|
|
"type": "string",
|
|
"default": "ä"
|
|
},
|
|
"Replacement": {
|
|
"type": "string",
|
|
"default": "ae"
|
|
}
|
|
}
|
|
},
|
|
"umbracoRuntimeMinification": {
|
|
"properties": {
|
|
"UseInMemoryCache": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"CacheBuster": {
|
|
"description": "Cache buster type to use",
|
|
"enum": [
|
|
"Version",
|
|
"AppDomain",
|
|
"Timestamp"
|
|
],
|
|
"default": "Version"
|
|
}
|
|
}
|
|
},
|
|
"umbracoSecurity": {
|
|
"properties": {
|
|
"AllowPasswordReset": {
|
|
"description": "Indicating whether to allow user password reset",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"AuthCookieDomain": {
|
|
"description": "Authorization cookie domain",
|
|
"type": "string"
|
|
},
|
|
"AuthCookieName": {
|
|
"description": "The authorization cookie name",
|
|
"type": "string",
|
|
"default": "UMB_UCONTEXT"
|
|
},
|
|
"HideDisabledUsersInBackOffice": {
|
|
"description": "Indicating whether to hide disabled users in the back-office",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"KeepUserLoggedIn": {
|
|
"description": "Indicating whether to keep the user logged in",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"MemberPassword": {
|
|
"$ref": "#/definitions/umbracoMemberPassword"
|
|
},
|
|
"UsernameIsEmail": {
|
|
"description": "Indicating whether the user's email address is to be considered as their username",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"UserPassword": {
|
|
"$ref": "#/definitions/umbracoUserPassword"
|
|
}
|
|
}
|
|
},
|
|
"umbracoMemberPassword": {
|
|
"properties": {
|
|
"RequiredLength": {
|
|
"type": "integer",
|
|
"default": 10
|
|
},
|
|
"RequireNonLetterOrDigit": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"RequireDigit": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"RequireLowercase": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"RequireUppercase": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"MaxFailedAccessAttemptsBeforeLockout": {
|
|
"type": "integer",
|
|
"default": 5
|
|
},
|
|
"HashAlgorithmType": {
|
|
"type": "string",
|
|
"default": "HMACSHA256"
|
|
}
|
|
}
|
|
},
|
|
"umbracoUserPassword": {
|
|
"properties": {
|
|
"RequiredLength": {
|
|
"type": "integer",
|
|
"default": 10
|
|
},
|
|
"RequireNonLetterOrDigit": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"RequireDigit": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"RequireLowercase": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"RequireUppercase": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"MaxFailedAccessAttemptsBeforeLockout": {
|
|
"type": "integer",
|
|
"default": 5
|
|
},
|
|
"HashAlgorithmType": {
|
|
"type": "string",
|
|
"default": "PBKDF2.ASPNETCORE.V3"
|
|
}
|
|
}
|
|
},
|
|
"umbracoWebRouting": {
|
|
"properties": {
|
|
"TryMatchingEndpointsForAllPages": {
|
|
"description": "Indicating whether to check if any routed endpoints match a front-end request before the Umbraco dynamic router tries to map the request to an Umbraco content item",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"TrySkipIisCustomErrors": {
|
|
"description": "Indicating whether IIS custom errors should be skipped",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"InternalRedirectPreservesTemplate": {
|
|
"description": "Indicating whether an internal redirect should preserve the template",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"DisableAlternativeTemplates": {
|
|
"description": "Indicating whether the use of alternative templates are disabled",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"ValidateAlternativeTemplates": {
|
|
"description": "Indicating whether the use of alternative templates should be validated",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"DisableFindContentByIdPath": {
|
|
"description": "Indicating whether find content ID by path is disabled",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"DisableRedirectUrlTracking": {
|
|
"description": "Indicating whether redirect URL tracking is disabled",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"UrlProviderMode": {
|
|
"enum": [
|
|
"Default",
|
|
"Relative",
|
|
"Absolute",
|
|
"Auto"
|
|
],
|
|
"default": "Auto"
|
|
},
|
|
"UmbracoApplicationUrl": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"umbracoUnattended": {
|
|
"properties": {
|
|
"InstallUnattended": {
|
|
"description": "Indicating whether unattended installs are enabled",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"UpgradeUnattended": {
|
|
"description": "Indicating whether unattended upgrades are enabled",
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"UnattendedUserName": {
|
|
"description": "Use for creating a user with a name for Unattended Installs",
|
|
"type": "string"
|
|
},
|
|
"UnattendedUserEmail": {
|
|
"description": "Use for creating a user with an email for Unattended Installs",
|
|
"type": "string"
|
|
},
|
|
"UnattendedUserPassword": {
|
|
"description": "Use for creating a user with a password for Unattended Installs",
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"umbracoModelsBuilder": {
|
|
"properties": {
|
|
"ModelsMode": {
|
|
"description": "ModelsBuilder generation mode",
|
|
"enum": [
|
|
"Nothing",
|
|
"InMemoryAuto",
|
|
"SourceCodeManual",
|
|
"SourceCodeAuto"
|
|
],
|
|
"default": "InMemoryAuto"
|
|
},
|
|
"ModelsNamespace": {
|
|
"type": "string",
|
|
"description": "Namespace to use when generating strongly typed models",
|
|
"default": "Umbraco.Cms.Web.Common.PublishedModels"
|
|
},
|
|
"ModelsDirectory": {
|
|
"type": "string",
|
|
"description": "Location to generate ModelsBuilder models",
|
|
"default": "~/umbraco/models"
|
|
},
|
|
"DebugLevel": {
|
|
"type": "integer",
|
|
"description": "Indicates the debug level. For internal / development use. Set to greater than zero to enable detailed logging.",
|
|
"default": 0
|
|
},
|
|
"AcceptUnsafeModelsDirectory": {
|
|
"type": "boolean",
|
|
"description": "Indicates that the directory indicated in ModelsDirectory is allowed to be outside the website root (e.g. ~/../../some/place). Because that can be a potential security risk, it is not allowed by default.",
|
|
"default": false
|
|
},
|
|
"FlagOutOfDateModels": {
|
|
"type": "boolean",
|
|
"description": "Indicates whether out-of-date models (i.e. after a content type or data type has been modified) should be flagged.",
|
|
"default": true
|
|
}
|
|
}
|
|
},
|
|
"umbracoUmbracoDefinition": {
|
|
"type": "object",
|
|
"description": "Configuration of Umbraco CMS and packages",
|
|
"properties": {
|
|
"CMS": {
|
|
"$ref": "#/definitions/umbracoCmsDefinition"
|
|
},
|
|
"Forms": {
|
|
"$ref": "#/definitions/umbracoFormsDefinition"
|
|
},
|
|
"Deploy": {
|
|
"$ref": "#/definitions/umbracoDeployDefinition"
|
|
}
|
|
}
|
|
},
|
|
"umbracoCmsDefinition": {
|
|
"type": "object",
|
|
"description": "Configurations for the Umbraco CMS",
|
|
"properties": {
|
|
"ActiveDirectory": {
|
|
"$ref": "#/definitions/umbracoActiveDirectorySettings"
|
|
},
|
|
"Content": {
|
|
"$ref": "#/definitions/umbracoContentSettings"
|
|
},
|
|
"CoreDebug": {
|
|
"$ref": "#/definitions/umbracoCoreDebugSettings"
|
|
},
|
|
"ExceptionFilter": {
|
|
"$ref": "#/definitions/umbracoExceptionFilterSettings"
|
|
},
|
|
"ModelsBuilder": {
|
|
"$ref": "#/definitions/umbracoModelsBuilderSettings"
|
|
},
|
|
"Global": {
|
|
"$ref": "#/definitions/umbracoGlobalSettings"
|
|
},
|
|
"HealthChecks": {
|
|
"$ref": "#/definitions/umbracoHealthChecksSettings"
|
|
},
|
|
"Hosting": {
|
|
"$ref": "#/definitions/umbracoHostingSettings"
|
|
},
|
|
"Imaging": {
|
|
"$ref": "#/definitions/umbracoImagingSettings"
|
|
},
|
|
"Examine": {
|
|
"$ref": "#/definitions/umbracoIndexCreatorSettings"
|
|
},
|
|
"KeepAlive": {
|
|
"$ref": "#/definitions/umbracoKeepAliveSettings"
|
|
},
|
|
"Logging": {
|
|
"$ref": "#/definitions/umbracoLoggingSettings"
|
|
},
|
|
"MemberPassword": {
|
|
"$ref": "#/definitions/umbracoMemberPasswordConfigurationSettings"
|
|
},
|
|
"NuCache": {
|
|
"$ref": "#/definitions/umbracoNuCacheSettings"
|
|
},
|
|
"RequestHandler": {
|
|
"$ref": "#/definitions/umbracoRequestHandlerSettings"
|
|
},
|
|
"Runtime": {
|
|
"$ref": "#/definitions/umbracoRuntimeSettings"
|
|
},
|
|
"Security": {
|
|
"$ref": "#/definitions/umbracoSecuritySettings"
|
|
},
|
|
"Tours": {
|
|
"$ref": "#/definitions/umbracoTourSettings"
|
|
},
|
|
"TypeFinder": {
|
|
"$ref": "#/definitions/umbracoTypeFinderSettings"
|
|
},
|
|
"UserPassword": {
|
|
"$ref": "#/definitions/umbracoUserPasswordConfigurationSettings"
|
|
},
|
|
"WebRouting": {
|
|
"$ref": "#/definitions/umbracoWebRoutingSettings"
|
|
},
|
|
"Plugins": {
|
|
"$ref": "#/definitions/umbracoUmbracoPluginSettings"
|
|
},
|
|
"Unattended": {
|
|
"$ref": "#/definitions/umbracoUnattendedSettings"
|
|
},
|
|
"RichTextEditor": {
|
|
"$ref": "#/definitions/umbracoRichTextEditorSettings"
|
|
},
|
|
"RuntimeMinification": {
|
|
"$ref": "#/definitions/umbracoRuntimeMinificationSettings"
|
|
}
|
|
}
|
|
},
|
|
"umbracoActiveDirectorySettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for active directory settings.",
|
|
"properties": {
|
|
"Domain": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the Active Directory domain."
|
|
}
|
|
}
|
|
},
|
|
"umbracoContentSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for content settings.",
|
|
"properties": {
|
|
"Notifications": {
|
|
"description": "Gets or sets a value for the content notification settings.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoContentNotificationSettings"
|
|
}
|
|
]
|
|
},
|
|
"Imaging": {
|
|
"description": "Gets or sets a value for the content imaging settings.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoContentImagingSettings"
|
|
}
|
|
]
|
|
},
|
|
"ResolveUrlsFromTextString": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether URLs should be resolved from text strings."
|
|
},
|
|
"Error404Collection": {
|
|
"type": "array",
|
|
"description": "Gets or sets a value for the collection of error pages.",
|
|
"items": {
|
|
"$ref": "#/definitions/umbracoContentErrorPage"
|
|
}
|
|
},
|
|
"PreviewBadge": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the preview badge mark-up."
|
|
},
|
|
"MacroErrors": {
|
|
"description": "Gets or sets a value for the macro error behaviour.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoMacroErrorBehaviour"
|
|
}
|
|
]
|
|
},
|
|
"DisallowedUploadFiles": {
|
|
"type": "array",
|
|
"description": "Gets or sets a value for the collection of file extensions that are disallowed for upload.",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"AllowedUploadFiles": {
|
|
"type": "array",
|
|
"description": "Gets or sets a value for the collection of file extensions that are allowed for upload.",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"ShowDeprecatedPropertyEditors": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether deprecated property editors should be shown."
|
|
},
|
|
"LoginBackgroundImage": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the path to the login screen background image."
|
|
},
|
|
"LoginLogoImage": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the path to the login screen logo image."
|
|
}
|
|
}
|
|
},
|
|
"umbracoContentNotificationSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for content notification settings.",
|
|
"properties": {
|
|
"Email": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the email address for notifications."
|
|
},
|
|
"DisableHtmlEmail": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether HTML email notifications should be disabled."
|
|
}
|
|
}
|
|
},
|
|
"umbracoContentImagingSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for content imaging settings.",
|
|
"properties": {
|
|
"ImageFileTypes": {
|
|
"type": "array",
|
|
"description": "Gets or sets a value for the collection of accepted image file extensions.",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"AutoFillImageProperties": {
|
|
"type": "array",
|
|
"description": "Gets or sets a value for the imaging autofill following media file upload fields.",
|
|
"items": {
|
|
"$ref": "#/definitions/umbracoImagingAutoFillUploadField"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"umbracoImagingAutoFillUploadField": {
|
|
"allOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoValidatableEntryBase"
|
|
},
|
|
{
|
|
"type": "object",
|
|
"description": "Typed configuration options for image autofill upload settings.",
|
|
"required": [
|
|
"Alias",
|
|
"WidthFieldAlias",
|
|
"HeightFieldAlias",
|
|
"LengthFieldAlias",
|
|
"ExtensionFieldAlias"
|
|
],
|
|
"properties": {
|
|
"Alias": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the alias of the image upload property.",
|
|
"minLength": 1
|
|
},
|
|
"WidthFieldAlias": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the width field alias of the image upload property.",
|
|
"minLength": 1
|
|
},
|
|
"HeightFieldAlias": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the height field alias of the image upload property.",
|
|
"minLength": 1
|
|
},
|
|
"LengthFieldAlias": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the length field alias of the image upload property.",
|
|
"minLength": 1
|
|
},
|
|
"ExtensionFieldAlias": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the extension field alias of the image upload property.",
|
|
"minLength": 1
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"umbracoValidatableEntryBase": {
|
|
"type": "object",
|
|
"description": "Provides a base class for configuration models that can be validated based on data annotations.",
|
|
"x-abstract": true
|
|
},
|
|
"umbracoMacroErrorBehaviour": {
|
|
"type": "string",
|
|
"description": "",
|
|
"x-enumNames": [
|
|
"Inline",
|
|
"Silent",
|
|
"Throw",
|
|
"Content"
|
|
],
|
|
"enum": [
|
|
"Inline",
|
|
"Silent",
|
|
"Throw",
|
|
"Content"
|
|
]
|
|
},
|
|
"umbracoCoreDebugSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for core debug settings.",
|
|
"properties": {
|
|
"LogIncompletedScopes": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether incompleted scopes should be logged."
|
|
},
|
|
"DumpOnTimeoutThreadAbort": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether memory dumps on thread abort should be taken."
|
|
}
|
|
}
|
|
},
|
|
"umbracoExceptionFilterSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for exception filter settings.",
|
|
"properties": {
|
|
"Disabled": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether the exception filter is disabled."
|
|
}
|
|
}
|
|
},
|
|
"umbracoModelsBuilderSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for models builder settings.",
|
|
"properties": {
|
|
"ModelsMode": {
|
|
"description": "Gets or sets a value for the models mode.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoModelsMode"
|
|
}
|
|
]
|
|
},
|
|
"ModelsNamespace": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for models namespace."
|
|
},
|
|
"FlagOutOfDateModels": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether we should flag out-of-date models."
|
|
},
|
|
"ModelsDirectory": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the models directory."
|
|
},
|
|
"AcceptUnsafeModelsDirectory": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether to accept an unsafe value for ModelsDirectory."
|
|
},
|
|
"DebugLevel": {
|
|
"type": "integer",
|
|
"description": "Gets or sets a value indicating the debug log level.",
|
|
"format": "int32"
|
|
}
|
|
}
|
|
},
|
|
"umbracoModelsMode": {
|
|
"type": "string",
|
|
"description": "Defines the models generation modes.",
|
|
"x-enumNames": [
|
|
"Nothing",
|
|
"InMemoryAuto",
|
|
"SourceCodeManual",
|
|
"SourceCodeAuto"
|
|
],
|
|
"enum": [
|
|
"Nothing",
|
|
"InMemoryAuto",
|
|
"SourceCodeManual",
|
|
"SourceCodeAuto"
|
|
]
|
|
},
|
|
"umbracoGlobalSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for global settings.",
|
|
"properties": {
|
|
"ReservedUrls": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the reserved URLs."
|
|
},
|
|
"ReservedPaths": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the reserved paths."
|
|
},
|
|
"TimeOut": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the timeout",
|
|
"format": "time-span"
|
|
},
|
|
"DefaultUILanguage": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the default UI language."
|
|
},
|
|
"HideTopLevelNodeFromPath": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether to hide the top level node from the path."
|
|
},
|
|
"UseHttps": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether HTTPS should be used."
|
|
},
|
|
"VersionCheckPeriod": {
|
|
"type": "integer",
|
|
"description": "Gets or sets a value for the version check period in days.",
|
|
"format": "int32"
|
|
},
|
|
"UmbracoPath": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the Umbraco back-office path."
|
|
},
|
|
"IconsPath": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the Umbraco icons path."
|
|
},
|
|
"UmbracoCssPath": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the Umbraco CSS path."
|
|
},
|
|
"UmbracoScriptsPath": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the Umbraco scripts path."
|
|
},
|
|
"UmbracoMediaPath": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the Umbraco media path."
|
|
},
|
|
"InstallMissingDatabase": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether to install the database when it is missing."
|
|
},
|
|
"DisableElectionForSingleServer": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether to disable the election for a single server."
|
|
},
|
|
"DatabaseFactoryServerVersion": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the database factory server version."
|
|
},
|
|
"MainDomLock": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the main dom lock."
|
|
},
|
|
"Id": {
|
|
"type": "string"
|
|
},
|
|
"NoNodesViewPath": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the path to the no content view."
|
|
},
|
|
"DatabaseServerRegistrar": {
|
|
"description": "Gets or sets a value for the database server registrar settings.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoDatabaseServerRegistrarSettings"
|
|
}
|
|
]
|
|
},
|
|
"DatabaseServerMessenger": {
|
|
"description": "Gets or sets a value for the database server messenger settings.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoDatabaseServerMessengerSettings"
|
|
}
|
|
]
|
|
},
|
|
"Smtp": {
|
|
"description": "Gets or sets a value for the SMTP settings.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoSmtpSettings"
|
|
}
|
|
]
|
|
},
|
|
"IsSmtpServerConfigured": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether SMTP is configured."
|
|
},
|
|
"SqlWriteLockTimeOut": {
|
|
"type": "string",
|
|
"description": "An int value representing the time in milliseconds to lock the database for a write operation",
|
|
"format": "time-span"
|
|
}
|
|
}
|
|
},
|
|
"umbracoDatabaseServerRegistrarSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for database server registrar settings.",
|
|
"properties": {
|
|
"WaitTimeBetweenCalls": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the amount of time to wait between calls to the database on the background thread.",
|
|
"format": "time-span"
|
|
},
|
|
"StaleServerTimeout": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the time span to wait before considering a server stale, after it has last been accessed.",
|
|
"format": "time-span"
|
|
}
|
|
}
|
|
},
|
|
"umbracoDatabaseServerMessengerSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for database server messaging settings.",
|
|
"properties": {
|
|
"MaxProcessingInstructionCount": {
|
|
"type": "integer",
|
|
"description": "Gets or sets a value for the maximum number of instructions that can be processed at startup; otherwise the server cold-boots (rebuilds its caches).",
|
|
"format": "int32"
|
|
},
|
|
"TimeToRetainInstructions": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the time to keep instructions in the database; records older than this number will be pruned.",
|
|
"format": "time-span"
|
|
},
|
|
"TimeBetweenSyncOperations": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the time to wait between each sync operations.",
|
|
"format": "time-span"
|
|
},
|
|
"TimeBetweenPruneOperations": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the time to wait between each prune operations.",
|
|
"format": "time-span"
|
|
}
|
|
}
|
|
},
|
|
"umbracoSmtpSettings": {
|
|
"allOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoValidatableEntryBase"
|
|
},
|
|
{
|
|
"type": "object",
|
|
"description": "Typed configuration options for SMTP settings.",
|
|
"required": [
|
|
"From"
|
|
],
|
|
"properties": {
|
|
"From": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the SMTP from address to use for messages.",
|
|
"format": "email",
|
|
"minLength": 1
|
|
},
|
|
"Host": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the SMTP host."
|
|
},
|
|
"Port": {
|
|
"type": "integer",
|
|
"description": "Gets or sets a value for the SMTP port.",
|
|
"format": "int32"
|
|
},
|
|
"SecureSocketOptions": {
|
|
"description": "Gets or sets a value for the secure socket options.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoSecureSocketOptions"
|
|
}
|
|
]
|
|
},
|
|
"PickupDirectoryLocation": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the SMTP pick-up directory."
|
|
},
|
|
"DeliveryMethod": {
|
|
"description": "Gets or sets a value for the SMTP delivery method.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoSmtpDeliveryMethod"
|
|
}
|
|
]
|
|
},
|
|
"Username": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the SMTP user name."
|
|
},
|
|
"Password": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the SMTP password."
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"umbracoSecureSocketOptions": {
|
|
"type": "string",
|
|
"description": "Matches MailKit.Security.SecureSocketOptions and defined locally to avoid having to take\na dependency on this external library into Umbraco.Core.",
|
|
"x-enumNames": [
|
|
"None",
|
|
"Auto",
|
|
"SslOnConnect",
|
|
"StartTls",
|
|
"StartTlsWhenAvailable"
|
|
],
|
|
"enum": [
|
|
"None",
|
|
"Auto",
|
|
"SslOnConnect",
|
|
"StartTls",
|
|
"StartTlsWhenAvailable"
|
|
]
|
|
},
|
|
"umbracoSmtpDeliveryMethod": {
|
|
"type": "string",
|
|
"description": "",
|
|
"x-enumNames": [
|
|
"Network",
|
|
"SpecifiedPickupDirectory",
|
|
"PickupDirectoryFromIis"
|
|
],
|
|
"enum": [
|
|
"Network",
|
|
"SpecifiedPickupDirectory",
|
|
"PickupDirectoryFromIis"
|
|
]
|
|
},
|
|
"umbracoHealthChecksSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for healthchecks settings.",
|
|
"properties": {
|
|
"DisabledChecks": {
|
|
"type": "array",
|
|
"description": "Gets or sets a value for the collection of healthchecks that are disabled.",
|
|
"items": {
|
|
"$ref": "#/definitions/umbracoDisabledHealthCheckSettings"
|
|
}
|
|
},
|
|
"Notification": {
|
|
"description": "Gets or sets a value for the healthcheck notification settings.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoHealthChecksNotificationSettings"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"umbracoDisabledHealthCheckSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for disabled healthcheck settings.",
|
|
"properties": {
|
|
"Id": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the healthcheck Id to disable.",
|
|
"format": "guid"
|
|
},
|
|
"DisabledOn": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the date the healthcheck was disabled.",
|
|
"format": "date-time"
|
|
},
|
|
"DisabledBy": {
|
|
"type": "integer",
|
|
"description": "Gets or sets a value for Id of the user that disabled the healthcheck.",
|
|
"format": "int32"
|
|
}
|
|
}
|
|
},
|
|
"umbracoHealthChecksNotificationSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for healthcheck notification settings.",
|
|
"properties": {
|
|
"Enabled": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether health check notifications are enabled."
|
|
},
|
|
"FirstRunTime": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the first run time of a healthcheck notification in crontab format."
|
|
},
|
|
"Period": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the period of the healthcheck notification.",
|
|
"format": "time-span"
|
|
},
|
|
"NotificationMethods": {
|
|
"type": "object",
|
|
"description": "Gets or sets a value for the collection of health check notification methods.",
|
|
"additionalProperties": {
|
|
"$ref": "#/definitions/umbracoHealthChecksNotificationMethodSettings"
|
|
}
|
|
},
|
|
"DisabledChecks": {
|
|
"type": "array",
|
|
"description": "Gets or sets a value for the collection of health checks that are disabled for notifications.",
|
|
"items": {
|
|
"$ref": "#/definitions/umbracoDisabledHealthCheckSettings"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"umbracoHealthChecksNotificationMethodSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for healthcheck notification method settings.",
|
|
"properties": {
|
|
"Enabled": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether the health check notification method is enabled."
|
|
},
|
|
"Verbosity": {
|
|
"description": "Gets or sets a value for the health check notifications reporting verbosity.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoHealthCheckNotificationVerbosity"
|
|
}
|
|
]
|
|
},
|
|
"FailureOnly": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether the health check notifications should occur on failures only."
|
|
},
|
|
"Settings": {
|
|
"type": "object",
|
|
"description": "Gets or sets a value providing provider specific settings for the health check notification method.",
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"umbracoHealthCheckNotificationVerbosity": {
|
|
"type": "string",
|
|
"description": "",
|
|
"x-enumNames": [
|
|
"Summary",
|
|
"Detailed"
|
|
],
|
|
"enum": [
|
|
"Summary",
|
|
"Detailed"
|
|
]
|
|
},
|
|
"umbracoHostingSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for hosting settings.",
|
|
"properties": {
|
|
"ApplicationVirtualPath": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the application virtual path."
|
|
},
|
|
"LocalTempStorageLocation": {
|
|
"description": "Gets or sets a value for the location of temporary files.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoLocalTempStorage"
|
|
}
|
|
]
|
|
},
|
|
"Debug": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether umbraco is running in [debug mode]."
|
|
}
|
|
}
|
|
},
|
|
"umbracoLocalTempStorage": {
|
|
"type": "string",
|
|
"description": "",
|
|
"x-enumNames": [
|
|
"Unknown",
|
|
"Default",
|
|
"EnvironmentTemp"
|
|
],
|
|
"enum": [
|
|
"Unknown",
|
|
"Default",
|
|
"EnvironmentTemp"
|
|
]
|
|
},
|
|
"umbracoImagingSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for imaging settings.",
|
|
"properties": {
|
|
"Cache": {
|
|
"description": "Gets or sets a value for imaging cache settings.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoImagingCacheSettings"
|
|
}
|
|
]
|
|
},
|
|
"Resize": {
|
|
"description": "Gets or sets a value for imaging resize settings.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoImagingResizeSettings"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"umbracoImagingCacheSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for image cache settings.",
|
|
"properties": {
|
|
"BrowserMaxAge": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the browser image cache maximum age.",
|
|
"format": "time-span"
|
|
},
|
|
"CacheMaxAge": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the image cache maximum age.",
|
|
"format": "time-span"
|
|
},
|
|
"CachedNameLength": {
|
|
"type": "integer",
|
|
"description": "Gets or sets a value for length of the cached name."
|
|
},
|
|
"CacheFolder": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the cache folder."
|
|
}
|
|
}
|
|
},
|
|
"umbracoImagingResizeSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for image resize settings.",
|
|
"properties": {
|
|
"MaxWidth": {
|
|
"type": "integer",
|
|
"description": "Gets or sets a value for the maximim resize width.",
|
|
"format": "int32"
|
|
},
|
|
"MaxHeight": {
|
|
"type": "integer",
|
|
"description": "Gets or sets a value for the maximim resize height.",
|
|
"format": "int32"
|
|
}
|
|
}
|
|
},
|
|
"umbracoIndexCreatorSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for index creator settings.",
|
|
"properties": {
|
|
"LuceneDirectoryFactory": {
|
|
"description": "Gets or sets a value for lucene directory factory type.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoLuceneDirectoryFactory"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"umbracoLuceneDirectoryFactory": {
|
|
"type": "string",
|
|
"description": "",
|
|
"x-enumNames": [
|
|
"Default",
|
|
"SyncedTempFileSystemDirectoryFactory",
|
|
"TempFileSystemDirectoryFactory"
|
|
],
|
|
"enum": [
|
|
"Default",
|
|
"SyncedTempFileSystemDirectoryFactory",
|
|
"TempFileSystemDirectoryFactory"
|
|
]
|
|
},
|
|
"umbracoKeepAliveSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for keep alive settings.",
|
|
"properties": {
|
|
"DisableKeepAliveTask": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether the keep alive task is disabled."
|
|
},
|
|
"KeepAlivePingUrl": {
|
|
"type": "string",
|
|
"description": "Gets a value for the keep alive ping URL."
|
|
}
|
|
}
|
|
},
|
|
"umbracoLoggingSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for logging settings.",
|
|
"properties": {
|
|
"MaxLogAge": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the maximum age of a log file.",
|
|
"format": "time-span"
|
|
}
|
|
}
|
|
},
|
|
"umbracoMemberPasswordConfigurationSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for member password settings.",
|
|
"properties": {
|
|
"RequiredLength": {
|
|
"type": "integer",
|
|
"description": "Gets a value for the minimum required length for the password.",
|
|
"format": "int32"
|
|
},
|
|
"RequireNonLetterOrDigit": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether at least one non-letter or digit is required for the password."
|
|
},
|
|
"RequireDigit": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether at least one digit is required for the password."
|
|
},
|
|
"RequireLowercase": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether at least one lower-case character is required for the password."
|
|
},
|
|
"RequireUppercase": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether at least one upper-case character is required for the password."
|
|
},
|
|
"HashAlgorithmType": {
|
|
"type": "string",
|
|
"description": "Gets a value for the password hash algorithm type."
|
|
},
|
|
"MaxFailedAccessAttemptsBeforeLockout": {
|
|
"type": "integer",
|
|
"description": "Gets a value for the maximum failed access attempts before lockout.",
|
|
"format": "int32"
|
|
}
|
|
}
|
|
},
|
|
"umbracoNuCacheSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for NuCache settings.",
|
|
"properties": {
|
|
"BTreeBlockSize": {
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
],
|
|
"description": "Gets or sets a value defining the BTree block size.",
|
|
"format": "int32"
|
|
}
|
|
}
|
|
},
|
|
"umbracoRequestHandlerSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for request handler settings.",
|
|
"properties": {
|
|
"AddTrailingSlash": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether to add a trailing slash to URLs."
|
|
},
|
|
"ConvertUrlsToAscii": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value indicating whether to convert URLs to ASCII (valid values: \"true\", \"try\" or \"false\")."
|
|
},
|
|
"ShouldConvertUrlsToAscii": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether URLs should be converted to ASCII."
|
|
},
|
|
"ShouldTryConvertUrlsToAscii": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether URLs should be tried to be converted to ASCII."
|
|
},
|
|
"CharCollection": {
|
|
"type": "array",
|
|
"description": "Gets or sets a value for the default character collection for replacements.",
|
|
"items": {
|
|
"$ref": "#/definitions/umbracoIChar"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"umbracoIChar": {
|
|
"type": "object",
|
|
"x-abstract": true,
|
|
"properties": {
|
|
"Char": {
|
|
"type": "string"
|
|
},
|
|
"Replacement": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"umbracoRuntimeSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for runtime settings.",
|
|
"properties": {
|
|
"MaxQueryStringLength": {
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
],
|
|
"description": "Gets or sets a value for the maximum query string length.",
|
|
"format": "int32"
|
|
},
|
|
"MaxRequestLength": {
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
],
|
|
"description": "Gets or sets a value for the maximum request length.",
|
|
"format": "int32"
|
|
}
|
|
}
|
|
},
|
|
"umbracoSecuritySettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for security settings.",
|
|
"properties": {
|
|
"KeepUserLoggedIn": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether to keep the user logged in."
|
|
},
|
|
"HideDisabledUsersInBackOffice": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether to hide disabled users in the back-office."
|
|
},
|
|
"AllowPasswordReset": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether to allow user password reset."
|
|
},
|
|
"AuthCookieName": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the authorization cookie name."
|
|
},
|
|
"AuthCookieDomain": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the authorization cookie domain."
|
|
},
|
|
"UsernameIsEmail": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether the user's email address is to be considered as their username."
|
|
},
|
|
"UserPassword": {
|
|
"description": "Gets or sets a value for the user password settings.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoUserPasswordConfigurationSettings"
|
|
}
|
|
]
|
|
},
|
|
"MemberPassword": {
|
|
"description": "Gets or sets a value for the member password settings.",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoMemberPasswordConfigurationSettings"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"umbracoUserPasswordConfigurationSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for user password settings.",
|
|
"properties": {
|
|
"RequiredLength": {
|
|
"type": "integer",
|
|
"description": "Gets a value for the minimum required length for the password.",
|
|
"format": "int32"
|
|
},
|
|
"RequireNonLetterOrDigit": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether at least one non-letter or digit is required for the password."
|
|
},
|
|
"RequireDigit": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether at least one digit is required for the password."
|
|
},
|
|
"RequireLowercase": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether at least one lower-case character is required for the password."
|
|
},
|
|
"RequireUppercase": {
|
|
"type": "boolean",
|
|
"description": "Gets a value indicating whether at least one upper-case character is required for the password."
|
|
},
|
|
"HashAlgorithmType": {
|
|
"type": "string",
|
|
"description": "Gets a value for the password hash algorithm type."
|
|
},
|
|
"MaxFailedAccessAttemptsBeforeLockout": {
|
|
"type": "integer",
|
|
"description": "Gets a value for the maximum failed access attempts before lockout.",
|
|
"format": "int32"
|
|
}
|
|
}
|
|
},
|
|
"umbracoTourSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for tour settings.",
|
|
"properties": {
|
|
"EnableTours": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether back-office tours are enabled."
|
|
}
|
|
}
|
|
},
|
|
"umbracoTypeFinderSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for type finder settings.",
|
|
"properties": {
|
|
"AssembliesAcceptingLoadExceptions": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the assemblies that accept load exceptions during type finder operations."
|
|
}
|
|
}
|
|
},
|
|
"umbracoWebRoutingSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for web routing settings.",
|
|
"properties": {
|
|
"TryMatchingEndpointsForAllPages": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether to check if any routed endpoints match a front-end request before\nthe Umbraco dynamic router tries to map the request to an Umbraco content item."
|
|
},
|
|
"TrySkipIisCustomErrors": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether IIS custom errors should be skipped."
|
|
},
|
|
"InternalRedirectPreservesTemplate": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether an internal redirect should preserve the template."
|
|
},
|
|
"DisableAlternativeTemplates": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether the use of alternative templates are disabled."
|
|
},
|
|
"ValidateAlternativeTemplates": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether the use of alternative templates should be validated."
|
|
},
|
|
"DisableFindContentByIdPath": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether find content ID by path is disabled."
|
|
},
|
|
"DisableRedirectUrlTracking": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether redirect URL tracking is disabled."
|
|
},
|
|
"UrlProviderMode": {
|
|
"description": "Gets or sets a value for the URL provider mode (UrlMode).",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoUrlMode"
|
|
}
|
|
]
|
|
},
|
|
"UmbracoApplicationUrl": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value for the Umbraco application URL."
|
|
}
|
|
}
|
|
},
|
|
"umbracoUrlMode": {
|
|
"type": "string",
|
|
"description": "Specifies the type of URLs that the URL provider should produce, Auto is the default.",
|
|
"x-enumNames": [
|
|
"Default",
|
|
"Relative",
|
|
"Absolute",
|
|
"Auto"
|
|
],
|
|
"enum": [
|
|
"Default",
|
|
"Relative",
|
|
"Absolute",
|
|
"Auto"
|
|
]
|
|
},
|
|
"umbracoUmbracoPluginSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for the plugins.",
|
|
"properties": {
|
|
"BrowsableFileExtensions": {
|
|
"type": "array",
|
|
"description": "Gets or sets the allowed file extensions (including the period \".\") that should be accessible from the browser.",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"umbracoUnattendedSettings": {
|
|
"type": "object",
|
|
"description": "Typed configuration options for unattended settings.",
|
|
"properties": {
|
|
"InstallUnattended": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether unattended installs are enabled."
|
|
},
|
|
"UpgradeUnattended": {
|
|
"type": "boolean",
|
|
"description": "Gets or sets a value indicating whether unattended upgrades are enabled."
|
|
},
|
|
"UnattendedUserName": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value to use for creating a user with a name for Unattended Installs"
|
|
},
|
|
"UnattendedUserEmail": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value to use for creating a user with an email for Unattended Installs",
|
|
"format": "email"
|
|
},
|
|
"UnattendedUserPassword": {
|
|
"type": "string",
|
|
"description": "Gets or sets a value to use for creating a user with a password for Unattended Installs"
|
|
}
|
|
}
|
|
},
|
|
"umbracoRichTextEditorSettings": {
|
|
"type": "object",
|
|
"properties": {
|
|
"Commands": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/umbracoRichTextEditorCommand"
|
|
}
|
|
},
|
|
"Plugins": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"CustomConfig": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"ValidElements": {
|
|
"type": "string"
|
|
},
|
|
"InvalidElements": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"umbracoRichTextEditorCommand": {
|
|
"type": "object",
|
|
"properties": {
|
|
"Alias": {
|
|
"type": "string"
|
|
},
|
|
"Name": {
|
|
"type": "string"
|
|
},
|
|
"Mode": {
|
|
"$ref": "#/definitions/umbracoRichTextEditorCommandMode"
|
|
}
|
|
}
|
|
},
|
|
"umbracoRichTextEditorCommandMode": {
|
|
"type": "string",
|
|
"description": "",
|
|
"x-enumNames": [
|
|
"Insert",
|
|
"Selection",
|
|
"All"
|
|
],
|
|
"enum": [
|
|
"Insert",
|
|
"Selection",
|
|
"All"
|
|
]
|
|
},
|
|
"umbracoRuntimeMinificationSettings": {
|
|
"type": "object",
|
|
"properties": {
|
|
"UseInMemoryCache": {
|
|
"type": "boolean"
|
|
},
|
|
"CacheBuster": {
|
|
"description": "The cache buster type to use",
|
|
"oneOf": [
|
|
{
|
|
"$ref": "#/definitions/umbracoRuntimeMinificationCacheBuster"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"umbracoRuntimeMinificationCacheBuster": {
|
|
"type": "string",
|
|
"description": "",
|
|
"x-enumNames": [
|
|
"Version",
|
|
"AppDomain",
|
|
"Timestamp"
|
|
],
|
|
"enum": [
|
|
"Version",
|
|
"AppDomain",
|
|
"Timestamp"
|
|
]
|
|
},
|
|
"umbracoFormsDefinition": {
|
|
"type": "object",
|
|
"description": "Configurations for the Umbraco Forms package to Umbraco CMS"
|
|
},
|
|
"umbracoDeployDefinition": {
|
|
"type": "object",
|
|
"description": "Configurations for the Umbraco Deploy package to Umbraco CMS"
|
|
}
|
|
},
|
|
"properties": {
|
|
"Kestrel": {
|
|
"$ref": "#/definitions/kestrel"
|
|
},
|
|
"Logging": {
|
|
"$ref": "#/definitions/logging"
|
|
},
|
|
"AllowedHosts": {
|
|
"$ref": "#/definitions/allowedHosts"
|
|
},
|
|
"ConnectionStrings": {
|
|
"$ref": "#/definitions/connectionStrings"
|
|
},
|
|
"Umbraco": {
|
|
"$ref": "#/definitions/umbracoUmbracoDefinition"
|
|
}
|
|
},
|
|
"patternProperties": {
|
|
"^WebOptimizer$": {
|
|
"$ref": "#/definitions/webOptimizer"
|
|
},
|
|
"^webOptimizer$": {
|
|
"$ref": "#/definitions/webOptimizer"
|
|
},
|
|
"^weboptimizer$": {
|
|
"$ref": "#/definitions/webOptimizer"
|
|
},
|
|
"^(cdn|Cdn)$": {
|
|
"$ref": "#/definitions/cdn"
|
|
},
|
|
"^(pwa|PWA|Pwa)$": {
|
|
"$ref": "#/definitions/pwa"
|
|
},
|
|
"^(ElmahIo|Elmahio|elmahIo|elmahio)$": {
|
|
"$ref": "#/definitions/ElmahIo"
|
|
},
|
|
"^(nlog|Nlog|NLog)$": {
|
|
"$ref": "#/definitions/NLog"
|
|
},
|
|
"^(Umbraco|umbraco)$": {
|
|
"$ref": "#/definitions/umbraco"
|
|
}
|
|
}
|
|
}
|