SchemaPackageResponse

data class SchemaPackageResponse(val ignoreMinOccurs: Boolean, val schemas: List<Hl7SchemaConfigResponse>, val schematizedParsingType: String, val types: List<Hl7TypesConfigResponse>, val unexpectedSegmentHandling: String)

A schema package contains a set of schemas and type definitions.

Constructors

Link copied to clipboard
fun SchemaPackageResponse(ignoreMinOccurs: Boolean, schemas: List<Hl7SchemaConfigResponse>, schematizedParsingType: String, types: List<Hl7TypesConfigResponse>, unexpectedSegmentHandling: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Flag to ignore all min_occurs restrictions in the schema. This means that incoming messages can omit any group, segment, field, component, or subcomponent.

Link copied to clipboard

Schema configs that are layered based on their VersionSources that match the incoming message. Schema configs present in higher indices override those in lower indices with the same message type and trigger event if their VersionSources all match an incoming message.

Link copied to clipboard

Determines how messages that fail to parse are handled.

Link copied to clipboard

Schema type definitions that are layered based on their VersionSources that match the incoming message. Type definitions present in higher indices override those in lower indices with the same type name if their VersionSources all match an incoming message.

Link copied to clipboard

Determines how unexpected segments (segments not matched to the schema) are handled.