@magda/registry-aspects 2.2.5 → 2.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magda/registry-aspects",
3
- "version": "2.2.5",
3
+ "version": "2.2.6",
4
4
  "description": "Common aspects for use with the registry.",
5
5
  "scripts": {
6
6
  "build": "echo \"ok\"",
@@ -0,0 +1,17 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema#",
3
+ "title": "Preview Map Settings",
4
+ "description": "Provides extra preview map configuration options at dataset/distribution level.",
5
+ "type": "object",
6
+ "properties": {
7
+ "enable": {
8
+ "title": "Whether the preview map UI feature should be enabled for the attached dataset/distribution.",
9
+ "type": "boolean",
10
+ "default": true
11
+ },
12
+ "format": {
13
+ "title": "Only available for distribution records. It can be used to override the format string of the distribution.",
14
+ "type": "string"
15
+ }
16
+ }
17
+ }