All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
json.schema.api.data.createStoredProcedure.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/api/data/createStoredProcedure.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CreateStoredProcedureRequest",
"description": "Create Stored Procedure Request",
"type": "object",
"javaType": "org.openmetadata.schema.api.data.CreateStoredProcedure",
"javaInterfaces": [
"org.openmetadata.schema.CreateEntity"
],
"properties": {
"name": {
"description": "Name of a Stored Procedure.",
"$ref": "../../type/basic.json#/definitions/entityName"
},
"displayName": {
"description": "Display Name that identifies this Stored Procedure.",
"type": "string"
},
"description": {
"description": "Description of the Stored Procedure.",
"$ref": "../../type/basic.json#/definitions/markdown"
},
"owners": {
"description": "Owners of this entity",
"$ref": "../../type/entityReferenceList.json",
"default": null
},
"tags": {
"description": "Tags for this StoredProcedure.",
"type": "array",
"items": {
"$ref": "../../type/tagLabel.json"
},
"default": null
},
"storedProcedureCode": {
"description": "SQL Query definition.",
"$ref": "../../entity/data/storedProcedure.json#/definitions/storedProcedureCode"
},
"databaseSchema": {
"description": "Link to the database schema fully qualified name where this stored procedure 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"
},
"dataProducts" : {
"description": "List of fully qualified names of data products this entity is part of.",
"type": "array",
"items" : {
"$ref" : "../../type/basic.json#/definitions/fullyQualifiedEntityName"
}
},
"sourceUrl": {
"description": "Source URL of database schema.",
"$ref": "../../type/basic.json#/definitions/sourceUrl"
},
"domain" : {
"description": "Fully qualified name of the domain the Stored Procedure belongs to.",
"type": "string"
},
"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", "storedProcedureCode"],
"additionalProperties": false
}