Properties
| Name | Type | Description |
|---|---|---|
| content | object | |
| user | object | |
| space | object | |
| title | string | |
| excerpt | string | |
| url | string | |
| resultParentContainer | object | |
| resultGlobalContainer | object | |
| breadcrumbs | array | |
| entityType | string | |
| iconCssClass | string | |
| lastModified | string | |
| friendlyLastModified | string | |
| score | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SearchResult",
"title": "SearchResult",
"required": [
"breadcrumbs",
"entityType",
"excerpt",
"iconCssClass",
"lastModified",
"title",
"url"
],
"type": "object",
"properties": {
"content": {
"$ref": "#/components/schemas/Content"
},
"user": {
"$ref": "#/components/schemas/User"
},
"space": {
"$ref": "#/components/schemas/Space"
},
"title": {
"type": "string"
},
"excerpt": {
"type": "string"
},
"url": {
"type": "string"
},
"resultParentContainer": {
"$ref": "#/components/schemas/ContainerSummary"
},
"resultGlobalContainer": {
"$ref": "#/components/schemas/ContainerSummary"
},
"breadcrumbs": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Breadcrumb"
}
},
"entityType": {
"type": "string"
},
"iconCssClass": {
"type": "string"
},
"lastModified": {
"type": "string",
"format": "date-time"
},
"friendlyLastModified": {
"type": "string"
},
"score": {
"type": "number"
}
}
}