Show / Hide Table of Contents

Class FacetedSearchStringFilterRequest

Object with string filter criteria

Inheritance
object
FacetedSearchStringFilterRequest
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 FacetedSearchStringFilterRequest

Properties

Field

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

String/boolean/numerical field name that needs to be filtered by. Acceptable field names: CatalogType, AttributeType, FolderType, DataAssetType, CreatedBy, UpdatedBy, Term, Tag, DataAssetName, LifeCycleState.

Values

Declaration
[JsonProperty(PropertyName = "values")]
public List<string> Values { get; set; }
Property Value
Type Description
List<string>

Array of values that the search results needs to be filtered by. Acceptable values for field 'CatalogType': DataAsset, Folder, DataEntity, Attribute, Term, Category, Glossary, Pattern, Job, Schedule, CustomProperty. For other fields, acceptable values can be derived by inspecting the data object.

In this article
Back to top