The important thing concept behind knowledge mesh is to enhance knowledge administration in giant
organizations by decentralizing possession of analytical knowledge. As an alternative of a
central crew managing all analytical knowledge, smaller autonomous domain-aligned
groups personal their respective knowledge merchandise. This setup permits for these groups
to be aware of evolving enterprise wants and successfully apply their
area information in direction of knowledge pushed resolution making.
Having smaller autonomous groups presents completely different units of governance
challenges in comparison with having a central crew managing all of analytical knowledge
in a central knowledge platform. Conventional methods of implementing governance guidelines
utilizing knowledge stewards work towards the thought of autonomous groups and don’t
scale in a distributed setup. Therefore with the info mesh method, the emphasis
is to make use of automation to implement governance guidelines. On this article we’ll
study easy methods to use the idea of health capabilities to implement governance
guidelines on knowledge merchandise in an information mesh.
That is significantly necessary to make sure that the info merchandise meet a
minimal governance customary which in flip is essential for his or her
interoperability and the community results that knowledge mesh guarantees.
Knowledge product as an architectural quantum of the mesh
The time period “knowledge product“ has
sadly taken on numerous self-serving meanings, and absolutely
disambiguating them may warrant a separate article. Nevertheless, this
highlights the necessity for organizations to try for a typical inner
definition, and that is the place governance performs a vital position.
For the needs of this dialogue let’s agree on the definition of a
knowledge product as an architectural quantum
of information mesh. Merely put, it is a self-contained, deployable, and invaluable
strategy to work with knowledge. The idea applies the confirmed mindset and
methodologies of software program product improvement to the info area.
In trendy software program improvement, we decompose software program programs into
simply composable models, making certain they’re discoverable, maintainable, and
have dedicated service stage aims (SLOs). Equally, an information product
is the smallest invaluable unit of analytical knowledge, sourced from knowledge
streams, operational programs, or different exterior sources and likewise different
knowledge merchandise, packaged particularly in a strategy to ship significant
enterprise worth. It consists of all the required equipment to effectively
obtain its said purpose utilizing automation.
What are architectural health capabilities
As described within the guide Constructing Evolutionary
Architectures,
a health perform is a take a look at that’s used to judge how shut a given
implementation is to its said design aims.
By utilizing health capabilities, we’re aiming to
“shift left” on governance, that means we
determine potential governance points earlier within the timeline of
the software program worth stream. This empowers groups to deal with these points
proactively relatively than ready for them to be caught upon inspections.
With health capabilities, we prioritize :
- Governance by rule over Governance by inspection.
- Empowering groups to find issues over Unbiased
audits - Steady governance over Devoted audit section
Since knowledge merchandise are the important thing constructing blocks of the info mesh
structure, making certain that they meet sure architectural
traits is paramount. It’s a typical observe to have an
group vast knowledge catalog to index these knowledge merchandise, they
sometimes include wealthy metadata about all revealed knowledge merchandise. Let’s
see how we are able to leverage all this metadata to confirm architectural
traits of an information product utilizing health capabilities.
Architectural traits of a Knowledge Product
In her guide Knowledge Mesh: Delivering Knowledge-Pushed Worth at
Scale,
Zhamak lays out just a few necessary architectural traits of an information
product. Let’s design easy assertions that may confirm these
traits. Later, we are able to automate these assertions to run towards
every knowledge product within the mesh.
Discoverability
Assert that utilizing a reputation in a key phrase search within the catalog or an information
product market surfaces the info product in top-n
outcomes.
Addressability
Assert that the info product is accessible through a novel
URI.
Self Descriptiveness
Assert that the info product has a correct English description explaining
its objective
Assert for existence of significant field-level descriptions.
Safe
Assert that entry to the info product is blocked for
unauthorized customers.
Interoperability
Assert for existence of enterprise keys, e.g.
customer_id
, product_id
.
Assert that the info product provides knowledge through domestically agreed and
standardized knowledge codecs like CSV, Parquet and many others.
Assert for compliance with metadata registry requirements equivalent to
“ISO/IEC 11179”
Trustworthiness
Assert for existence of revealed SLOs and SLIs
Asserts that adherence to SLOs is sweet
Helpful by itself
Assert – based mostly on the info product title, description and area
title –
that the info product represents a cohesive data idea in its
area.
Natively Accessible
Assert that the info product helps output ports tailor-made for key
personas, e.g. REST API output port for builders, SQL output port
for knowledge analysts.
Patterns
A lot of the assessments described above (aside from the discoverability take a look at)
will be run on the metadata of the info product which is saved within the
catalog. Let us take a look at some implementation choices.
Working assertions throughout the catalog
Modern-day knowledge catalogs like Collibra and Datahub present hooks utilizing
which we are able to run customized logic. For eg. Collibra has a function referred to as workflows
and Datahub has a function referred to as Metadata
Assessments the place one can execute these assertions on the metadata of the
knowledge product.
Determine 1: Working assertions utilizing customized hooks
In a latest implementation of information mesh the place we used Collibra because the
catalog, we carried out a customized enterprise asset referred to as “Knowledge Product”
that made it easy to fetch all knowledge property of sort “knowledge
product” and run assertions on them utilizing workflows.
Working assertions outdoors the catalog
Not all catalogs present hooks to run customized logic. Even after they
do, it may be severely restrictive. We’d not be capable of use our
favourite testing libraries and frameworks for assertions. In such circumstances,
we are able to pull the metadata from the catalog utilizing an API and run the
assertions outdoors the catalog in a separate course of.
Determine 2: Utilizing catalog APIs to retrieve knowledge product metadata
and run assertions in a separate course of
Let’s contemplate a fundamental instance. As a part of the health capabilities for
Trustworthiness, we wish to make sure that the info product consists of
revealed service stage aims (SLOs). To realize this, we are able to question
the catalog utilizing a REST API. Assuming the response is in JSON format,
we are able to use any JSON path library to confirm the existence of the related
fields for SLOs.
import json from jsonpath_ng import parse illustrative_get_dataproduct_response = '''{ "entity": { "urn": "urn:li:dataProduct:marketing_customer360", "sort": "DATA_PRODUCT", "elements": { "dataProductProperties": { "title": "Advertising and marketing Buyer 360", "description": "Complete view of buyer knowledge for advertising and marketing.", "area": "urn:li:area:advertising and marketing", "house owners": [ { "owner": "urn:li:corpuser:jdoe", "type": "DATAOWNER" } ], "uri": "https://instance.com/dataProduct/marketing_customer360" }, "dataProductSLOs": { "slos": [ { "name": "Completeness", "description": "Row count consistency between deployments", "target": 0.95 } ] } } } }''' def test_existence_of_service_level_objectives(): response = json.masses(illustrative_get_dataproduct_response) jsonpath_expr = parse('$.entity.elements.dataProductSLOs.slos') matches = jsonpath_expr.discover(response) data_product_name = parse('$.entity.elements.dataProductProperties.title').discover(response)[0].worth assert matches, "Service Stage Targets are lacking for knowledge product : " + data_product_name assert matches[0].worth, "Service Stage Targets are lacking for knowledge product : " + data_product_name
Utilizing LLMs to interpret metadata
Most of the assessments described above contain decoding knowledge product
metadata like discipline and job descriptions and assessing their health, we
consider Giant Language Fashions (LLMs) are well-suited for this job.
Let’s take one of many trickier health assessments, the take a look at for invaluable
by itself and discover easy methods to implement it. An analogous method will be
used for the self descriptiveness health take a look at and the
interoperability health
take a look at for compliance with metadata registry requirements.
I’ll use the Perform calling function of OpenAI fashions to
extract structured output from the evaluations. For simplicity, I
carried out these evaluations utilizing the OpenAI Playground with GPT-4 as
our mannequin. The identical outcomes will be achieved utilizing their API. When you
have structured output from a big language mannequin (LLM) in JSON format,
you possibly can write assertions just like these described above.
System Immediate
You’re a knowledge product evaluator. Your job is to have a look at the meta knowledge
a couple of knowledge product supplied and consider if sure architectural
properties of the info product holds true or not.
Capabilities:
Capabilities
{ "title": "get_data_product_fitness", "description": "Decide if knowledge product is match for objective", "strict": false, "parameters": { "sort": "object", "required": [], "properties": { "valuable_on_its_own": { "sort": "object", "properties": { "is_fit": { "sort": "boolean", "description": "True if the info product is effective on it is personal, false in any other case" }, "cause": { "sort": "string", "description": "Motive why the info product is effective on it is personal or not" } }, "description": "Determines if knowledge product represents a cohesive data idea in its area. Has worth by itself and can be utilized impartial of different knowledge merchandise" } } } }
We are able to then ship the info product metadata to the LLM to judge
them. This is a few outcomes.
Buyer knowledge product: We anticipate this knowledge product to move the take a look at
for valuable_on_its_own
Consumer: { "entity": { "urn": "urn:li:dataProduct:marketing_customer360", "sort": "DATA_PRODUCT", "elements": { "dataProductProperties": { "title": "Advertising and marketing Buyer 360", "description": "Complete view of buyer knowledge for advertising and marketing.", "area": "urn:li:area:advertising and marketing" } } } } Assistant: get_data_product_fitness({ "valuable_on_its_own": { "is_fit": true, "cause": "The 'Advertising and marketing Buyer 360' knowledge product presumably supplies a complete view of buyer knowledge, which is effective for advertising and marketing functions. It may supply insights into buyer behaviors, preferences, and engagement with advertising and marketing campaigns, all of which can be utilized to enhance advertising and marketing methods." } })
Product_Id knowledge product: We anticipate this knowledge product to fail the
take a look at for valuable_on_its_own. As product id must be at all times joined
with product or buyer to have any use.
Consumer: { "entity": { "urn": "urn:li:dataProduct:product_id", "sort": "DATA_PRODUCT", "elements": { "dataProductProperties": { "title": "Product_Id", "description": "Desk representing product ids per buyer", "area": "urn:li:area:advertising and marketing" } } } } Assistant: get_data_product_fitness({ "valuable_on_its_own": { "is_fit": false, "cause": "The 'Product_Id' knowledge product will not be invaluable by itself. It merely represents product ids per buyer and lacks contextual data about what these merchandise are. For it to be significant, it might probably must be used along with different knowledge merchandise that present particulars concerning the merchandise themselves." } })
Publishing the outcomes
As soon as we’ve got the outcomes of the assertions, we are able to show them on a
dashboard. Instruments like Dashing and
Sprint are well-suited for creating light-weight
dashboards. Moreover, some knowledge catalogs supply the potential to construct customized dashboards as nicely.
Determine 3: A dashboard with inexperienced and purple knowledge merchandise, grouped by
area, with the power to drill down and examine the failed health assessments
Publicly sharing these dashboards throughout the group
can function a robust incentive for the groups to stick to the
governance requirements. In any case, nobody desires to be the crew with the
most purple marks or unfit knowledge merchandise on the dashboard.
Knowledge product customers also can use this dashboard to make knowledgeable
choices concerning the knowledge merchandise they wish to use. They’d naturally
favor knowledge merchandise which are match over these that aren’t.
Obligatory however not enough
Whereas these health capabilities are sometimes run centrally throughout the
knowledge platform, it stays the duty of the info product groups to
guarantee their knowledge merchandise move the health assessments. You will need to observe
that the first purpose of the health capabilities is to make sure adherence to
the fundamental governance requirements. Nevertheless, this doesn’t absolve the info
product groups from contemplating the precise necessities of their area
when constructing and publishing their knowledge product.
For instance, merely making certain that the entry is blocked by default is
not enough to ensure the safety of an information product containing
scientific trial knowledge. Such groups might have to implement further measures,
equivalent to differential privateness methods, to attain true knowledge
safety.
Having stated that, health capabilities are extraordinarily helpful. As an illustration,
in one among our shopper implementations, we discovered that over 80% of revealed
knowledge merchandise didn’t move fundamental health assessments when evaluated
retrospectively.
Conclusion
Now we have learnt that health capabilities are an efficient device for
governance in Knowledge Mesh. On condition that the time period “Knowledge Product” remains to be typically
interpreted in keeping with particular person comfort, health capabilities assist
implement governance requirements mutually agreed upon by the info product
groups . This, in flip, helps us to construct an ecosystem of information merchandise
which are reusable and interoperable.
Having to stick to the requirements set by health capabilities encourages
groups to construct knowledge merchandise utilizing the established “paved roads”
supplied by the platform, thereby simplifying the upkeep and
evolution of those knowledge merchandise. Publishing outcomes of health capabilities
on inner dashboards enhances the notion of information high quality and helps
construct confidence and belief amongst knowledge product customers.
We encourage you to undertake the health capabilities for knowledge merchandise
described on this article as a part of your Knowledge Mesh journey.
The important thing concept behind knowledge mesh is to enhance knowledge administration in giant
organizations by decentralizing possession of analytical knowledge. As an alternative of a
central crew managing all analytical knowledge, smaller autonomous domain-aligned
groups personal their respective knowledge merchandise. This setup permits for these groups
to be aware of evolving enterprise wants and successfully apply their
area information in direction of knowledge pushed resolution making.
Having smaller autonomous groups presents completely different units of governance
challenges in comparison with having a central crew managing all of analytical knowledge
in a central knowledge platform. Conventional methods of implementing governance guidelines
utilizing knowledge stewards work towards the thought of autonomous groups and don’t
scale in a distributed setup. Therefore with the info mesh method, the emphasis
is to make use of automation to implement governance guidelines. On this article we’ll
study easy methods to use the idea of health capabilities to implement governance
guidelines on knowledge merchandise in an information mesh.
That is significantly necessary to make sure that the info merchandise meet a
minimal governance customary which in flip is essential for his or her
interoperability and the community results that knowledge mesh guarantees.
Knowledge product as an architectural quantum of the mesh
The time period “knowledge product“ has
sadly taken on numerous self-serving meanings, and absolutely
disambiguating them may warrant a separate article. Nevertheless, this
highlights the necessity for organizations to try for a typical inner
definition, and that is the place governance performs a vital position.
For the needs of this dialogue let’s agree on the definition of a
knowledge product as an architectural quantum
of information mesh. Merely put, it is a self-contained, deployable, and invaluable
strategy to work with knowledge. The idea applies the confirmed mindset and
methodologies of software program product improvement to the info area.
In trendy software program improvement, we decompose software program programs into
simply composable models, making certain they’re discoverable, maintainable, and
have dedicated service stage aims (SLOs). Equally, an information product
is the smallest invaluable unit of analytical knowledge, sourced from knowledge
streams, operational programs, or different exterior sources and likewise different
knowledge merchandise, packaged particularly in a strategy to ship significant
enterprise worth. It consists of all the required equipment to effectively
obtain its said purpose utilizing automation.
What are architectural health capabilities
As described within the guide Constructing Evolutionary
Architectures,
a health perform is a take a look at that’s used to judge how shut a given
implementation is to its said design aims.
By utilizing health capabilities, we’re aiming to
“shift left” on governance, that means we
determine potential governance points earlier within the timeline of
the software program worth stream. This empowers groups to deal with these points
proactively relatively than ready for them to be caught upon inspections.
With health capabilities, we prioritize :
- Governance by rule over Governance by inspection.
- Empowering groups to find issues over Unbiased
audits - Steady governance over Devoted audit section
Since knowledge merchandise are the important thing constructing blocks of the info mesh
structure, making certain that they meet sure architectural
traits is paramount. It’s a typical observe to have an
group vast knowledge catalog to index these knowledge merchandise, they
sometimes include wealthy metadata about all revealed knowledge merchandise. Let’s
see how we are able to leverage all this metadata to confirm architectural
traits of an information product utilizing health capabilities.
Architectural traits of a Knowledge Product
In her guide Knowledge Mesh: Delivering Knowledge-Pushed Worth at
Scale,
Zhamak lays out just a few necessary architectural traits of an information
product. Let’s design easy assertions that may confirm these
traits. Later, we are able to automate these assertions to run towards
every knowledge product within the mesh.
Discoverability
Assert that utilizing a reputation in a key phrase search within the catalog or an information
product market surfaces the info product in top-n
outcomes.
Addressability
Assert that the info product is accessible through a novel
URI.
Self Descriptiveness
Assert that the info product has a correct English description explaining
its objective
Assert for existence of significant field-level descriptions.
Safe
Assert that entry to the info product is blocked for
unauthorized customers.
Interoperability
Assert for existence of enterprise keys, e.g.
customer_id
, product_id
.
Assert that the info product provides knowledge through domestically agreed and
standardized knowledge codecs like CSV, Parquet and many others.
Assert for compliance with metadata registry requirements equivalent to
“ISO/IEC 11179”
Trustworthiness
Assert for existence of revealed SLOs and SLIs
Asserts that adherence to SLOs is sweet
Helpful by itself
Assert – based mostly on the info product title, description and area
title –
that the info product represents a cohesive data idea in its
area.
Natively Accessible
Assert that the info product helps output ports tailor-made for key
personas, e.g. REST API output port for builders, SQL output port
for knowledge analysts.
Patterns
A lot of the assessments described above (aside from the discoverability take a look at)
will be run on the metadata of the info product which is saved within the
catalog. Let us take a look at some implementation choices.
Working assertions throughout the catalog
Modern-day knowledge catalogs like Collibra and Datahub present hooks utilizing
which we are able to run customized logic. For eg. Collibra has a function referred to as workflows
and Datahub has a function referred to as Metadata
Assessments the place one can execute these assertions on the metadata of the
knowledge product.
Determine 1: Working assertions utilizing customized hooks
In a latest implementation of information mesh the place we used Collibra because the
catalog, we carried out a customized enterprise asset referred to as “Knowledge Product”
that made it easy to fetch all knowledge property of sort “knowledge
product” and run assertions on them utilizing workflows.
Working assertions outdoors the catalog
Not all catalogs present hooks to run customized logic. Even after they
do, it may be severely restrictive. We’d not be capable of use our
favourite testing libraries and frameworks for assertions. In such circumstances,
we are able to pull the metadata from the catalog utilizing an API and run the
assertions outdoors the catalog in a separate course of.
Determine 2: Utilizing catalog APIs to retrieve knowledge product metadata
and run assertions in a separate course of
Let’s contemplate a fundamental instance. As a part of the health capabilities for
Trustworthiness, we wish to make sure that the info product consists of
revealed service stage aims (SLOs). To realize this, we are able to question
the catalog utilizing a REST API. Assuming the response is in JSON format,
we are able to use any JSON path library to confirm the existence of the related
fields for SLOs.
import json from jsonpath_ng import parse illustrative_get_dataproduct_response = '''{ "entity": { "urn": "urn:li:dataProduct:marketing_customer360", "sort": "DATA_PRODUCT", "elements": { "dataProductProperties": { "title": "Advertising and marketing Buyer 360", "description": "Complete view of buyer knowledge for advertising and marketing.", "area": "urn:li:area:advertising and marketing", "house owners": [ { "owner": "urn:li:corpuser:jdoe", "type": "DATAOWNER" } ], "uri": "https://instance.com/dataProduct/marketing_customer360" }, "dataProductSLOs": { "slos": [ { "name": "Completeness", "description": "Row count consistency between deployments", "target": 0.95 } ] } } } }''' def test_existence_of_service_level_objectives(): response = json.masses(illustrative_get_dataproduct_response) jsonpath_expr = parse('$.entity.elements.dataProductSLOs.slos') matches = jsonpath_expr.discover(response) data_product_name = parse('$.entity.elements.dataProductProperties.title').discover(response)[0].worth assert matches, "Service Stage Targets are lacking for knowledge product : " + data_product_name assert matches[0].worth, "Service Stage Targets are lacking for knowledge product : " + data_product_name
Utilizing LLMs to interpret metadata
Most of the assessments described above contain decoding knowledge product
metadata like discipline and job descriptions and assessing their health, we
consider Giant Language Fashions (LLMs) are well-suited for this job.
Let’s take one of many trickier health assessments, the take a look at for invaluable
by itself and discover easy methods to implement it. An analogous method will be
used for the self descriptiveness health take a look at and the
interoperability health
take a look at for compliance with metadata registry requirements.
I’ll use the Perform calling function of OpenAI fashions to
extract structured output from the evaluations. For simplicity, I
carried out these evaluations utilizing the OpenAI Playground with GPT-4 as
our mannequin. The identical outcomes will be achieved utilizing their API. When you
have structured output from a big language mannequin (LLM) in JSON format,
you possibly can write assertions just like these described above.
System Immediate
You’re a knowledge product evaluator. Your job is to have a look at the meta knowledge
a couple of knowledge product supplied and consider if sure architectural
properties of the info product holds true or not.
Capabilities:
Capabilities
{ "title": "get_data_product_fitness", "description": "Decide if knowledge product is match for objective", "strict": false, "parameters": { "sort": "object", "required": [], "properties": { "valuable_on_its_own": { "sort": "object", "properties": { "is_fit": { "sort": "boolean", "description": "True if the info product is effective on it is personal, false in any other case" }, "cause": { "sort": "string", "description": "Motive why the info product is effective on it is personal or not" } }, "description": "Determines if knowledge product represents a cohesive data idea in its area. Has worth by itself and can be utilized impartial of different knowledge merchandise" } } } }
We are able to then ship the info product metadata to the LLM to judge
them. This is a few outcomes.
Buyer knowledge product: We anticipate this knowledge product to move the take a look at
for valuable_on_its_own
Consumer: { "entity": { "urn": "urn:li:dataProduct:marketing_customer360", "sort": "DATA_PRODUCT", "elements": { "dataProductProperties": { "title": "Advertising and marketing Buyer 360", "description": "Complete view of buyer knowledge for advertising and marketing.", "area": "urn:li:area:advertising and marketing" } } } } Assistant: get_data_product_fitness({ "valuable_on_its_own": { "is_fit": true, "cause": "The 'Advertising and marketing Buyer 360' knowledge product presumably supplies a complete view of buyer knowledge, which is effective for advertising and marketing functions. It may supply insights into buyer behaviors, preferences, and engagement with advertising and marketing campaigns, all of which can be utilized to enhance advertising and marketing methods." } })
Product_Id knowledge product: We anticipate this knowledge product to fail the
take a look at for valuable_on_its_own. As product id must be at all times joined
with product or buyer to have any use.
Consumer: { "entity": { "urn": "urn:li:dataProduct:product_id", "sort": "DATA_PRODUCT", "elements": { "dataProductProperties": { "title": "Product_Id", "description": "Desk representing product ids per buyer", "area": "urn:li:area:advertising and marketing" } } } } Assistant: get_data_product_fitness({ "valuable_on_its_own": { "is_fit": false, "cause": "The 'Product_Id' knowledge product will not be invaluable by itself. It merely represents product ids per buyer and lacks contextual data about what these merchandise are. For it to be significant, it might probably must be used along with different knowledge merchandise that present particulars concerning the merchandise themselves." } })
Publishing the outcomes
As soon as we’ve got the outcomes of the assertions, we are able to show them on a
dashboard. Instruments like Dashing and
Sprint are well-suited for creating light-weight
dashboards. Moreover, some knowledge catalogs supply the potential to construct customized dashboards as nicely.
Determine 3: A dashboard with inexperienced and purple knowledge merchandise, grouped by
area, with the power to drill down and examine the failed health assessments
Publicly sharing these dashboards throughout the group
can function a robust incentive for the groups to stick to the
governance requirements. In any case, nobody desires to be the crew with the
most purple marks or unfit knowledge merchandise on the dashboard.
Knowledge product customers also can use this dashboard to make knowledgeable
choices concerning the knowledge merchandise they wish to use. They’d naturally
favor knowledge merchandise which are match over these that aren’t.
Obligatory however not enough
Whereas these health capabilities are sometimes run centrally throughout the
knowledge platform, it stays the duty of the info product groups to
guarantee their knowledge merchandise move the health assessments. You will need to observe
that the first purpose of the health capabilities is to make sure adherence to
the fundamental governance requirements. Nevertheless, this doesn’t absolve the info
product groups from contemplating the precise necessities of their area
when constructing and publishing their knowledge product.
For instance, merely making certain that the entry is blocked by default is
not enough to ensure the safety of an information product containing
scientific trial knowledge. Such groups might have to implement further measures,
equivalent to differential privateness methods, to attain true knowledge
safety.
Having stated that, health capabilities are extraordinarily helpful. As an illustration,
in one among our shopper implementations, we discovered that over 80% of revealed
knowledge merchandise didn’t move fundamental health assessments when evaluated
retrospectively.
Conclusion
Now we have learnt that health capabilities are an efficient device for
governance in Knowledge Mesh. On condition that the time period “Knowledge Product” remains to be typically
interpreted in keeping with particular person comfort, health capabilities assist
implement governance requirements mutually agreed upon by the info product
groups . This, in flip, helps us to construct an ecosystem of information merchandise
which are reusable and interoperable.
Having to stick to the requirements set by health capabilities encourages
groups to construct knowledge merchandise utilizing the established “paved roads”
supplied by the platform, thereby simplifying the upkeep and
evolution of those knowledge merchandise. Publishing outcomes of health capabilities
on inner dashboards enhances the notion of information high quality and helps
construct confidence and belief amongst knowledge product customers.
We encourage you to undertake the health capabilities for knowledge merchandise
described on this article as a part of your Knowledge Mesh journey.