├── .github ├── CODEOWNERS └── workflows │ ├── docs-site-deploy.yaml │ └── validate-examples.yaml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── README.md ├── examples │ ├── README.md │ ├── customer-data-product.odps.yaml │ └── simple-data-product.odps.yaml └── img │ └── Bitol_Logo_icon_color.svg ├── mkdocs.yml ├── package.json ├── resources.md ├── schema ├── README.md ├── odps-json-schema-latest.json ├── odps-json-schema-v0.9.0.json └── odps-json-schema-v1.0.0.json └── scripts ├── README.md ├── build_docs.sh └── validate-examples.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @bitol-io/tsc 2 | -------------------------------------------------------------------------------- /.github/workflows/docs-site-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/.github/workflows/docs-site-deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/validate-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/.github/workflows/validate-examples.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/docs/examples/README.md -------------------------------------------------------------------------------- /docs/examples/customer-data-product.odps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/docs/examples/customer-data-product.odps.yaml -------------------------------------------------------------------------------- /docs/examples/simple-data-product.odps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/docs/examples/simple-data-product.odps.yaml -------------------------------------------------------------------------------- /docs/img/Bitol_Logo_icon_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/docs/img/Bitol_Logo_icon_color.svg -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/package.json -------------------------------------------------------------------------------- /resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/resources.md -------------------------------------------------------------------------------- /schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/schema/README.md -------------------------------------------------------------------------------- /schema/odps-json-schema-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/schema/odps-json-schema-latest.json -------------------------------------------------------------------------------- /schema/odps-json-schema-v0.9.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/schema/odps-json-schema-v0.9.0.json -------------------------------------------------------------------------------- /schema/odps-json-schema-v1.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/schema/odps-json-schema-v1.0.0.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/scripts/build_docs.sh -------------------------------------------------------------------------------- /scripts/validate-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/open-data-product-standard/HEAD/scripts/validate-examples.sh --------------------------------------------------------------------------------