|
4101 | 4101 | "title": "Ownerid", |
4102 | 4102 | "description": "User owning this layer" |
4103 | 4103 | }, |
| 4104 | + "category": { |
| 4105 | + "anyOf": [ |
| 4106 | + { |
| 4107 | + "type": "string", |
| 4108 | + "maxLength": 16 |
| 4109 | + }, |
| 4110 | + { |
| 4111 | + "type": "null" |
| 4112 | + } |
| 4113 | + ], |
| 4114 | + "title": "Category", |
| 4115 | + "description": "Data layer category key" |
| 4116 | + }, |
4104 | 4117 | "sharedRead": { |
4105 | 4118 | "items": { |
4106 | 4119 | "type": "string", |
|
4285 | 4298 | "title": "Ownerid", |
4286 | 4299 | "description": "User owning this layer" |
4287 | 4300 | }, |
| 4301 | + "category": { |
| 4302 | + "anyOf": [ |
| 4303 | + { |
| 4304 | + "type": "string", |
| 4305 | + "maxLength": 16 |
| 4306 | + }, |
| 4307 | + { |
| 4308 | + "type": "null" |
| 4309 | + } |
| 4310 | + ], |
| 4311 | + "title": "Category", |
| 4312 | + "description": "Data layer category key" |
| 4313 | + }, |
4288 | 4314 | "sharedRead": { |
4289 | 4315 | "items": { |
4290 | 4316 | "type": "string", |
|
4429 | 4455 | "title": "Ownerid", |
4430 | 4456 | "description": "User owning this layer" |
4431 | 4457 | }, |
| 4458 | + "category": { |
| 4459 | + "anyOf": [ |
| 4460 | + { |
| 4461 | + "type": "string", |
| 4462 | + "maxLength": 16 |
| 4463 | + }, |
| 4464 | + { |
| 4465 | + "type": "null" |
| 4466 | + } |
| 4467 | + ], |
| 4468 | + "title": "Category", |
| 4469 | + "description": "Data layer category key" |
| 4470 | + }, |
4432 | 4471 | "sharedRead": { |
4433 | 4472 | "items": { |
4434 | 4473 | "type": "string", |
|
4827 | 4866 | "type": "object", |
4828 | 4867 | "title": "HTTPValidationError" |
4829 | 4868 | }, |
| 4869 | + "LayerCategory-Input": { |
| 4870 | + "properties": { |
| 4871 | + "key": { |
| 4872 | + "type": "string", |
| 4873 | + "maxLength": 16, |
| 4874 | + "minLength": 1, |
| 4875 | + "title": "Key" |
| 4876 | + }, |
| 4877 | + "translations": { |
| 4878 | + "items": { |
| 4879 | + "$ref": "#/components/schemas/LayerCategoryTranslation" |
| 4880 | + }, |
| 4881 | + "type": "array", |
| 4882 | + "maxItems": 3, |
| 4883 | + "title": "Translations" |
| 4884 | + } |
| 4885 | + }, |
| 4886 | + "type": "object", |
| 4887 | + "required": [ |
| 4888 | + "key", |
| 4889 | + "translations" |
| 4890 | + ], |
| 4891 | + "title": "LayerCategory" |
| 4892 | + }, |
| 4893 | + "LayerCategory-Output": { |
| 4894 | + "properties": { |
| 4895 | + "key": { |
| 4896 | + "type": "string", |
| 4897 | + "maxLength": 16, |
| 4898 | + "minLength": 1, |
| 4899 | + "title": "Key" |
| 4900 | + }, |
| 4901 | + "translations": { |
| 4902 | + "items": { |
| 4903 | + "$ref": "#/components/schemas/LayerCategoryTranslation" |
| 4904 | + }, |
| 4905 | + "type": "array", |
| 4906 | + "maxItems": 3, |
| 4907 | + "title": "Translations" |
| 4908 | + } |
| 4909 | + }, |
| 4910 | + "type": "object", |
| 4911 | + "required": [ |
| 4912 | + "key", |
| 4913 | + "translations" |
| 4914 | + ], |
| 4915 | + "title": "LayerCategory" |
| 4916 | + }, |
| 4917 | + "LayerCategoryTranslation": { |
| 4918 | + "properties": { |
| 4919 | + "locale": { |
| 4920 | + "$ref": "#/components/schemas/Locale" |
| 4921 | + }, |
| 4922 | + "translation": { |
| 4923 | + "type": "string", |
| 4924 | + "maxLength": 32, |
| 4925 | + "minLength": 1, |
| 4926 | + "title": "Translation" |
| 4927 | + } |
| 4928 | + }, |
| 4929 | + "type": "object", |
| 4930 | + "required": [ |
| 4931 | + "locale", |
| 4932 | + "translation" |
| 4933 | + ], |
| 4934 | + "title": "LayerCategoryTranslation" |
| 4935 | + }, |
4830 | 4936 | "LayerCommentTranslation": { |
4831 | 4937 | "properties": { |
4832 | 4938 | "locale": { |
|
5178 | 5284 | "title": "Ownerid", |
5179 | 5285 | "description": "User owning this layer" |
5180 | 5286 | }, |
| 5287 | + "category": { |
| 5288 | + "anyOf": [ |
| 5289 | + { |
| 5290 | + "type": "string", |
| 5291 | + "maxLength": 16 |
| 5292 | + }, |
| 5293 | + { |
| 5294 | + "type": "null" |
| 5295 | + } |
| 5296 | + ], |
| 5297 | + "title": "Category", |
| 5298 | + "description": "Data layer category key" |
| 5299 | + }, |
5181 | 5300 | "sharedRead": { |
5182 | 5301 | "items": { |
5183 | 5302 | "type": "string", |
|
5362 | 5481 | "title": "Ownerid", |
5363 | 5482 | "description": "User owning this layer" |
5364 | 5483 | }, |
| 5484 | + "category": { |
| 5485 | + "anyOf": [ |
| 5486 | + { |
| 5487 | + "type": "string", |
| 5488 | + "maxLength": 16 |
| 5489 | + }, |
| 5490 | + { |
| 5491 | + "type": "null" |
| 5492 | + } |
| 5493 | + ], |
| 5494 | + "title": "Category", |
| 5495 | + "description": "Data layer category key" |
| 5496 | + }, |
5365 | 5497 | "sharedRead": { |
5366 | 5498 | "items": { |
5367 | 5499 | "type": "string", |
|
5506 | 5638 | "title": "Ownerid", |
5507 | 5639 | "description": "User owning this layer" |
5508 | 5640 | }, |
| 5641 | + "category": { |
| 5642 | + "anyOf": [ |
| 5643 | + { |
| 5644 | + "type": "string", |
| 5645 | + "maxLength": 16 |
| 5646 | + }, |
| 5647 | + { |
| 5648 | + "type": "null" |
| 5649 | + } |
| 5650 | + ], |
| 5651 | + "title": "Category", |
| 5652 | + "description": "Data layer category key" |
| 5653 | + }, |
5509 | 5654 | "sharedRead": { |
5510 | 5655 | "items": { |
5511 | 5656 | "type": "string", |
|
5993 | 6138 | "description": "Custom label for main navigation info entry", |
5994 | 6139 | "default": [] |
5995 | 6140 | }, |
| 6141 | + "layerCategories": { |
| 6142 | + "items": { |
| 6143 | + "$ref": "#/components/schemas/LayerCategory-Output" |
| 6144 | + }, |
| 6145 | + "type": "array", |
| 6146 | + "title": "Layercategories", |
| 6147 | + "description": "Layer categories to categorize layers in", |
| 6148 | + "default": [] |
| 6149 | + }, |
| 6150 | + "showLayerCategoryHeadings": { |
| 6151 | + "type": "boolean", |
| 6152 | + "title": "Showlayercategoryheadings", |
| 6153 | + "description": "Show layer category headings in browse view", |
| 6154 | + "default": true |
| 6155 | + }, |
5996 | 6156 | "alwaysShowTextInfo": { |
5997 | 6157 | "type": "boolean", |
5998 | 6158 | "title": "Alwaysshowtextinfo", |
|
6126 | 6286 | "description": "Custom label for main navigation info entry", |
6127 | 6287 | "default": [] |
6128 | 6288 | }, |
| 6289 | + "layerCategories": { |
| 6290 | + "items": { |
| 6291 | + "$ref": "#/components/schemas/LayerCategory-Input" |
| 6292 | + }, |
| 6293 | + "type": "array", |
| 6294 | + "title": "Layercategories", |
| 6295 | + "description": "Layer categories to categorize layers in", |
| 6296 | + "default": [] |
| 6297 | + }, |
| 6298 | + "showLayerCategoryHeadings": { |
| 6299 | + "type": "boolean", |
| 6300 | + "title": "Showlayercategoryheadings", |
| 6301 | + "description": "Show layer category headings in browse view", |
| 6302 | + "default": true |
| 6303 | + }, |
6129 | 6304 | "alwaysShowTextInfo": { |
6130 | 6305 | "type": "boolean", |
6131 | 6306 | "title": "Alwaysshowtextinfo", |
|
0 commit comments