
json.schema.api.data.createDatabaseSchema.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/api/data/createDatabaseSchema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CreateDatabaseSchemaRequest",
"description": "Create Database Schema entity request",
"type": "object",
"javaType": "org.openmetadata.catalog.api.data.CreateDatabaseSchema",
"javaInterfaces": ["org.openmetadata.core.entity.interfaces.CreateEntity"],
"properties": {
"name": {
"description": "Name that identifies this database schema instance uniquely.",
"$ref": "../../type/basic.json#/definitions/entityName"
},
"displayName": {
"description": "Display Name that identifies this database schema.",
"type": "string"
},
"description": {
"description": "Description of the schema instance. What it has and how to use it.",
"$ref": "../../type/basic.json#/definitions/markdown"
},
"owner": {
"description": "Owner of this schema",
"$ref": "../../type/entityReference.json"
},
"database": {
"description": "Link to the database where this schema is hosted in",
"$ref": "../../type/entityReference.json"
}
},
"required": ["name", "database"],
"additionalProperties": false
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy