You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Umbraco.UIBuilder.Demo.Web/appsettings-schema.Umbraco.Cms.json
+74-25Lines changed: 74 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -107,6 +107,9 @@
107
107
},
108
108
"Cache": {
109
109
"$ref": "#/definitions/CacheSettings"
110
+
},
111
+
"DistributedJobSettings": {
112
+
"$ref": "#/definitions/DistributedJobSettings"
110
113
}
111
114
}
112
115
},
@@ -579,13 +582,9 @@
579
582
"description": "Typed configuration options for models builder settings.\n",
580
583
"properties": {
581
584
"ModelsMode": {
585
+
"type": "string",
582
586
"description": "Gets or sets a value for the models mode.\n",
583
-
"default": "InMemoryAuto",
584
-
"oneOf": [
585
-
{
586
-
"$ref": "#/definitions/ModelsMode"
587
-
}
588
-
]
587
+
"default": "InMemoryAuto"
589
588
},
590
589
"ModelsNamespace": {
591
590
"type": "string",
@@ -616,25 +615,14 @@
616
615
"type": "boolean",
617
616
"description": "Gets or sets a value indicating whether the version number should be included in generated models.\n",
618
617
"default": true
618
+
},
619
+
"GenerateVirtualProperties": {
620
+
"type": "boolean",
621
+
"description": "Gets or sets a value indicating whether to mark all properties in the generated models as virtual.\n",
622
+
"default": true
619
623
}
620
624
}
621
625
},
622
-
"ModelsMode": {
623
-
"type": "string",
624
-
"description": "Defines the models generation modes.\n",
625
-
"x-enumNames": [
626
-
"Nothing",
627
-
"InMemoryAuto",
628
-
"SourceCodeManual",
629
-
"SourceCodeAuto"
630
-
],
631
-
"enum": [
632
-
"Nothing",
633
-
"InMemoryAuto",
634
-
"SourceCodeManual",
635
-
"SourceCodeAuto"
636
-
]
637
-
},
638
626
"GlobalSettings": {
639
627
"type": "object",
640
628
"description": "Typed configuration options for global settings.\n",
@@ -715,7 +703,7 @@
715
703
},
716
704
"MainDomKeyDiscriminator": {
717
705
"type": "string",
718
-
"description": "Gets or sets a value to discriminate MainDom boundaries.\n\n Generally the default should suffice but useful for advanced scenarios e.g. azure deployment slot based zero\n downtime deployments.\n\n"
706
+
"description": "Gets or sets a value to discriminate MainDom boundaries.\nGenerally the default should suffice but useful for advanced scenarios e.g. azure deployment slot based zero\ndowntime deployments.\n"
719
707
},
720
708
"MainDomReleaseSignalPollingInterval": {
721
709
"type": "integer",
@@ -1273,7 +1261,7 @@
1273
1261
},
1274
1262
"NuCacheSerializerType": {
1275
1263
"type": "string",
1276
-
"description": "The serializer type that nucache uses to persist documents in the database.\n",
1264
+
"description": "The serializer type that the published content cache uses to persist documents in the database.\n",
1277
1265
"x-enumNames": [
1278
1266
"MessagePack",
1279
1267
"JSON"
@@ -1545,6 +1533,7 @@
1545
1533
},
1546
1534
"DisableFindContentByIdentifierPath": {
1547
1535
"type": "boolean",
1536
+
"description": "Gets or sets a value indicating whether the content finder by a path of the content key (ContentFinderByKeyPath) is disabled.\n",
1548
1537
"default": false
1549
1538
},
1550
1539
"DisableRedirectUrlTracking": {
@@ -1564,6 +1553,11 @@
1564
1553
"UmbracoApplicationUrl": {
1565
1554
"type": "string",
1566
1555
"description": "Gets or sets a value for the Umbraco application URL.\n"
1556
+
},
1557
+
"UseStrictDomainMatching": {
1558
+
"type": "boolean",
1559
+
"description": "Gets or sets a value indicating whether strict domain matching is used when finding content to match the request.\n",
1560
+
"default": false
1567
1561
}
1568
1562
}
1569
1563
},
@@ -1635,9 +1629,32 @@
1635
1629
"string"
1636
1630
],
1637
1631
"description": "Gets or sets a value to use for creating a user with a password for Unattended Installs\n"
1632
+
},
1633
+
"UnattendedTelemetryLevel": {
1634
+
"description": "Gets or sets a telemetry level to use for Unattended Installs\n",
1635
+
"default": "Detailed",
1636
+
"oneOf": [
1637
+
{
1638
+
"$ref": "#/definitions/TelemetryLevel"
1639
+
}
1640
+
]
1638
1641
}
1639
1642
}
1640
1643
},
1644
+
"TelemetryLevel": {
1645
+
"type": "string",
1646
+
"description": "",
1647
+
"x-enumNames": [
1648
+
"Minimal",
1649
+
"Basic",
1650
+
"Detailed"
1651
+
],
1652
+
"enum": [
1653
+
"Minimal",
1654
+
"Basic",
1655
+
"Detailed"
1656
+
]
1657
+
},
1641
1658
"BasicAuthSettings": {
1642
1659
"type": "object",
1643
1660
"description": "Typed configuration options for basic authentication settings.",
@@ -1874,19 +1891,33 @@
1874
1891
"properties": {
1875
1892
"ContentTypeKeys": {
1876
1893
"type": "array",
1877
-
"description": "Gets or sets a value for the collection of content type ids to always have in the cache.\n",
1894
+
"description": "Gets or sets a value for the collection of content type ids to always have in the cache.",
1878
1895
"items": {
1879
1896
"type": "string",
1880
1897
"format": "guid"
1881
1898
}
1882
1899
},
1883
1900
"DocumentBreadthFirstSeedCount": {
1884
1901
"type": "integer",
1902
+
"description": "Gets or sets a value for the document breadth first seed count.",
1885
1903
"format": "int32",
1886
1904
"default": 100
1887
1905
},
1888
1906
"MediaBreadthFirstSeedCount": {
1889
1907
"type": "integer",
1908
+
"description": "Gets or sets a value for the media breadth first seed count.",
1909
+
"format": "int32",
1910
+
"default": 100
1911
+
},
1912
+
"DocumentSeedBatchSize": {
1913
+
"type": "integer",
1914
+
"description": "Gets or sets a value for the document seed batch size.",
1915
+
"format": "int32",
1916
+
"default": 100
1917
+
},
1918
+
"MediaSeedBatchSize": {
1919
+
"type": "integer",
1920
+
"description": "Gets or sets a value for the media seed batch size.",
1890
1921
"format": "int32",
1891
1922
"default": 100
1892
1923
},
@@ -1925,6 +1956,24 @@
1925
1956
"default": "365.00:00:00"
1926
1957
}
1927
1958
}
1959
+
},
1960
+
"DistributedJobSettings": {
1961
+
"type": "object",
1962
+
"description": "Settings for distributed jobs.",
1963
+
"properties": {
1964
+
"Period": {
1965
+
"type": "string",
1966
+
"description": "Gets or sets a value for the period of checking if there are any runnable distributed jobs.\n",
1967
+
"format": "duration",
1968
+
"default": "00:00:05"
1969
+
},
1970
+
"Delay": {
1971
+
"type": "string",
1972
+
"description": "Gets or sets a value for the delay of when to start checking for distributed jobs.\n",
0 commit comments