ProgressCounter

ProgressCounter provides counters to describe an operation's progress.

HealthcareFHIRHL7v2DICOMMedical ImagingDe-identificationInteroperabilityCloud

Properties

Name Type Description
failure string The number of units that failed in the operation.
pending string The number of units that are pending in the operation.
success string The number of units that succeeded in the operation.
View JSON Schema on GitHub

JSON Schema

ProgressCounter.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ProgressCounter",
  "description": "ProgressCounter provides counters to describe an operation's progress.",
  "properties": {
    "failure": {
      "description": "The number of units that failed in the operation.",
      "format": "int64",
      "type": "string"
    },
    "pending": {
      "description": "The number of units that are pending in the operation.",
      "format": "int64",
      "type": "string"
    },
    "success": {
      "description": "The number of units that succeeded in the operation.",
      "format": "int64",
      "type": "string"
    }
  },
  "type": "object"
}