Show / Hide Table of Contents

Class TermRelationshipSummary

Summary of a term relationship. Business term relationship between two terms in a business glossary.

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

Properties

Description

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

Detailed description of the term relationship usually defined at the time of creation.

DisplayName

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

A user-friendly display name. Does not have to be unique, and it's changeable. Avoid entering confidential information.This is the same as relationshipType for termRelationship

Key

Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

Unique term relationship key that is immutable.

Remarks

Required

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LifecycleState? LifecycleState { get; set; }
Property Value
Type Description
LifecycleState?

State of the term relationship.

ParentTermDescription

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

Description of the parent term.

ParentTermDisplayName

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

Name of the parent term.

ParentTermGlossaryKey

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

Glossary key of the parent term.

ParentTermKey

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

This relationships parent term key.

ParentTermPath

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

Full path of the parent term.

RelatedTermDescription

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

Description of the related term.

RelatedTermDisplayName

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

Name of the related term.

RelatedTermGlossaryKey

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

Glossary key of the related term.

RelatedTermKey

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

Unique id of the related term.

RelatedTermPath

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

Full path of the related term.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the term relationship was created, in the format defined by RFC3339. Example: 2019-03-25T21:10:29.600Z

Uri

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

URI to the term relationship instance in the API.

In this article
Back to top