Show / Hide Table of Contents

Class FacetedSearchAggregation

Aggregation/facets on properties of data object.

Inheritance
object
FacetedSearchAggregation
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatacatalogService.Models
Assembly: OCI.DotNetSDK.Datacatalog.dll
Syntax
public class FacetedSearchAggregation

Properties

Aggregation

Declaration
[JsonProperty(PropertyName = "aggregation")]
public Dictionary<string, long> Aggregation { get; set; }
Property Value
Type Description
Dictionary<string, long>

Count of number of data objects having property.

DataType

Declaration
[JsonProperty(PropertyName = "dataType")]
public string DataType { get; set; }
Property Value
Type Description
string

Data type of object property.

PropertyType

Declaration
[JsonProperty(PropertyName = "propertyType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FacetedSearchAggregation.PropertyTypeEnum? PropertyType { get; set; }
Property Value
Type Description
FacetedSearchAggregation.PropertyTypeEnum?

Type of property that indicates if it was defined by the user or system. CUSTOM_PROPERTY is defined by the user on a data object. DEFAULT_PROPERTY is defined by the system on a data object.

Type

Declaration
[JsonProperty(PropertyName = "type")]
public string Type { get; set; }
Property Value
Type Description
string

Name of data object property

In this article
Back to top