├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── assets └── demo.gif ├── examples └── datapackage.json └── schemas └── schema.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/opendatasheets-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/opendatasheets-framework/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/opendatasheets-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/opendatasheets-framework/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/opendatasheets-framework/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/opendatasheets-framework/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/opendatasheets-framework/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /examples/datapackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/opendatasheets-framework/HEAD/examples/datapackage.json -------------------------------------------------------------------------------- /schemas/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/opendatasheets-framework/HEAD/schemas/schema.json --------------------------------------------------------------------------------