Show / Hide Table of Contents

Class JsonFormatAttribute

The JSON file format attribute.

Inheritance
object
AbstractFormatAttribute
JsonFormatAttribute
Inherited Members
AbstractFormatAttribute.IsFilePattern
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class JsonFormatAttribute : AbstractFormatAttribute

Properties

Encoding

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

The encoding for the file.

SampleEntityData

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

Sample JSON with all fields of JSON schema specified in it for the JSON data files used in Data Flow, Data Loader or Data Preview and should be specified in Base64 encoded format. Maximum size is 2 MB.

In this article
Back to top