├── .github └── workflows │ └── ci.yml ├── .pre-commit-config.yaml ├── 0.0.1 ├── Readme.md ├── example │ └── dg_post_idai.json └── schema.json ├── 0.0.2 ├── Readme.md ├── example │ └── dg_post_idai.json └── schema.json ├── 0.0.3 ├── Readme.md ├── example │ └── dg_post_idai.json └── schema.json ├── CHANGES.md ├── LICENSE └── Readme.md /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /0.0.1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/0.0.1/Readme.md -------------------------------------------------------------------------------- /0.0.1/example/dg_post_idai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/0.0.1/example/dg_post_idai.json -------------------------------------------------------------------------------- /0.0.1/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/0.0.1/schema.json -------------------------------------------------------------------------------- /0.0.2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/0.0.2/Readme.md -------------------------------------------------------------------------------- /0.0.2/example/dg_post_idai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/0.0.2/example/dg_post_idai.json -------------------------------------------------------------------------------- /0.0.2/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/0.0.2/schema.json -------------------------------------------------------------------------------- /0.0.3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/0.0.3/Readme.md -------------------------------------------------------------------------------- /0.0.3/example/dg_post_idai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/0.0.3/example/dg_post_idai.json -------------------------------------------------------------------------------- /0.0.3/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/0.0.3/schema.json -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/mosaicjson-spec/HEAD/Readme.md --------------------------------------------------------------------------------