json.schema.api.data.createSearchIndex.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/api/data/createSearchIndex.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CreateSearchIndexRequest",
"description": "Create a SearchIndex entity request",
"type": "object",
"javaType": "org.openmetadata.schema.api.data.CreateSearchIndex",
"javaInterfaces": ["org.openmetadata.schema.CreateEntity"],
"properties": {
"name": {
"description": "Name that identifies this SearchIndex instance uniquely.",
"$ref": "../../type/basic.json#/definitions/entityName"
},
"displayName": {
"description": "Display Name that identifies this SearchIndex.",
"type": "string"
},
"description": {
"description": "Description of the SearchIndex instance. What it has and how to use it.",
"$ref": "../../type/basic.json#/definitions/markdown"
},
"service": {
"description": "Fully qualified name of the search service where this searchIndex is hosted in",
"$ref": "../../type/basic.json#/definitions/fullyQualifiedEntityName"
},
"fields": {
"description": "Fields in this SearchIndex.",
"type": "array",
"items": {
"$ref": "../../entity/data/searchIndex.json#/definitions/searchIndexField"
},
"default": null
},
"searchIndexSettings": {
"description": "Contains key/value pair of searchIndex settings.",
"$ref": "../../entity/data/searchIndex.json#/definitions/searchIndexSettings"
},
"owners": {
"description": "Owners of this SearchIndex",
"$ref": "../../type/entityReferenceList.json",
"default": null
},
"tags": {
"description": "Tags for this SearchIndex",
"type": "array",
"items": {
"$ref": "../../type/tagLabel.json"
},
"default": null
},
"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 SearchIndex belongs to.",
"type": "string",
"$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", "fields"],
"additionalProperties": false
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy