json.schema.api.data.createDashboard.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/api/data/createDashboard.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CreateDashboardRequest",
"description": "Create Dashboard entity request",
"type": "object",
"javaType": "org.openmetadata.schema.api.data.CreateDashboard",
"javaInterfaces": ["org.openmetadata.schema.CreateEntity"],
"properties": {
"name": {
"description": "Name that identifies this dashboard.",
"$ref": "../../type/basic.json#/definitions/entityName"
},
"displayName": {
"description": "Display Name that identifies this Dashboard. It could be title or label from the source services",
"type": "string"
},
"description": {
"description": "Description of the database instance. What it has and how to use it.",
"$ref": "../../type/basic.json#/definitions/markdown"
},
"dashboardType": {
"$ref": "../../entity/data/dashboard.json#/definitions/dashboardType"
},
"sourceUrl": {
"description": "Dashboard URL suffix from its service.",
"$ref": "../../type/basic.json#/definitions/sourceUrl"
},
"project": {
"description": "Name of the project / workspace / collection in which the dashboard is contained",
"type": "string"
},
"charts": {
"description": "List of fully qualified name of charts included in this Dashboard.",
"type": "array",
"items": {
"$ref": "../../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"default": null
},
"dataModels": {
"description": "List of fully qualified name of data models included in this Dashboard.",
"type": "array",
"items": {
"$ref": "../../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"default": null
},
"tags": {
"description": "Tags for this dashboard",
"type": "array",
"items": {
"$ref": "../../type/tagLabel.json"
},
"default": null
},
"owners": {
"description": "Owners of this dashboard",
"$ref": "../../type/entityReferenceList.json",
"default": null
},
"service": {
"description": "Link to the dashboard service fully qualified name where this dashboard is hosted in",
"$ref": "../../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"extension": {
"description": "Entity extension data with custom attributes added to the entity.",
"$ref": "../../type/basic.json#/definitions/entityExtension"
},
"domain" : {
"description": "Fully qualified name of the domain the Dashboard belongs to.",
"$ref" : "../../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"dataProducts" : {
"description": "List of fully qualified names of data products this entity is part of.",
"type": "array",
"items" : {
"$ref" : "../../type/basic.json#/definitions/fullyQualifiedEntityName"
}
},
"lifeCycle": {
"description": "Life Cycle of the entity",
"$ref": "../../type/lifeCycle.json"
},
"sourceHash": {
"description": "Source hash of the entity",
"type": "string",
"minLength": 1,
"maxLength": 32
}
},
"required": ["name", "service"],
"additionalProperties": false
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy