Microsoft Purview · Arazzo Workflow

Microsoft Purview Publish a Data Product

Version 1.0.0

Create a business domain, confirm it, then publish a data product under it.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation ProtectionArazzoWorkflows

Provider

microsoft-purview

Workflows

publish-data-product
Create a business domain and publish a data product under it.
Creates a business domain, resolves its id, creates a data product that references the domain, and confirms the data product by reading it back.
4 steps inputs: apiVersion, authorization, businessDomainDescription, businessDomainName, dataProductDescription, dataProductName outputs: businessDomainId, dataProductId
1
createDomain
Create the business domain that will own the data product.
2
getDomain
Read the business domain back by its identifier to confirm it was created.
3
createDataProduct
Create a data product anchored to the new business domain.
4
getDataProduct
Read the data product back by its identifier to confirm it was stored.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Microsoft Purview Publish a Data Product
  summary: Create a business domain, confirm it, then publish a data product under it.
  description: >-
    Stands up a governed data product in the Purview unified catalog. The
    workflow creates a business domain, reads it back to capture its identifier,
    creates a data product anchored to that domain, and reads the data product
    back to confirm it was stored. Every step spells out its request inline —
    including the inline OAuth2 bearer token and the required api-version query
    parameter — so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-610.10
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-610.10
      capability_name: Data Governance Management
      spec: microsoft-purview-data-products-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: businessDomainsApi
  url: ../openapi/microsoft-purview-business-domains-api-openapi.yml
  type: openapi
- name: dataProductsApi
  url: ../openapi/microsoft-purview-data-products-api-openapi.yml
  type: openapi
workflows:
- workflowId: publish-data-product
  summary: Create a business domain and publish a data product under it.
  description: >-
    Creates a business domain, resolves its id, creates a data product that
    references the domain, and confirms the data product by reading it back.
  inputs:
    type: object
    required:
    - authorization
    - businessDomainName
    - dataProductName
    properties:
      authorization:
        type: string
        description: The OAuth2 bearer token value, e.g. "Bearer eyJ0...".
      apiVersion:
        type: string
        description: The unified catalog API version.
        default: '2024-03-01-preview'
      businessDomainName:
        type: string
        description: The name for the new business domain.
      businessDomainDescription:
        type: string
        description: An optional description for the business domain.
      dataProductName:
        type: string
        description: The name for the new data product.
      dataProductDescription:
        type: string
        description: An optional description for the data product.
  steps:
  - stepId: createDomain
    description: Create the business domain that will own the data product.
    operationId: createBusinessDomain
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: api-version
      in: query
      value: $inputs.apiVersion
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.businessDomainName
        description: $inputs.businessDomainDescription
        status: Draft
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      businessDomainId: $response.body#/id
  - stepId: getDomain
    description: Read the business domain back by its identifier to confirm it was created.
    operationId: getBusinessDomain
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: businessDomainId
      in: path
      value: $steps.createDomain.outputs.businessDomainId
    - name: api-version
      in: query
      value: $inputs.apiVersion
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      businessDomainId: $response.body#/id
  - stepId: createDataProduct
    description: Create a data product anchored to the new business domain.
    operationId: createDataProduct
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: api-version
      in: query
      value: $inputs.apiVersion
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.dataProductName
        description: $inputs.dataProductDescription
        businessDomainId: $steps.getDomain.outputs.businessDomainId
        status: Draft
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      dataProductId: $response.body#/id
  - stepId: getDataProduct
    description: Read the data product back by its identifier to confirm it was stored.
    operationId: getDataProduct
    parameters:
    - name: Authorization
      in: header
      value: $inputs.authorization
    - name: dataProductId
      in: path
      value: $steps.createDataProduct.outputs.dataProductId
    - name: api-version
      in: query
      value: $inputs.apiVersion
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      dataProductId: $response.body#/id
      status: $response.body#/status
  outputs:
    businessDomainId: $steps.getDomain.outputs.businessDomainId
    dataProductId: $steps.getDataProduct.outputs.dataProductId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/microsoft-purview-publish-data-product-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.