Class FhirFileStorageMetadata
Provides basic information for a FHIR resource and storage hierarchy/path.
Inheritance
FhirFileStorageMetadata
Assembly: Monai.Deploy.InformaticsGateway.Api.dll
public sealed class FhirFileStorageMetadata : FileStorageMetadata, IEquatable<FileStorageMetadata>, IEquatable<FhirFileStorageMetadata>
Constructors
|
Improve this Doc
View Source
Declaration
[JsonConstructor]
public FhirFileStorageMetadata()
|
Improve this Doc
View Source
Declaration
public FhirFileStorageMetadata(string transactionId, string resourceType, string resourceId, FhirStorageFormat fhirFileFormat, DataService dataType, string dataOrigin)
Parameters
Fields
|
Improve this Doc
View Source
Declaration
public const string FhirSubDirectoryName = "ehr"
Field Value
|
Improve this Doc
View Source
Declaration
public const string JsonFilExtension = ".json"
Field Value
|
Improve this Doc
View Source
Declaration
public const string XmlFileExtension = ".xml"
Field Value
Properties
|
Improve this Doc
View Source
Gets the root directory name
Declaration
[JsonIgnore]
public override string DataTypeDirectoryName { get; }
Property Value
Overrides
|
Improve this Doc
View Source
Gets the storage object associated.
Declaration
[JsonPropertyName("file")]
public override StorageObjectMetadata File { get; set; }
Property Value
Overrides
|
Improve this Doc
View Source
Gets or set the FHIR resource ID.
Declaration
[JsonPropertyName("resourceId")]
public string ResourceId { get; set; }
Property Value
|
Improve this Doc
View Source
Gets or set the FHIR resource type.
Declaration
[JsonPropertyName("resourceType")]
public string ResourceType { get; set; }
Property Value
Implements