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

json.schema.api.data.createChart.json Maven / Gradle / Ivy

{
  "$id": "https://open-metadata.org/schema/api/data/createChart.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateChartRequest",
  "description": "Create Chart entity request",
  "type": "object",
  "javaType": "org.openmetadata.catalog.api.data.CreateChart",
  "javaInterfaces": ["org.openmetadata.core.entity.interfaces.CreateEntity"],
  "properties": {
    "name": {
      "description": "Name that identifies this Chart.",
      "$ref": "../../type/basic.json#/definitions/entityName"
    },
    "displayName": {
      "description": "Display Name that identifies this Chart. It could be title or label from the source services",
      "type": "string"
    },
    "description": {
      "description": "Description of the chart instance. What it has and how to use it.",
      "$ref": "../../type/basic.json#/definitions/markdown"
    },
    "chartType": {
      "$ref": "../../entity/data/chart.json#/definitions/chartType"
    },
    "chartUrl": {
      "description": "Chart URL suffix from its service.",
      "type": "string"
    },
    "tables": {
      "description": "Link to tables used in this chart.",
      "$ref": "../../type/entityReference.json#/definitions/entityReferenceList"
    },
    "tags": {
      "description": "Tags for this chart",
      "type": "array",
      "items": {
        "$ref": "../../type/tagLabel.json"
      },
      "default": null
    },
    "owner": {
      "description": "Owner of this chart",
      "$ref": "../../type/entityReference.json"
    },
    "service": {
      "description": "Link to the chart service where this chart is hosted in",
      "$ref": "../../type/entityReference.json"
    }
  },
  "required": ["name", "service"],
  "additionalProperties": false
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy