OpenAI assets
The OpenAI integration in Collibra Platform uses the following asset types. The asset types are available out of the box in Collibra.
To use the OpenAI integration, you need Collibra Platform 2026.09 or newer.
You can configure Edge connections and capabilities without an active AI Governance license. However, AI Governance must be enabled to harvest AI model metadata, ingest corresponding AI assets in Data Catalog, and access the dashboards and features necessary to visualize and govern your AI landscape.
| Asset type | Description |
|---|---|
|
AI Base Model
|
Represents foundational business concepts that define the model’s purpose and governing principles in your OpenAI project. |
|
AI Model Version
|
A specific, immutable implementation of the model logic and parameters that serves as the audited "raw" model version before it is activated. |
|
AI Model Deployment
|
The operational instance where a model version is assigned computational resources to execute and generate real-time outputs. |
|
AI Endpoint
|
The access point for external systems that provides a consistent interface while allowing for the seamless exchange of underlying deployments. |
|
Vendor
|
A provider of goods or services. |
OpenAI diagram view
For information on the data that is integrated from OpenAI, go to Integrated OpenAI data.
Steps
- Open the asset page.
- Click the
Diagram tab.
The diagram is shown in the default diagram view. - Click
to add a new view. - Select the Text option below the diagram view name.
The diagram view text editor is shown. - Copy the code from the Show JSON code section below and paste it in the diagram view text editor.
- Click Save.
- Edit the name and description of the diagram view as needed.
{
"nodes": [
{
"id": "Vendor",
"type": {
"id": "00000000-0000-0000-0000-000000031403"
}
},
{
"id": "AI Base Model",
"type": {
"id": "00000000-0000-0000-0000-000000031422"
}
},
{
"id": "AI Model Version",
"type": {
"id": "00000000-0000-0000-0000-000000031402"
}
},
{
"id": "AI Model Deployment",
"type": {
"id": "00000000-0000-0000-0000-000000031500"
}
},
{
"id": "AI Endpoint",
"type": {
"id": "00000000-0000-0000-0000-000000031501"
}
}
],
"edges": [
{
"from": "AI Base Model",
"to": "Vendor",
"label": "",
"style": "arrow",
"type": {
"id": "00000000-0000-0000-0000-000000077005"
},
"roleDirection": true
},
{
"from": "AI Base Model",
"to": "AI Model Version",
"label": "",
"style": "arrow",
"type": {
"id": "00000000-0000-0000-0000-000000077000"
},
"roleDirection": true
},
{
"from": "AI Model Version",
"to": "AI Model Deployment",
"label": "",
"style": "arrow",
"type": {
"id": "00000000-0000-0000-0000-000000077001"
},
"roleDirection": true
},
{
"from": "AI Model Deployment",
"to": "AI Endpoint",
"label": "",
"style": "arrow",
"type": {
"id": "00000000-0000-0000-0000-000000077006"
},
"roleDirection": true
}
],
"showOverview": false,
"enableFilters": true,
"showLabels": true,
"showFields": true,
"showLegend": false,
"showPreview": true,
"visitStrategy": "directed",
"layout": "HierarchyLeftRight",
"maxNodeLabelLength": 50,
"maxEdgeLabelLength": 30,
"layoutOptions": {
"compactGroups": false,
"componentArrangementPolicy": "topmost",
"edgeBends": true,
"edgeBundling": true,
"edgeToEdgeDistance": 5,
"minimumLayerDistance": "auto",
"nodeToEdgeDistance": 5,
"orthogonalRouting": true,
"preciseNodeHeightCalculation": true,
"recursiveGroupLayering": true,
"separateLayers": true,
"webWorkers": true,
"nodePlacer": {
"barycenterMode": true,
"breakLongSegments": true,
"groupCompactionStrategy": "none",
"nodeCompaction": false,
"straightenEdges": true
}
}
}