{"id":39664091,"url":"https://github.com/devantler-tech/data-product","last_synced_at":"2026-01-18T09:26:49.791Z","repository":{"id":65359224,"uuid":"521793281","full_name":"devantler-tech/data-product","owner":"devantler-tech","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-16T13:11:15.000Z","size":1832,"stargazers_count":1,"open_issues_count":28,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-16T13:37:57.239Z","etag":null,"topics":["app"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devantler-tech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-05T22:43:42.000Z","updated_at":"2025-02-16T13:11:18.000Z","dependencies_parsed_at":"2025-03-09T02:30:14.766Z","dependency_job_id":null,"html_url":"https://github.com/devantler-tech/data-product","commit_stats":null,"previous_names":["devantler-tech/data-product"],"tags_count":66,"template":false,"template_full_name":null,"purl":"pkg:github/devantler-tech/data-product","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devantler-tech%2Fdata-product","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devantler-tech%2Fdata-product/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devantler-tech%2Fdata-product/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devantler-tech%2Fdata-product/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devantler-tech","download_url":"https://codeload.github.com/devantler-tech/data-product/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devantler-tech%2Fdata-product/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28534159,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["app"],"created_at":"2026-01-18T09:26:49.652Z","updated_at":"2026-01-18T09:26:49.745Z","avatar_url":"https://github.com/devantler-tech.png","language":"C#","readme":"# Data Product ⬡\n\n[![codecov](https://codecov.io/gh/devantler/data-product/branch/main/graph/badge.svg?token=9lh1Z59deC)](https://codecov.io/gh/devantler/data-product)\n\n![concept](https://github.com/devantler/data-product/assets/26203420/da456d38-d6e8-445c-8980-e1e855e955b9)\n\nThis repo contains a Data Product as defined by Zhamak Dehghani in the Book [Data Mesh](https://www.oreilly.com/library/view/data-mesh/9781492092384/). A data product is the central unit of the data mesh, and operates as a service that provides dedicated data storage, data processing, data discovery-, and data governance- tooling for a specific domain model. In this context, a domain model is the schema of some data that covers a concrete domain, e.g. Accounts, Books, Authors etc.\n\nThe data product is built to support most cloud providers and provisioning tools by being built as a container.\n\n\u003cdetails\u003e\n  \u003csummary\u003eShow/hide folder structure\u003c/summary\u003e\n\n\u003c!-- readme-tree start --\u003e\n```\n.\n├── .github\n│   └── workflows\n├── .vscode\n├── src\n│   ├── Devantler.DataProduct\n│   │   ├── Features\n│   │   │   ├── Apis\n│   │   │   │   ├── GraphQL\n│   │   │   │   ├── Rest\n│   │   │   │   │   └── Controllers\n│   │   │   │   └── gRPC\n│   │   │   ├── Auth\n│   │   │   ├── Caching\n│   │   │   │   ├── Extensions\n│   │   │   │   └── Services\n│   │   │   ├── Configuration\n│   │   │   ├── Dashboard\n│   │   │   │   └── UI\n│   │   │   │       ├── Components\n│   │   │   │       ├── Layouts\n│   │   │   │       └── Pages\n│   │   │   ├── DataCatalog\n│   │   │   │   └── Services\n│   │   │   │       └── DataHubClient\n│   │   │   │           ├── Extensions\n│   │   │   │           ├── Helpers\n│   │   │   │           └── Models\n│   │   │   │               ├── Aspects\n│   │   │   │               │   └── SchemaMetadata\n│   │   │   │               │       └── PlatformSchemas\n│   │   │   │               └── Entities\n│   │   │   ├── DataStore\n│   │   │   │   ├── Entities\n│   │   │   │   ├── Repositories\n│   │   │   │   └── Services\n│   │   │   ├── Inputs\n│   │   │   │   ├── JsonConverters\n│   │   │   │   └── Services\n│   │   │   ├── Mapping\n│   │   │   ├── Outputs\n│   │   │   │   └── Services\n│   │   │   ├── SchemaRegistry\n│   │   │   ├── Schemas\n│   │   │   ├── Telemetry\n│   │   │   │   ├── Logging\n│   │   │   │   ├── Metrics\n│   │   │   │   └── Tracing\n│   │   │   ├── Validation\n│   │   │   └── Webhooks\n│   │   ├── Properties\n│   │   ├── assets\n│   │   │   ├── input\n│   │   │   └── schemas\n│   │   └── wwwroot\n│   │       └── css\n│   ├── Devantler.DataProduct.Configuration\n│   │   ├── Extensions\n│   │   └── Options\n│   │       ├── Apis\n│   │       ├── Auth\n│   │       ├── CacheStore\n│   │       ├── Dashboard\n│   │       ├── DataCatalog\n│   │       ├── DataStore\n│   │       │   ├── NoSQL\n│   │       │   └── SQL\n│   │       ├── FeatureFlags\n│   │       ├── Inputs\n│   │       ├── Outputs\n│   │       ├── SchemaRegistry\n│   │       │   └── Providers\n│   │       └── Telemetry\n│   ├── Devantler.DataProduct.Generator\n│   │   ├── Extensions\n│   │   ├── IncrementalGenerators\n│   │   └── Models\n│   └── Devantler.SchemaRegistry.Client\n│       └── Models\n└── tests\n    ├── Devantler.DataProduct.Configuration.Tests.Unit\n    └── Devantler.DataProduct.Generator.Tests.Unit\n        ├── IncrementalGenerators\n        │   ├── AutoMapperProfileGeneratorTests\n        │   ├── CachingStartupExtensionsGeneratorTests\n        │   ├── DataStoreServiceGeneratorTests\n        │   ├── DataStoreStartupExtensionsGeneratorTests\n        │   ├── DbContextGeneratorTests\n        │   ├── EntitiesGeneratorTests\n        │   ├── GraphQlQueryGeneratorTests\n        │   ├── InputsStartupExtensionsGeneratorTests\n        │   ├── OutputsStartupExtensionsGeneratorTests\n        │   ├── RepositoryGeneratorTests\n        │   ├── RestBulkControllerGeneratorTests\n        │   ├── RestControllerGeneratorTests\n        │   └── SchemaGeneratorTests\n        └── assets\n            └── schemas\n\n98 directories\n```\n\u003c!-- readme-tree end --\u003e\n\n\u003c/details\u003e\n\n## Prerequisites\n\n- .NET 7.0+\n\nOptionally the following infrastructure:\n\n- Kafka\n- Kafka Schema Registry\n- Jaeger\n- Grafana\n- Prometheus\n- Elasticsearch\n- Redis\n- LinkedIn DataHub\n- PostgreSQL\n- Keycloak\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevantler-tech%2Fdata-product","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevantler-tech%2Fdata-product","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevantler-tech%2Fdata-product/lists"}