Show / Hide Table of Contents

Class SchemaConfig

Configuration for the FHIR BigQuery schema. Determines how the server generates the schema.

Inheritance
System.Object
SchemaConfig
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudHealthcare.v1.Data
Assembly: Google.Apis.CloudHealthcare.v1.dll
Syntax
public class SchemaConfig : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

RecursiveStructureDepth

The depth for all recursive structures in the output analytics schema. For example, concept in the CodeSystem resource is a recursive structure; when the depth is 2, the CodeSystem table will have a column called concept.concept but not concept.concept.concept. If not specified or set to 0, the server will use the default value 2. The maximum depth allowed is 5.

Declaration
[JsonProperty("recursiveStructureDepth")]
public virtual long? RecursiveStructureDepth { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

SchemaType

Specifies the output schema type.

Declaration
[JsonProperty("schemaType")]
public virtual string SchemaType { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top