Class ValidationConfig
Contains the configuration for FHIR profiles and validation.
Implements
Inherited Members
Namespace: Google.Apis.CloudHealthcare.v1.Data
Assembly: Google.Apis.CloudHealthcare.v1.dll
Syntax
public class ValidationConfig : IDirectResponseSchema
Properties
DisableFhirpathValidation
Optional. Whether to disable FHIRPath validation for incoming resources. The default value is false. Set this to true to disable checking incoming resources for conformance against FHIRPath requirement defined in the FHIR specification. This property only affects resource types that do not have profiles configured for them, any rules in enabled implementation guides will still be enforced.
Declaration
[JsonProperty("disableFhirpathValidation")]
public virtual bool? DisableFhirpathValidation { get; set; }
Property Value
Type | Description |
---|---|
bool? |
DisableProfileValidation
Optional. Whether to disable profile validation for this FHIR store. The default value is false. Set this to true to disable checking incoming resources for conformance against structure definitions in this FHIR store.
Declaration
[JsonProperty("disableProfileValidation")]
public virtual bool? DisableProfileValidation { get; set; }
Property Value
Type | Description |
---|---|
bool? |
DisableReferenceTypeValidation
Optional. Whether to disable reference type validation for incoming resources. The default value is false. Set this to true to disable checking incoming resources for conformance against reference type requirement defined in the FHIR specification. This property only affects resource types that do not have profiles configured for them, any rules in enabled implementation guides will still be enforced.
Declaration
[JsonProperty("disableReferenceTypeValidation")]
public virtual bool? DisableReferenceTypeValidation { get; set; }
Property Value
Type | Description |
---|---|
bool? |
DisableRequiredFieldValidation
Optional. Whether to disable required fields validation for incoming resources. The default value is false. Set this to true to disable checking incoming resources for conformance against required fields requirement defined in the FHIR specification. This property only affects resource types that do not have profiles configured for them, any rules in enabled implementation guides will still be enforced.
Declaration
[JsonProperty("disableRequiredFieldValidation")]
public virtual bool? DisableRequiredFieldValidation { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EnabledImplementationGuides
Optional. A list of implementation guide URLs in this FHIR store that are used to configure the profiles to
use for validation. For example, to use the US Core profiles for validation, set
enabled_implementation_guides
to ["http://hl7.org/fhir/us/core/ImplementationGuide/ig"]
. If
enabled_implementation_guides
is empty or omitted, then incoming resources are only required to conform to
the base FHIR profiles. Otherwise, a resource must conform to at least one profile listed in the global
property of one of the enabled ImplementationGuides. The Cloud Healthcare API does not currently enforce all
of the rules in a StructureDefinition. The following rules are supported: - min/max - minValue/maxValue -
maxLength - type - fixed[x] - pattern[x] on simple types - slicing, when using "value" as the discriminator
type When a URL cannot be resolved (for example, in a type assertion), the server does not return an error.
Declaration
[JsonProperty("enabledImplementationGuides")]
public virtual IList<string> EnabledImplementationGuides { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |