├── .gitignore ├── 230921 Open Data Contract Standard (1.0.3).pdf ├── 231130 Bitol Technical Charter 2023-11-30.pdf ├── 240618 Bitol roadmap (1.0.1).pdf ├── CONTRIBUTING.md ├── MEMBERS.md ├── README.md ├── bitol-weekly-meetings.ics ├── guiding-values.md ├── meetings ├── 20231128.md ├── 20231219.md └── README.md ├── name.md └── rfcs ├── 0000-template.md ├── 0011-lineage.md ├── 0015-business-definitions.md ├── 0018-oors.md ├── 0019-global-context.md ├── 0020-named-objects.md ├── 0027-unstructured-data-quality.md ├── 0028-deprecated-flag.md ├── 0029-data-product-type.md ├── 0030-maps.md ├── 0031-relatesTo.md ├── 0032-imports.md ├── 0033-enum.md ├── README.md ├── approved ├── README.md ├── odcs-v3.0.0 │ ├── 0001-servers.md │ ├── 0002-types.md │ ├── 0003-replacement-of-stakeholders.md │ ├── 0004-hierarchical-tables.md │ ├── 0005-clean-implementation-specific.md │ ├── 0006-support-channels.md │ └── 0007-data-quality.md ├── odcs-v3.1.0 │ ├── 0009a-ref-identify-external-contract.md │ ├── 0009b-ref-internal-properties.md │ ├── 0012-implicit-dq-rules.md │ ├── 0013-relationships-between-properties.md │ ├── 0016-teamname.md │ ├── 0017-new-date-types.md │ ├── 0021-drop-slaDefaultElement.md │ ├── 0022-add-description-to-sla.md │ ├── 0023-improve-support-channels.md │ ├── 0024-extensions-to-customproperties-authoritativedefinitions.md │ ├── 0025-scheduling-sla-checks.md │ ├── 0026a-reference-id.md │ ├── 0026b-internal-references.md │ └── 0028-permalink.md ├── odps-v0.9.0 │ └── 0010-odps.md └── odps-v1.0.0 │ └── 0028-permalink.md ├── archive ├── 0008-business-rules-versioning-attribute-level.md ├── 0009-external-internal-reference_deprecated.md ├── 0009c-ref-contract-structure.md ├── 0014-quality-check-id.md └── README.md └── example.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | .idea 4 | -------------------------------------------------------------------------------- /230921 Open Data Contract Standard (1.0.3).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/230921 Open Data Contract Standard (1.0.3).pdf -------------------------------------------------------------------------------- /231130 Bitol Technical Charter 2023-11-30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/231130 Bitol Technical Charter 2023-11-30.pdf -------------------------------------------------------------------------------- /240618 Bitol roadmap (1.0.1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/240618 Bitol roadmap (1.0.1).pdf -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /MEMBERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/MEMBERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/README.md -------------------------------------------------------------------------------- /bitol-weekly-meetings.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/bitol-weekly-meetings.ics -------------------------------------------------------------------------------- /guiding-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/guiding-values.md -------------------------------------------------------------------------------- /meetings/20231128.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/meetings/20231128.md -------------------------------------------------------------------------------- /meetings/20231219.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/meetings/20231219.md -------------------------------------------------------------------------------- /meetings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/meetings/README.md -------------------------------------------------------------------------------- /name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/name.md -------------------------------------------------------------------------------- /rfcs/0000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0000-template.md -------------------------------------------------------------------------------- /rfcs/0011-lineage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0011-lineage.md -------------------------------------------------------------------------------- /rfcs/0015-business-definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0015-business-definitions.md -------------------------------------------------------------------------------- /rfcs/0018-oors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0018-oors.md -------------------------------------------------------------------------------- /rfcs/0019-global-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0019-global-context.md -------------------------------------------------------------------------------- /rfcs/0020-named-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0020-named-objects.md -------------------------------------------------------------------------------- /rfcs/0027-unstructured-data-quality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0027-unstructured-data-quality.md -------------------------------------------------------------------------------- /rfcs/0028-deprecated-flag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0028-deprecated-flag.md -------------------------------------------------------------------------------- /rfcs/0029-data-product-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0029-data-product-type.md -------------------------------------------------------------------------------- /rfcs/0030-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0030-maps.md -------------------------------------------------------------------------------- /rfcs/0031-relatesTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0031-relatesTo.md -------------------------------------------------------------------------------- /rfcs/0032-imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0032-imports.md -------------------------------------------------------------------------------- /rfcs/0033-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/0033-enum.md -------------------------------------------------------------------------------- /rfcs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/README.md -------------------------------------------------------------------------------- /rfcs/approved/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/README.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.0.0/0001-servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.0.0/0001-servers.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.0.0/0002-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.0.0/0002-types.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.0.0/0003-replacement-of-stakeholders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.0.0/0003-replacement-of-stakeholders.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.0.0/0004-hierarchical-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.0.0/0004-hierarchical-tables.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.0.0/0005-clean-implementation-specific.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.0.0/0005-clean-implementation-specific.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.0.0/0006-support-channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.0.0/0006-support-channels.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.0.0/0007-data-quality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.0.0/0007-data-quality.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0009a-ref-identify-external-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0009a-ref-identify-external-contract.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0009b-ref-internal-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0009b-ref-internal-properties.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0012-implicit-dq-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0012-implicit-dq-rules.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0013-relationships-between-properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0013-relationships-between-properties.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0016-teamname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0016-teamname.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0017-new-date-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0017-new-date-types.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0021-drop-slaDefaultElement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0021-drop-slaDefaultElement.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0022-add-description-to-sla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0022-add-description-to-sla.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0023-improve-support-channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0023-improve-support-channels.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0024-extensions-to-customproperties-authoritativedefinitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0024-extensions-to-customproperties-authoritativedefinitions.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0025-scheduling-sla-checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0025-scheduling-sla-checks.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0026a-reference-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0026a-reference-id.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0026b-internal-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0026b-internal-references.md -------------------------------------------------------------------------------- /rfcs/approved/odcs-v3.1.0/0028-permalink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odcs-v3.1.0/0028-permalink.md -------------------------------------------------------------------------------- /rfcs/approved/odps-v0.9.0/0010-odps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odps-v0.9.0/0010-odps.md -------------------------------------------------------------------------------- /rfcs/approved/odps-v1.0.0/0028-permalink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/approved/odps-v1.0.0/0028-permalink.md -------------------------------------------------------------------------------- /rfcs/archive/0008-business-rules-versioning-attribute-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/archive/0008-business-rules-versioning-attribute-level.md -------------------------------------------------------------------------------- /rfcs/archive/0009-external-internal-reference_deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/archive/0009-external-internal-reference_deprecated.md -------------------------------------------------------------------------------- /rfcs/archive/0009c-ref-contract-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/archive/0009c-ref-contract-structure.md -------------------------------------------------------------------------------- /rfcs/archive/0014-quality-check-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/archive/0014-quality-check-id.md -------------------------------------------------------------------------------- /rfcs/archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/archive/README.md -------------------------------------------------------------------------------- /rfcs/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitol-io/tsc/HEAD/rfcs/example.yaml --------------------------------------------------------------------------------