json.schema.entity.services.mlmodelService.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/entity/services/mlmodelService.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MlModelService",
"description": "MlModel Service Entity, such as MlFlow.",
"type": "object",
"javaType": "org.openmetadata.schema.entity.services.MlModelService",
"javaInterfaces": [
"org.openmetadata.schema.EntityInterface",
"org.openmetadata.schema.ServiceEntityInterface"
],
"definitions": {
"mlModelServiceType": {
"description": "Type of MlModel service",
"type": "string",
"javaInterfaces": ["org.openmetadata.schema.EnumInterface"],
"enum": ["Mlflow", "Sklearn", "CustomMlModel", "SageMaker", "VertexAI"],
"javaEnums": [
{
"name": "Mlflow"
},
{
"name": "Sklearn"
},
{
"name": "CustomMlModel"
},
{
"name": "SageMaker"
},
{
"name": "VertexAI"
}
]
},
"mlModelConnection": {
"type": "object",
"javaType": "org.openmetadata.schema.type.MlModelConnection",
"description": "MlModel Connection.",
"javaInterfaces": [
"org.openmetadata.schema.ServiceConnectionEntityInterface"
],
"properties": {
"config": {
"mask": true,
"oneOf": [
{
"$ref": "./connections/mlmodel/mlflowConnection.json"
},
{
"$ref": "./connections/mlmodel/sklearnConnection.json"
},
{
"$ref": "./connections/mlmodel/customMlModelConnection.json"
},
{
"$ref": "./connections/mlmodel/sageMakerConnection.json"
},
{
"$ref": "./connections/mlmodel/vertexaiConnection.json"
}
]
}
},
"additionalProperties": false
}
},
"properties": {
"id": {
"description": "Unique identifier of this pipeline service instance.",
"$ref": "../../type/basic.json#/definitions/uuid"
},
"name": {
"description": "Name that identifies this pipeline service.",
"$ref": "../../type/basic.json#/definitions/entityName"
},
"fullyQualifiedName": {
"description": "FullyQualifiedName same as `name`.",
"$ref": "../../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"serviceType": {
"description": "Type of pipeline service such as Airflow or Prefect...",
"$ref": "#/definitions/mlModelServiceType"
},
"description": {
"description": "Description of a pipeline service instance.",
"type": "string"
},
"displayName": {
"description": "Display Name that identifies this pipeline service. It could be title or label from the source services.",
"type": "string"
},
"version": {
"description": "Metadata version of the entity.",
"$ref": "../../type/entityHistory.json#/definitions/entityVersion"
},
"updatedAt": {
"description": "Last update time corresponding to the new version of the entity in Unix epoch time milliseconds.",
"$ref": "../../type/basic.json#/definitions/timestamp"
},
"updatedBy": {
"description": "User who made the update.",
"type": "string"
},
"pipelines": {
"description": "References to pipelines deployed for this pipeline service to extract metadata",
"$ref": "../../type/entityReferenceList.json"
},
"connection": {
"$ref": "#/definitions/mlModelConnection"
},
"testConnectionResult": {
"description": "Last test connection results for this service",
"$ref": "connections/testConnectionResult.json"
},
"tags": {
"description": "Tags for this MlModel Service.",
"type": "array",
"items": {
"$ref": "../../type/tagLabel.json"
},
"default": []
},
"owners": {
"description": "Owners of this pipeline service.",
"$ref": "../../type/entityReferenceList.json"
},
"href": {
"description": "Link to the resource corresponding to this pipeline service.",
"$ref": "../../type/basic.json#/definitions/href"
},
"changeDescription": {
"description": "Change that lead to this version of the entity.",
"$ref": "../../type/entityHistory.json#/definitions/changeDescription"
},
"deleted": {
"description": "When `true` indicates the entity has been soft deleted.",
"type": "boolean",
"default": false
},
"dataProducts" : {
"description": "List of data products this entity is part of.",
"$ref" : "../../type/entityReferenceList.json"
},
"domain" : {
"description": "Domain the MLModel service belongs to.",
"$ref": "../../type/entityReference.json"
}
},
"required": ["id", "name", "serviceType"],
"additionalProperties": false
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy