All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.api.services.createDatabaseService.json Maven / Gradle / Ivy

There is a newer version: 1.6.1
Show newest version
{
  "$id": "https://open-metadata.org/schema/api/services/createDatabaseService.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateDatabaseServiceRequest",
  "description": "Create Database service entity request",
  "type": "object",
  "javaType": "org.openmetadata.schema.api.services.CreateDatabaseService",
  "javaInterfaces": ["org.openmetadata.schema.CreateEntity"],

  "properties": {
    "name": {
      "description": "Name that identifies the this entity instance uniquely",
      "$ref": "../../type/basic.json#/definitions/entityName"
    },
    "displayName": {
      "description": "Display Name that identifies this database service.",
      "type": "string"
    },
    "description": {
      "description": "Description of Database entity.",
      "$ref": "../../type/basic.json#/definitions/markdown"
    },
    "tags": {
      "description": "Tags for this Database Service.",
      "type": "array",
      "items": {
        "$ref": "../../type/tagLabel.json"
      },
      "default": null
    },
    "serviceType": {
      "$ref": "../../entity/services/databaseService.json#/definitions/databaseServiceType"
    },
    "connection": {
      "$ref": "../../entity/services/databaseService.json#/definitions/databaseConnection"
    },
    "owners": {
      "description": "Owners of this database service.",
      "$ref": "../../type/entityReferenceList.json",
      "default": null
    },
    "dataProducts" : {
      "description": "List of fully qualified names of data products this entity is part of.",
      "type": "array",
      "items" : {
        "$ref" : "../../type/basic.json#/definitions/fullyQualifiedEntityName"
      }
    },
    "domain" : {
      "description": "Fully qualified name of the domain the Database Service belongs to.",
      "type": "string"
    }
  },
  "required": ["name", "serviceType"],
  "additionalProperties": false
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy