Microsoft Purview · Schema
SearchResultValue
ComplianceData CatalogData ClassificationData GovernanceData Loss PreventionInformation Protection
Properties
| Name | Type | Description |
|---|---|---|
| searchScore | number | |
| searchHighlights | object | |
| objectType | string | |
| createTime | integer | |
| updateTime | integer | |
| id | string | |
| name | string | |
| qualifiedName | string | |
| entityType | string | |
| description | string | |
| classification | array | |
| label | array | |
| term | array | |
| owner | string | |
| assetType | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SearchResultValue",
"title": "SearchResultValue",
"type": "object",
"properties": {
"searchScore": {
"type": "number",
"format": "float"
},
"searchHighlights": {
"type": "object"
},
"objectType": {
"type": "string"
},
"createTime": {
"type": "integer",
"format": "int64"
},
"updateTime": {
"type": "integer",
"format": "int64"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"qualifiedName": {
"type": "string"
},
"entityType": {
"type": "string"
},
"description": {
"type": "string"
},
"classification": {
"type": "array",
"items": {
"type": "string"
}
},
"label": {
"type": "array",
"items": {
"type": "string"
}
},
"term": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TermSearchResultValue"
}
},
"owner": {
"type": "string"
},
"assetType": {
"type": "array",
"items": {
"type": "string"
}
}
}
}