@magda/registry-aspects
Version:
Common aspects for use with the registry.
33 lines (32 loc) • 882 B
JSON
{
"$schema": "http://json-schema.org/schema#",
"title": "Visualiztion Information Aspect",
"description": "Aspect providing information to make front-end visualisations of distributions better",
"type": "object",
"properties": {
"format": {
"type": "string"
},
"wellFormed": {
"type": "boolean"
},
"fields": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"time": {
"type": "boolean"
},
"numeric": {
"type": "boolean"
}
},
"additionalProperties": false
}
},
"timeseries": {
"type": "boolean"
}
}
}