FhirStoreMetric

Count of resources and total storage size by type for a given FHIR store.

HealthcareFHIRHL7v2DICOMMedical ImagingDe-identificationInteroperabilityCloud

Properties

Name Type Description
count string The total count of FHIR resources in the store of this resource type.
resourceType string The FHIR resource type this metric applies to.
structuredStorageSizeBytes string The total amount of structured storage used by FHIR resources of this resource type in the store.
View JSON Schema on GitHub

JSON Schema

FhirStoreMetric.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FhirStoreMetric",
  "description": "Count of resources and total storage size by type for a given FHIR store.",
  "properties": {
    "count": {
      "description": "The total count of FHIR resources in the store of this resource type.",
      "format": "int64",
      "type": "string"
    },
    "resourceType": {
      "description": "The FHIR resource type this metric applies to.",
      "type": "string"
    },
    "structuredStorageSizeBytes": {
      "description": "The total amount of structured storage used by FHIR resources of this resource type in the store.",
      "format": "int64",
      "type": "string"
    }
  },
  "type": "object"
}