%XML.Adaptor
abstract class %XML.Adaptor
For details on using this class, see Projecting Objects to XML.
Subclasses of %XML.Adaptor are said to be "XML enabled" and may be projected as either pure XML or as the return value or arguments of a SOAP method.
The methods that are generated for XML enabled classes are specified here. The class parameters that control the generation of these methods are defined here.
The property parameters that control the generation of code for each property of an XML enabled class are defined in %XML.PropertyParameters.
Method Inventory
- XMLDTD()
- XMLExport()
- XMLExportToStream()
- XMLExportToString()
- XMLNew()
- XMLSchema()
- XMLSchemaNamespace()
- XMLSchemaType()
Parameters
NOTE: Direct use of XMLExport method does not support the ATTRIBUTEQUALIFIED The export must be done using %XML.Writer or SOAP support.
NOTE: Direct use of XMLExport method does not support the ELEMENTQUALIFIED. The export must be done using %XML.Writer or SOAP support.
SUMMARY indicates that only the summary properties of the referenced class are used to represent the reference. SUMMARY is the default. Note that by default all properties of the referenced class are in the summary.
COMPLETE indicates that all properties of the referenced class are used to represent the reference.
ID indicates that the id of a persistent or serial class is used to represent the reference.
OID indicates that the oid of a persistent or serial class is used to represent the reference. The form of the oid will be classname,id.
GUID indicates the GUID of a persistent class is used to represent the reference.
If XMLFORMAT="Literal", then only support for literal format import and export is generated.
If XMLFORMAT="Encoded", then only support for SOAP encoded format import and export is generated.
The default is to generate support for both literal and encoded format.
If XMLIGNORENULL is set = 1, then both missing tags in the XML and empty strings are input as "", and both "" and $c(0) are output as empty tags (i.e. <tag></tag>).
If XMLIGNORENULL is set = "inputonly", then both missing tags in the XML and empty strings are input as "". Output of "" and $c(0) are for XMLIGNORENULL = 0: $c(0) is output as an empty tag (i.e. <tag></tag>) and "" is output as no tag.
If XMLIGNORENULL = "runtime" (runtime is not case sensitive), then the behavior of XMLIGNORENULL is determined by the format parameter of XMLExport, XMLImport and %XML.Reader.OpenFile. The default behavior for XMLIGNORENULL="runtime is the same as XMLIGNORENULL=0. Adding "ignorenull" to the format argument changes the behavior to that of XMLIGNORENULL=1. "ignorenull" shoud be separated by a comma from literal/encoded part of the format. Example values for format are "", ",ignorenull", "literal,ignorenull" and "encoded,ignorenull". Note that "inputonly" is equivalent to using ,ignorenull for XMLExport and not for %XML.Reader.
The default of XMLNILNOOBJECT = 0 will always create an object for an element with xsi:nil="true".
If XMLNILNOOBJECT = 1, then elements with xsi:nil="true" and no attributes specified will be skipped, i.e. the value of the property will remain "".
The default XMLTYPE is used when naming and referencing this type in a schema and the schema context did not provide an XML type name.
Methods
top is the optional tag to be used for the top-level tag.
format is the parameter formatting type. DTDs may only be generated for the default "literal" format.
input=true means that the DTD for the input XML will be generated, otherwise the DTD for the output XML will be generated. The default is input=false. Normally, this argument is not relevant since the all properties of a class participate in input and output.
The dtdlist argument is used internally to track DTD generation for referenced objects.
IMPORTANT: The XMLExport method does not directly support many of the XML parameters. If you want control of the format of the export, do not use this method. Instead create an instance of %XML.Writer and use its OutputToDevice() method.
The supported arguments for XMLExport are:
top is the optional tag to be used for the top-level tag.
format is the parameter formatting type ("literal", "encoded" or "encoded12") to be used for this object. The default value for format is "" which currently is the same as the "literal" formatting, but may be a unique encoding in the future.
**********
**********
All the following arguments are for internal use only and may change
**********
**********
namespaces is the %XML.Namespaces class instance for this XML document.
Instead of namespaces typesPrefix is still supported for compatability and
is the optional namespace prefix to be used for all element tags and ObjectScript types.
attrs is a multidimensional array of extra attributes for the top node:
attrs is number of attributes
attrs(i) is name of ith attribute
attrs(i,0) is value of the ith attribute
If the createId is not "", then an id field with this id value is created.
If the typeAttr is not "", then add a type attribute to the top element if the this class's name is not typeAttr.
The idlist and oreflist arguments are used internally to track deferred object export and should normally not be specified.
initialIndent is the initial indentation for use when the format is indent.
local specifies if the element is treated as a local element. A global element is specified by a false value of local which can be either 0 to represent a global element in the namespace specified by the namespace argument or a string which is the namespace to which the global element belongs. The default for local is 0.
If the class is to be exported as an XOP package for use by SOAP MTOM, mimeAttachments is the MIME part which contains the list of MIME parts for all the attachments in the XOP package.
IMPORTANT: The XMLExportToStream method does not directly support many of the XML parameters. If you want control of the format of the export, do not use this method. Instead create an instance of %XML.Writer and use its OutputToStream() method.
The supported arguments for XMLExportToStream are:
export is the exported stream. If export is the oref of a stream, the XML document will be written to this existing stream at the current position. If export is "", then a new %FileCharacterStream will be created to contain the XML document and its oref returned. In this case, export must be passed by reference.
top is the optional tag to be used for the top-level tag.
format is the parameter formatting type ("literal", "encoded" or "encoded12") to be used for this object. The default value for format is "" which currently is the same as the "literal" formatting, but may be a unique encoding in the future.
**********
**********
All the following arguments are for internal use only and may change
**********
**********
namespaces is the %XML.Namespaces class instance for this XML document.
Instead of namespaces typesPrefix is still supported for compatability and
is the optional namespace prefix to be used for all element tags and ObjectScript types.
attrs is a multidimensional array of extra attributes for the top node:
attrs is number of attributes
attrs(i) is name of ith attribute
attrs(i,0) is value of the ith attribute
If the createId is not "", then an id field with this id value is created.
If the typeAttr is not "", then add a type attribute to the top element if the this class's name is not typeAttr.
The idlist and oreflist arguments are used internally to track deferred object export and should normally not be specified.
initialIndent is the initial indentation for use when the format is indent.
IMPORTANT: The XMLExportToString method does not directly support many of the XML parameters. If you want control of the format of the export, do not use this method. Instead create an instance of %XML.Writer and use its OutputToString() method.
The supported arguments for XMLExportToString are:
top is the optional tag to be used for the top-level tag.
format is the parameter formatting type ("literal", "encoded" or "encoded12") to be used for this object. The default value for format is "" which currently is the same as the "literal" formatting, but may be a unique encoding in the future.
**********
**********
All the following arguments are for internal use only and may change
**********
**********
namespaces is the %XML.Namespaces class instance for this XML document.
Instead of namespaces typesPrefix is still supported for compatability and
is the optional namespace prefix to be used for all element tags and ObjectScript types.
attrs is a multidimensional array of extra attributes for the top node:
attrs is number of attributes
attrs(i) is name of ith attribute
attrs(i,0) is value of the ith attribute
If the createId is not "", then an id field with this id value is created.
If the typeAttr is not "", then add a type attribute to the top element if the this class's name is not typeAttr.
The idlist and oreflist arguments are used internally to track deferred object export and should normally not be specified.
initialIndent is the initial indentation for use when the format is indent.
local specifies if the element is treated as a local element. Default is 0 (false).
You may override this method to do custom processing (such as initializing the object instance) before returning an instance of this class. However, this method should not be called directly from user code.
Arguments:
document is the document with %XML.Node or macros in %xmlDOM.inc.
nodeId is a node id of the node which defines this object. An %XML.Node object may be obtained for this node using document.GetNode(nodeId)containerOref is the containing object instance when called from XMLImport and is "" when called from %XML.Reader for Correlate'd objects.
top is the optional tag to be used for the top-level tag.
format is the parameter formatting type ("literal", "encoded" or "encoded12") to be used for this object. In addition, the value "element" is the same as "literal" formatting with an element at the top level. The default value for format is "" which currently is the same as the "literal" formatting, but may be a unique encoding in the future.
namespacePrefix is the optional namespace prefix to be used for the namespace in which this schema is generated.
input=true means that the schema for the input XML will be generated, otherwise the schema for the output XML will be generated. The default is input=false. Normally, this argument is not relevant since the all properties of a class participate in input and output.
refOnly=true means that only the portions of the schema for referenced types are generated. The schema for this class is not generated. Default is refOnly=false that generates the entire schema.
The schema argument is used internally to track schema generation for referenced objects.
schemaInstance is the %XML.Schema class instance that is used to build the schema.
node is the %XML.Node class instance for the schema that includes this class.
top is the optional override of the type name.
format is the parameter formatting type ("literal", "encoded" or "encoded12") to be used for this object. In addition, the value "element" is the same as "literal" formatting with an element at the top level. The default value for format is "" which currently is the same as the "literal" formatting, but may be a unique encoding in the future.
summary=true if summary type is to be created.
input=true means that the schema for the input XML will be generated, otherwise the schema for the output XML will be generated. The default is input=false. Normally, this argument is not relevant since the all properties of a class participate in input and output.
refOnly=true means that only the portions of the schema for referenced types are generated. The schema for this class is not generated. Default is refOnly=false that generates the entire schema.
Subclasses
- %CSP.Mgr.GatewayInformation
- %CSP.Mgr.GatewaySystemStatus
- %CSP.Mgr.Helper.AlternativeServer
- %CSP.Mgr.Helper.ApplicationPath
- %CSP.Mgr.Helper.CacheServer
- %CSP.Mgr.Helper.CachedForms
- %CSP.Mgr.Helper.Connection
- %CSP.Mgr.Helper.Form
- %CSP.Monitor.Matrix
- %CSP.Util.Action
- %CSP.Util.Condition
- %CSP.Util.FieldDefinition
- %CSP.Util.FormButton
- %CSP.Util.HTMLMeter
- %CSP.Util.Link
- %CSP.Util.Menu
- %CSP.Util.MenuItem
- %CSP.Util.PageInstance
- %CSP.Util.Pane
- %DeepSee.Connector.abstractNode
- %DeepSee.CubeManager.RegistryMap
- %DeepSee.CubeManager.RegistryMapCube
- %DeepSee.CubeManager.RegistryMapGroup
- %DeepSee.CubeManager.RegistryMapSubjectArea
- %DeepSee.Dashboard.CalculatedMember
- %DeepSee.Dashboard.ChartDataSeries
- %DeepSee.Dashboard.Control
- %DeepSee.Dashboard.DataProperty
- %DeepSee.Dashboard.PivotCondition
- %DeepSee.Dashboard.PivotLevel
- %DeepSee.Dashboard.Widget
- %DeepSee.Diagnostic.MDXUtils
- %DeepSee.ListingGroupDefinition
- %DeepSee.Model.SubjectArea.abstractNode
- %DeepSee.Model.abstractNode
- %DeepSee.PMML.Definition.abstractNode
- %DeepSee.QualityMeasure.QualityMeasure
- %DeepSee.Query.node
- %DeepSee.Report.DataView
- %DeepSee.Report.DataViewField
- %DeepSee.Report.Model.Document
- %DeepSee.Report.Model.Node
- %DeepSee.SubjectArea
- %DeepSee.TestSpec
- %DeepSee.UserLibrary.Folder
- %DeepSee.UserLibrary.FolderItem
- %DeepSee.UserLibrary.UserData
- %DeepSee.UserLibrary.WorksheetAxis
- %DeepSee.UserLibrary.WorksheetCell
- %DeepSee.UserPortal.Data.Alert
- %DeepSee.UserPortal.Data.User
- %DeepSee.XMLA.DataSourcesRestrictions
- %DeepSee.XMLA.EnumerationsRestrictions
- %DeepSee.XMLA.ExecuteCommand
- %DeepSee.XMLA.KeywordsRestrictions
- %DeepSee.XMLA.KeywordsRowset
- %DeepSee.XMLA.LiteralsRestrictions
- %DeepSee.XMLA.Properties
- %DeepSee.XMLA.PropertiesRestrictions
- %DeepSee.XMLA.PropertiesRowset
- %DeepSee.XMLA.PropertyList
- %DeepSee.XMLA.SchemasRestrictions
- %DeepSee.XMLA.SchemasRowset
- %DeepSee.extensions.modelling.conf.Attributes
- %DeepSee.extensions.modelling.conf.Model
- %DeepSee.extensions.modelling.conf.Operation
- %DeepSee.extensions.modelling.conf.Operator
- %DeepSee.extensions.modelling.conf.Sort
- %Installer.Component
- %JSON.Mapping
- %JSON.MappingProperty
- %Library.SQLConnection
- %MFT.FolderContents
- %MFT.ItemInfo
- %MFT.UserInfo
- %MFT.UserList
- %Monitor.Manager
- %Net.MIMESerialPart
- %Net.OpenAM.tns.AccessDenied
- %Net.OpenAM.tns.DuplicateObject
- %Net.OpenAM.tns.GeneralFailure
- %Net.OpenAM.tns.InvalidCredentials
- %Net.OpenAM.tns.InvalidPassword
- %Net.OpenAM.tns.InvalidToken
- %Net.OpenAM.tns.NeedMoreCredentials
- %Net.OpenAM.tns.ObjectNotFound
- %Net.OpenAM.tns.TokenExpired
- %Net.OpenAM.tns.UserNotFound
- %Net.OpenAM.tns.attribute
- %Net.OpenAM.tns.identityDetails
- %Net.OpenAM.tns.token
- %Net.OpenAM.tns.userDetails
- %SAML.Action
- %SAML.AssertionReference
- %SAML.Attribute
- %SAML.AttributeValue
- %SAML.AttributeValueAbstract
- %SAML.AttributeValueElement
- %SAML.AuthnContext
- %SAML.AuthnContextDecl
- %SAML.AuthnContextDeclRef
- %SAML.BaseID
- %SAML.Condition
- %SAML.Conditions
- %SAML.EncryptedElement
- %SAML.Evidence
- %SAML.Statement
- %SAML.Subject
- %SAML.SubjectConfirmation
- %SAML.SubjectConfirmationData
- %SAML.SubjectLocality
- %SOAP.Descriptor
- %SOAP.Fault
- %SOAP.Fault12
- %SOAP.Fault12.Code
- %SOAP.Fault12.Text
- %SOAP.Header
- %SOAP.PolicyReference
- %SOAP.RM.Accept
- %SOAP.RM.AcknowledgementRange
- %SOAP.RM.CloseSequenceResponse
- %SOAP.RM.CreateSequenceResponse
- %SOAP.RM.Offer
- %SOAP.RM.TerminateSequenceResponse
- %SOAP.RequestMessage
- %SOAP.Security.Created
- %SOAP.Security.Element
- %SOAP.Security.IssuerSerial
- %SOAP.Security.KeyIdentifier
- %SOAP.Security.Password
- %SOAP.Security.Reference
- %SOAP.Security.TransformationParameters
- %SOAP.WSSC.Properties
- %SOAP.WST.AbstractToken
- %SOAP.WST.Claims
- %SOAP.WST.Entropy
- %SOAP.WST.Lifetime
- %SOAP.WST.Participants
- %SOAP.WST.Renewing
- %SOAP.WST.RequestSecurityTokenResponse
- %SOAP.WST.RequestSecurityTokenResponseCollection
- %SOAP.WST.RequestedProofToken
- %SOAP.WST.RequestedSecurityToken
- %SOAP.WST.Status
- %SOAP.WST.Target
- %SQL.Manager.QButtons.Base
- %SQL.Util.TuneTableStats
- %SQL.Util.TuneTableStatsFields
- %SQL.Util.TuneTableStatsMaps
- %SYS.Audit
- %SYS.OpenAM.IdentityServices
- %SYS.PhoneProviders
- %SYS.Portal.Resources
- %SYS.Portal.Users
- %SYS.Task.DiagnosticReport
- %SYS.X509Credentials
- %Studio.BreakPoint
- %Studio.Extension.Menu
- %Studio.Extension.MenuBase
- %Studio.Extension.MenuItem
- %Studio.Project
- %Studio.ProjectItem
- %Studio.SourceControl.ItemSet
- %Studio.Template.HTMLAttribute
- %Studio.Template.HTMLElement
- %Studio.WatchPoint
- %Studio.WatchVariable
- %UnitTest.Result.TestAssert
- %UnitTest.Result.TestCase
- %UnitTest.Result.TestInstance
- %UnitTest.Result.TestMethod
- %UnitTest.Result.TestSuite
- %WebStress.Calls
- %WebStress.Control
- %WebStress.Control.AppServers
- %WebStress.Control.GeneratorStatus
- %WebStress.Control.Processes
- %WebStress.Control.Progress
- %WebStress.Control.ValidData.Request
- %WebStress.Control.ValidData.Request.Parameters
- %WebStress.Control.ValidData.Response
- %WebStress.Control.ValidData.Response.Generators
- %WebStress.Control.ValidData.Response.Generators.Data
- %WebStress.Errors
- %WebStress.Iterations
- %WebStress.Machines.ApplicationServers
- %WebStress.Machines.Generators
- %WebStress.Machines.WebServers
- %WebStress.Playback
- %WebStress.Playback.Session
- %WebStress.Playback.Status
- %WebStress.Results.AppServerStats
- %WebStress.Results.Calls
- %WebStress.Results.General
- %WebStress.Results.Iterations
- %WebStress.Results.PageSummary
- %WebStress.Results.Summary
- %WebStress.Run
- %WebStress.Scripts
- %WebStress.Scripts.URLS
- %WebStress.Scripts.URLS.Parameters
- %WebStress.Tables.NoDelay
- %WebStress.Tables.NoResults
- %WebStress.Tests
- %WebStress.Tests.Parameters
- %XML.Catalog
- %XML.DataSet
- %XML.ElementExtension
- %XML.Exchange.Adaptor
- %XML.Exchange.Metadata
- %XML.Security.Algorithm
- %XML.Security.CipherData
- %XML.Security.CipherDataStream
- %XML.Security.CipherReference
- %XML.Security.DSAKeyValue
- %XML.Security.DataReference
- %XML.Security.EncryptionMethod
- %XML.Security.EncryptionProperties
- %XML.Security.EncryptionProperty
- %XML.Security.InclusiveNamespaces
- %XML.Security.KeyInfo
- %XML.Security.KeyInfoClause
- %XML.Security.KeyReference
- %XML.Security.Object
- %XML.Security.RSAKeyValue
- %XML.Security.Reference
- %XML.Security.RetrievalMethod
- %XML.Security.SignedInfo
- %XML.Security.Transform
- %XML.Security.X509DataElement
- %ZEN.Component.object
- %ZEN.Report.Display.common
- %ZEN.Report.Display.node
- %ZEN.Report.Models.Group.Document
- %ZEN.Report.Models.Group.Group
- %ZEN.Report.Models.Group.Report
- %ZEN.Report.parameter
- %ZEN.Report.reportNode
- %ZEN.SVGComponent.abstractSVGGroup
- %ZHSLIB.Audit.Log
- %ZHSLIB.Audit.LogParticipant
- %ZHSLIB.Component
- %ZHSLIB.Services.NVPair
- %iKnow.Classification.Definition.node
- CSPX.Dashboard.ChartSeries
- CSPX.Dashboard.GridDimension
- CSPX.Dashboard.GridSeries
- CSPX.Dashboard.Meter
- CSPX.Dashboard.Renderer
- Ens.Activity.Data.Days
- Ens.Activity.Data.Hours
- Ens.Activity.Data.Seconds
- Ens.Alerting.Action
- Ens.Alerting.Context.Notify
- Ens.Alerting.Context.OverdueAlert
- Ens.Alerting.ManagedAlert
- Ens.Alerting.NotificationRequest
- Ens.Alerting.NotificationTarget
- Ens.Archive.MessageBody
- Ens.BP.Context
- Ens.Config.BusinessPartner
- Ens.Config.BusinessPartnerContact
- Ens.Config.Credentials
- Ens.Config.CredentialsList
- Ens.Config.DefaultSettings
- Ens.Config.Item
- Ens.Config.MessageMap
- Ens.Config.Production
- Ens.Config.SearchTableItem
- Ens.Config.Setting
- Ens.Config.SubProduction
- Ens.Deployment.Invocations
- Ens.Deployment.Token
- Ens.Enterprise.MonitorClient
- Ens.Enterprise.MonitorRole
- Ens.Enterprise.MsgBank.Handshake
- Ens.Enterprise.MsgBank.Log
- Ens.Enterprise.MsgBank.MessageHeader
- Ens.Enterprise.Portal.MsgFilter.LegacyFilter
- Ens.MessageBody
- Ens.MessageHeader
- Ens.Rule.Action
- Ens.Rule.Condition
- Ens.Rule.DebugLog
- Ens.Rule.Log
- Ens.Rule.Model.base
- Ens.Rule.Model.expression
- Ens.Rule.Router.Action
- Ens.Rule.Router.Condition
- Ens.Rule.Router.Rule
- Ens.Rule.Rule
- Ens.Rule.RuleDefinition
- Ens.Rule.RuleLog
- Ens.Rule.SubAction
- Ens.Rule.SubCondition
- Ens.Rule.SubRule
- Ens.StreamContainer
- Ens.StringContainer
- Ens.Util.Log
- Ens.Util.LookupTable
- Ens.Util.Schedule
- EnsLib.Agent.Interface
- EnsLib.DICOM.Util.AssociationContext
- EnsLib.DICOM.Util.PresentationContext
- EnsLib.EDI.XML.Document
- EnsLib.ITK.DTS.Framework.ConfigFile
- EnsLib.ITK.DTS.Framework.ControlFile
- EnsLib.ITK.DTS.Framework.FileLog
- EnsLib.ITK.DTS.Framework.Status
- EnsLib.ITK.DTS.Framework.TransferLog
- EnsLib.ITK.Framework.CallBackLog
- EnsLib.ITK.Framework.ContentContext
- EnsLib.ITK.Framework.DistributionEnvelope
- EnsLib.ITK.Framework.ErrorCode
- EnsLib.ITK.Framework.Fault
- EnsLib.ITK.Framework.FaultCode
- EnsLib.ITK.Framework.FaultVocabulary
- EnsLib.ITK.Framework.FaultVocabularyMap
- EnsLib.ITK.Framework.MessageDetails
- EnsLib.ITK.Framework.RequestBase
- EnsLib.ITK.Framework.ResponseBase
- EnsLib.ITK.Framework.SubscriptionPullLog
- EnsLib.ITK.Framework.ToolkitErrorInfoStruct
- EnsLib.ITK.Framework.itk.QueueMessageResponse
- EnsLib.ITK.Framework.itk.QueueSwitchModeMessage
- EnsLib.ITK.Framework.itk.QueueSwitchModeResponse
- EnsLib.ITK.Setup.ConsumerServiceRegistry
- EnsLib.ITK.Setup.DistributionRules
- EnsLib.ITK.Setup.SenderRegistry
- EnsLib.ITK.Setup.ServiceDefinition
- EnsLib.ITK.Setup.SubscriptionRules
- EnsLib.ITK.Setup.SystemDefinition
- EnsLib.ITK.Standard.SimpleMessageResponse
- EnsLib.JMS.Property
- EnsLib.LDAP.Message.Attribute
- EnsLib.LDAP.Message.Result
- EnsLib.Printing.PrintJob
- EnsLib.Printing.PrintRequest
- EnsLib.PubSub.DomainName
- EnsLib.PubSub.Subscription
- EnsLib.PubSub.Target
- EnsLib.PushNotifications.IdentityManager.DeviceTracking
- EnsLib.PushNotifications.NotificationInfo
- EnsLib.RecordMap.Batch
- EnsLib.RecordMap.BatchResponse
- EnsLib.RecordMap.BatchRolloverRequest
- EnsLib.RecordMap.Model.BatchElement
- EnsLib.RecordMap.Model.ComplexBatch
- EnsLib.RecordMap.Model.HeaderTrailer
- EnsLib.RecordMap.Model.Record
- EnsLib.RecordMap.Model.RecordProperty
- EnsLib.SQL.Snapshot
- EnsLib.UDDI.dsig.CanonicalizationMethodType
- EnsLib.UDDI.dsig.DSAKeyValueType
- EnsLib.UDDI.dsig.DigestMethodType
- EnsLib.UDDI.dsig.KeyInfoType
- EnsLib.UDDI.dsig.KeyValueType
- EnsLib.UDDI.dsig.ManifestType
- EnsLib.UDDI.dsig.ObjectType
- EnsLib.UDDI.dsig.PGPDataType
- EnsLib.UDDI.dsig.RSAKeyValueType
- EnsLib.UDDI.dsig.ReferenceType
- EnsLib.UDDI.dsig.RetrievalMethodType
- EnsLib.UDDI.dsig.SPKIDataType
- EnsLib.UDDI.dsig.SignatureMethodType
- EnsLib.UDDI.dsig.SignaturePropertiesType
- EnsLib.UDDI.dsig.SignaturePropertyType
- EnsLib.UDDI.dsig.SignatureType
- EnsLib.UDDI.dsig.SignatureValueType
- EnsLib.UDDI.dsig.SignedInfoType
- EnsLib.UDDI.dsig.TransformType
- EnsLib.UDDI.dsig.TransformsType
- EnsLib.UDDI.dsig.X509DataType
- EnsLib.UDDI.dsig.X509IssuerSerialType
- EnsLib.UDDI.uddi.accessPoint
- EnsLib.UDDI.uddi.addpublisherAssertions
- EnsLib.UDDI.uddi.address
- EnsLib.UDDI.uddi.addressLine
- EnsLib.UDDI.uddi.assertionStatusItem
- EnsLib.UDDI.uddi.assertionStatusReport
- EnsLib.UDDI.uddi.authToken
- EnsLib.UDDI.uddi.bindingDetail
- EnsLib.UDDI.uddi.bindingTemplate
- EnsLib.UDDI.uddi.bindingTemplates
- EnsLib.UDDI.uddi.businessDetail
- EnsLib.UDDI.uddi.businessEntity
- EnsLib.UDDI.uddi.businessInfo
- EnsLib.UDDI.uddi.businessInfos
- EnsLib.UDDI.uddi.businessList
- EnsLib.UDDI.uddi.businessService
- EnsLib.UDDI.uddi.businessServices
- EnsLib.UDDI.uddi.categoryBag
- EnsLib.UDDI.uddi.contact
- EnsLib.UDDI.uddi.contacts
- EnsLib.UDDI.uddi.deletebinding
- EnsLib.UDDI.uddi.deletebusiness
- EnsLib.UDDI.uddi.deletepublisherAssertions
- EnsLib.UDDI.uddi.deleteservice
- EnsLib.UDDI.uddi.deletetModel
- EnsLib.UDDI.uddi.description
- EnsLib.UDDI.uddi.discardauthToken
- EnsLib.UDDI.uddi.discoveryURL
- EnsLib.UDDI.uddi.discoveryURLs
- EnsLib.UDDI.uddi.dispositionReport
- EnsLib.UDDI.uddi.email
- EnsLib.UDDI.uddi.errInfo
- EnsLib.UDDI.uddi.findQualifiers
- EnsLib.UDDI.uddi.findbinding
- EnsLib.UDDI.uddi.findbusiness
- EnsLib.UDDI.uddi.findrelatedBusinesses
- EnsLib.UDDI.uddi.findservice
- EnsLib.UDDI.uddi.findtModel
- EnsLib.UDDI.uddi.getassertionStatusReport
- EnsLib.UDDI.uddi.getauthToken
- EnsLib.UDDI.uddi.getbindingDetail
- EnsLib.UDDI.uddi.getbusinessDetail
- EnsLib.UDDI.uddi.getoperationalInfo
- EnsLib.UDDI.uddi.getpublisherAssertions
- EnsLib.UDDI.uddi.getregisteredInfo
- EnsLib.UDDI.uddi.getserviceDetail
- EnsLib.UDDI.uddi.gettModelDetail
- EnsLib.UDDI.uddi.hostingRedirector
- EnsLib.UDDI.uddi.identifierBag
- EnsLib.UDDI.uddi.instanceDetails
- EnsLib.UDDI.uddi.keyedReference
- EnsLib.UDDI.uddi.keyedReferenceGroup
- EnsLib.UDDI.uddi.keysOwned
- EnsLib.UDDI.uddi.listDescription
- EnsLib.UDDI.uddi.name
- EnsLib.UDDI.uddi.operationalInfo
- EnsLib.UDDI.uddi.operationalInfos
- EnsLib.UDDI.uddi.overviewDoc
- EnsLib.UDDI.uddi.overviewURL
- EnsLib.UDDI.uddi.personName
- EnsLib.UDDI.uddi.phone
- EnsLib.UDDI.uddi.publisherAssertion
- EnsLib.UDDI.uddi.publisherAssertions
- EnsLib.UDDI.uddi.registeredInfo
- EnsLib.UDDI.uddi.relatedBusinessInfo
- EnsLib.UDDI.uddi.relatedBusinessInfos
- EnsLib.UDDI.uddi.relatedBusinessesList
- EnsLib.UDDI.uddi.result
- EnsLib.UDDI.uddi.savebinding
- EnsLib.UDDI.uddi.savebusiness
- EnsLib.UDDI.uddi.saveservice
- EnsLib.UDDI.uddi.savetModel
- EnsLib.UDDI.uddi.serviceDetail
- EnsLib.UDDI.uddi.serviceInfo
- EnsLib.UDDI.uddi.serviceInfos
- EnsLib.UDDI.uddi.serviceList
- EnsLib.UDDI.uddi.setpublisherAssertions
- EnsLib.UDDI.uddi.sharedRelationships
- EnsLib.UDDI.uddi.tModel
- EnsLib.UDDI.uddi.tModelBag
- EnsLib.UDDI.uddi.tModelDetail
- EnsLib.UDDI.uddi.tModelInfo
- EnsLib.UDDI.uddi.tModelInfos
- EnsLib.UDDI.uddi.tModelInstanceDetails
- EnsLib.UDDI.uddi.tModelInstanceInfo
- EnsLib.UDDI.uddi.tModelList
- EnsLib.Workflow.ActionDefinition
- EnsLib.Workflow.RoleDefinition
- EnsLib.Workflow.RoleMembership
- EnsLib.Workflow.TaskStatus
- EnsLib.Workflow.UserDefinition
- EnsLib.ebXML.CPA
- EnsLib.ebXML.Message
- EnsLib.ebXML.MessageTracking
- EnsLib.ebXML.MessageWithPayload
- EnsLib.ebXML.schema.msg.Description
- EnsLib.ebXML.schema.msg.Error
- EnsLib.ebXML.schema.msg.From
- EnsLib.ebXML.schema.msg.Manifest
- EnsLib.ebXML.schema.msg.MessageData
- EnsLib.ebXML.schema.msg.PartyId
- EnsLib.ebXML.schema.msg.Reference
- EnsLib.ebXML.schema.msg.Schema
- EnsLib.ebXML.schema.msg.Service
- EnsLib.ebXML.schema.msg.To
- EnsLib.ebXML.schema.msg.base
- EnsLib.ebXML.schema.msg.sequenceNumber.type
- EnsPortal.MsgFilter.Condition
- EnsPortal.MsgFilter.Filter
- EnsPortal.MsgFilter.SavedSearchBase
- EnsPortal.MsgFilter.Term
- HS.AU.ELS.CertRefCache
- HS.AU.ELS.InteractionCache
- HS.AU.HI.Management
- HS.AU.HI.Management.History
- HS.AU.HI.QualifiedId
- HS.AU.Message.HI.IHIResult
- HS.AU.Message.HI.NotifyDuplicateIHIResult
- HS.AU.Message.HI.SearchHPIOResult
- HS.AU.Message.HI.SearchIndividualProviderCommon
- HS.AU.Message.SMD.DeliveryResponse
- HS.AU.Message.SMD.MessageType
- HS.AU.Message.SMD.TransportDeliveryResponse
- HS.AU.PCEHR.AccessingOrganisation
- HS.AU.PCEHR.User
- HS.AU.SMD.ApproverType
- HS.AU.SMD.BaseDataType
- HS.AU.SMD.CDASignedPayloadType
- HS.AU.SMD.EncryptedPayloadDataType
- HS.AU.SMD.EncryptedPayloadType
- HS.AU.SMD.KeyListType
- HS.AU.SMD.ManifestType
- HS.AU.SMD.PersonNameType
- HS.AU.SMD.SignatureListType
- HS.AU.SMD.SignedPayloadContentStream
- HS.AU.SMD.SignedPayloadData
- HS.AU.SMD.SignedPayloadDataType
- HS.AU.SMD.SignedPayloadType
- HS.AU.SMD.eSignature
- HS.AU.Types.ELS.CertRefType
- HS.AU.Types.ELS.InteractionType
- HS.AU.Types.ELS.QualifiedCertRefType
- HS.AU.Types.HI.Address.AustralianPostalAddressType
- HS.AU.Types.HI.Address.AustralianStreetAddressType
- HS.AU.Types.HI.Address.InternationalAddressType
- HS.AU.Types.HI.Address.LevelGroupType
- HS.AU.Types.HI.Address.PostalDeliveryGroupType
- HS.AU.Types.HI.Address.UnitGroupType
- HS.AU.Types.HI.AddressType
- HS.AU.Types.HI.CurrentNameType
- HS.AU.Types.HI.Detail
- HS.AU.Types.HI.ElectronicCommunicationType
- HS.AU.Types.HI.IHINumberStatusGroupType
- HS.AU.Types.HI.IndividualHealthcareIdentityType
- HS.AU.Types.HI.NameType
- HS.AU.Types.HI.NameUpdateGroupType
- HS.AU.Types.HI.SearchIHIRequestType
- HS.AU.Types.HI.SearchIHIResponseType
- HS.AU.Types.HI.ServiceMessageType
- HS.AU.Types.HI.ServiceMessagesType
- HS.AU.Types.PCEHR.AuthorisationDetails
- HS.AU.Types.PCEHR.Individual
- HS.AU.Types.PCEHR.Individual1
- HS.AU.Types.PCEHR.NameType
- HS.AU.Types.PCEHR.PersonRecord
- HS.AU.Types.PCEHR.ResponseStatusType
- HS.AU.Types.SMD.Deliver
- HS.AU.Types.SMD.DeliverErrorType
- HS.AU.Types.SMD.DeliveryResponse
- HS.AU.Types.SMD.DeliveryResponseType
- HS.AU.Types.SMD.ImmediateDeliveryResponse
- HS.AU.Types.SMD.MessageMetadataType
- HS.AU.Types.SMD.OtherTransportMetadataEntryType
- HS.AU.Types.SMD.RouteRecordEntryType
- HS.AU.Types.SMD.SealedMessageType
- HS.AU.Types.SMD.StandardErrorType
- HS.AU.Types.SMD.TransportResponseMetadataType
- HS.AU.Types.SMD.TransportResponseType
- HS.AssignAuth.Config
- HS.Codes.ContentType
- HS.Codes.IntegrationType
- HS.Codes.Languages
- HS.Codes.OrganizationType
- HS.Codes.PractitionerType
- HS.Codes.Specialty
- HS.Codes.Types.SimpleCode
- HS.Consent.WebServices.Containers.ListItem
- HS.Consent.WebServices.ServiceStatus
- HS.Data.MimeTypes
- HS.Data.OIDMap
- HS.Data.OIDType
- HS.Doc.Data.Field
- HS.Doc.Data.Link
- HS.Doc.Mapping.Common.DocumentType
- HS.Doc.Mapping.Common.HealthShareMapping
- HS.Doc.Mapping.Common.Mapping
- HS.Doc.Mapping.Common.MappingTarget
- HS.Doc.Mapping.Common.SourceField
- HS.Doc.Mapping.Common.SourceStructure
- HS.Doc.Mapping.Common.StructuredMapping
- HS.Doc.Mapping.Common.TargetField
- HS.Doc.Mapping.Common.TargetStructure
- HS.Doc.Mapping.HL7.HL7Field
- HS.FHIR.DTL.vDSTU2.Model.Base.Element
- HS.FHIR.DTL.vDSTU2.Model.Base.Resource
- HS.FHIR.DTL.vR4.Model.Base.Element
- HS.FHIR.DTL.vR4.Model.Base.Resource
- HS.FHIR.DTL.vSTU3.Model.Base.Element
- HS.FHIR.DTL.vSTU3.Model.Base.Resource
- HS.FHIR.vDSTU2.Model.Base.AbstractBase
- HS.FHIR.vSTU3.Model.Base.AbstractBase
- HS.FHIRModel.FHIRClassSuper
- HS.FHIRModel.R4.AccountX.SeqOfAccountXCoverage
- HS.FHIRModel.R4.AccountX.SeqOfAccountXGuarantor
- HS.FHIRModel.R4.ActivityDefinitionX.SeqOfActivityDefinitionXDynamicValue
- HS.FHIRModel.R4.ActivityDefinitionX.SeqOfActivityDefinitionXParticipant
- HS.FHIRModel.R4.AdverseEventX.SeqOfAdverseEventXCausality
- HS.FHIRModel.R4.AdverseEventX.SeqOfAdverseEventXSuspectEntity
- HS.FHIRModel.R4.AllergyIntoleranceX.SeqOfAllergyIntoleranceXReaction
- HS.FHIRModel.R4.AppointmentX.SeqOfAppointmentXParticipant
- HS.FHIRModel.R4.AuditEventX.SeqOfAuditEventXAgent
- HS.FHIRModel.R4.AuditEventX.SeqOfAuditEventXDetail
- HS.FHIRModel.R4.AuditEventX.SeqOfAuditEventXEntity
- HS.FHIRModel.R4.BiologicallyDerivedProductX.SeqOfBiologicallyDerivedProductXProcessing
- HS.FHIRModel.R4.BiologicallyDerivedProductX.SeqOfBiologicallyDerivedProductXStorage
- HS.FHIRModel.R4.BundleX.SeqOfBundleXEntry
- HS.FHIRModel.R4.BundleX.SeqOfBundleXLink
- HS.FHIRModel.R4.CapabilityStatementX.SeqOfCapabilityStatementXDocument
- HS.FHIRModel.R4.CapabilityStatementX.SeqOfCapabilityStatementXEndpoint
- HS.FHIRModel.R4.CapabilityStatementX.SeqOfCapabilityStatementXInteraction
- HS.FHIRModel.R4.CapabilityStatementX.SeqOfCapabilityStatementXInteraction1
- HS.FHIRModel.R4.CapabilityStatementX.SeqOfCapabilityStatementXMessaging
- HS.FHIRModel.R4.CapabilityStatementX.SeqOfCapabilityStatementXOperation
- HS.FHIRModel.R4.CapabilityStatementX.SeqOfCapabilityStatementXResource
- HS.FHIRModel.R4.CapabilityStatementX.SeqOfCapabilityStatementXRest
- HS.FHIRModel.R4.CapabilityStatementX.SeqOfCapabilityStatementXSearchParam
- HS.FHIRModel.R4.CapabilityStatementX.SeqOfCapabilityStatementXSupportedMessage
- HS.FHIRModel.R4.CarePlanX.SeqOfCarePlanXActivity
- HS.FHIRModel.R4.CareTeamX.SeqOfCareTeamXParticipant
- HS.FHIRModel.R4.CatalogEntryX.SeqOfCatalogEntryXRelatedEntry
- HS.FHIRModel.R4.ChargeItemDefinitionX.SeqOfChargeItemDefinitionXApplicability
- HS.FHIRModel.R4.ChargeItemDefinitionX.SeqOfChargeItemDefinitionXPriceComponent
- HS.FHIRModel.R4.ChargeItemDefinitionX.SeqOfChargeItemDefinitionXPropertyGroup
- HS.FHIRModel.R4.ChargeItemX.SeqOfChargeItemXPerformer
- HS.FHIRModel.R4.ClaimResponseX.SeqOfClaimResponseXAddItem
- HS.FHIRModel.R4.ClaimResponseX.SeqOfClaimResponseXAdjudication
- HS.FHIRModel.R4.ClaimResponseX.SeqOfClaimResponseXDetail
- HS.FHIRModel.R4.ClaimResponseX.SeqOfClaimResponseXDetail1
- HS.FHIRModel.R4.ClaimResponseX.SeqOfClaimResponseXError
- HS.FHIRModel.R4.ClaimResponseX.SeqOfClaimResponseXInsurance
- HS.FHIRModel.R4.ClaimResponseX.SeqOfClaimResponseXItem
- HS.FHIRModel.R4.ClaimResponseX.SeqOfClaimResponseXProcessNote
- HS.FHIRModel.R4.ClaimResponseX.SeqOfClaimResponseXSubDetail
- HS.FHIRModel.R4.ClaimResponseX.SeqOfClaimResponseXSubDetail1
- HS.FHIRModel.R4.ClaimResponseX.SeqOfClaimResponseXTotal
- HS.FHIRModel.R4.ClaimX.SeqOfClaimXCareTeam
- HS.FHIRModel.R4.ClaimX.SeqOfClaimXDetail
- HS.FHIRModel.R4.ClaimX.SeqOfClaimXDiagnosis
- HS.FHIRModel.R4.ClaimX.SeqOfClaimXInsurance
- HS.FHIRModel.R4.ClaimX.SeqOfClaimXItem
- HS.FHIRModel.R4.ClaimX.SeqOfClaimXProcedure
- HS.FHIRModel.R4.ClaimX.SeqOfClaimXRelated
- HS.FHIRModel.R4.ClaimX.SeqOfClaimXSubDetail
- HS.FHIRModel.R4.ClaimX.SeqOfClaimXSupportingInfo
- HS.FHIRModel.R4.ClinicalImpressionX.SeqOfClinicalImpressionXFinding
- HS.FHIRModel.R4.ClinicalImpressionX.SeqOfClinicalImpressionXInvestigation
- HS.FHIRModel.R4.CodeSystemX.SeqOfCodeSystemXConcept
- HS.FHIRModel.R4.CodeSystemX.SeqOfCodeSystemXDesignation
- HS.FHIRModel.R4.CodeSystemX.SeqOfCodeSystemXFilter
- HS.FHIRModel.R4.CodeSystemX.SeqOfCodeSystemXProperty
- HS.FHIRModel.R4.CodeSystemX.SeqOfCodeSystemXProperty1
- HS.FHIRModel.R4.CommunicationRequestX.SeqOfCommunicationRequestXPayload
- HS.FHIRModel.R4.CommunicationX.SeqOfCommunicationXPayload
- HS.FHIRModel.R4.CompartmentDefinitionX.SeqOfCompartmentDefinitionXResource
- HS.FHIRModel.R4.CompositionX.SeqOfCompositionXAttester
- HS.FHIRModel.R4.CompositionX.SeqOfCompositionXEvent
- HS.FHIRModel.R4.CompositionX.SeqOfCompositionXRelatesTo
- HS.FHIRModel.R4.CompositionX.SeqOfCompositionXSection
- HS.FHIRModel.R4.ConceptMapX.SeqOfConceptMapXDependsOn
- HS.FHIRModel.R4.ConceptMapX.SeqOfConceptMapXElement
- HS.FHIRModel.R4.ConceptMapX.SeqOfConceptMapXGroup
- HS.FHIRModel.R4.ConceptMapX.SeqOfConceptMapXTarget
- HS.FHIRModel.R4.ConditionX.SeqOfConditionXEvidence
- HS.FHIRModel.R4.ConditionX.SeqOfConditionXStage
- HS.FHIRModel.R4.ConsentX.SeqOfConsentXActor
- HS.FHIRModel.R4.ConsentX.SeqOfConsentXData
- HS.FHIRModel.R4.ConsentX.SeqOfConsentXPolicy
- HS.FHIRModel.R4.ConsentX.SeqOfConsentXProvision
- HS.FHIRModel.R4.ConsentX.SeqOfConsentXVerification
- HS.FHIRModel.R4.ContractX.SeqOfContractXAction
- HS.FHIRModel.R4.ContractX.SeqOfContractXAnswer
- HS.FHIRModel.R4.ContractX.SeqOfContractXAsset
- HS.FHIRModel.R4.ContractX.SeqOfContractXContext
- HS.FHIRModel.R4.ContractX.SeqOfContractXFriendly
- HS.FHIRModel.R4.ContractX.SeqOfContractXLegal
- HS.FHIRModel.R4.ContractX.SeqOfContractXParty
- HS.FHIRModel.R4.ContractX.SeqOfContractXRule
- HS.FHIRModel.R4.ContractX.SeqOfContractXSecurityLabel
- HS.FHIRModel.R4.ContractX.SeqOfContractXSigner
- HS.FHIRModel.R4.ContractX.SeqOfContractXSubject
- HS.FHIRModel.R4.ContractX.SeqOfContractXTerm
- HS.FHIRModel.R4.ContractX.SeqOfContractXValuedItem
- HS.FHIRModel.R4.CoverageEligibilityRequestX.SeqOfCoverageEligibilityRequestXDiagnosis
- HS.FHIRModel.R4.CoverageEligibilityRequestX.SeqOfCoverageEligibilityRequestXInsurance
- HS.FHIRModel.R4.CoverageEligibilityRequestX.SeqOfCoverageEligibilityRequestXItem
- HS.FHIRModel.R4.CoverageEligibilityRequestX.SeqOfCoverageEligibilityRequestXSupportingInfo
- HS.FHIRModel.R4.CoverageEligibilityResponseX.SeqOfCoverageEligibilityResponseXBenefit
- HS.FHIRModel.R4.CoverageEligibilityResponseX.SeqOfCoverageEligibilityResponseXError
- HS.FHIRModel.R4.CoverageEligibilityResponseX.SeqOfCoverageEligibilityResponseXInsurance
- HS.FHIRModel.R4.CoverageEligibilityResponseX.SeqOfCoverageEligibilityResponseXItem
- HS.FHIRModel.R4.CoverageX.SeqOfCoverageXClass
- HS.FHIRModel.R4.CoverageX.SeqOfCoverageXCostToBeneficiary
- HS.FHIRModel.R4.CoverageX.SeqOfCoverageXException
- HS.FHIRModel.R4.DataRequirementX.SeqOfDataRequirementXCodeFilter
- HS.FHIRModel.R4.DataRequirementX.SeqOfDataRequirementXDateFilter
- HS.FHIRModel.R4.DataRequirementX.SeqOfDataRequirementXSort
- HS.FHIRModel.R4.DetectedIssueX.SeqOfDetectedIssueXEvidence
- HS.FHIRModel.R4.DetectedIssueX.SeqOfDetectedIssueXMitigation
- HS.FHIRModel.R4.DeviceDefinitionX.SeqOfDeviceDefinitionXCapability
- HS.FHIRModel.R4.DeviceDefinitionX.SeqOfDeviceDefinitionXDeviceName
- HS.FHIRModel.R4.DeviceDefinitionX.SeqOfDeviceDefinitionXMaterial
- HS.FHIRModel.R4.DeviceDefinitionX.SeqOfDeviceDefinitionXProperty
- HS.FHIRModel.R4.DeviceDefinitionX.SeqOfDeviceDefinitionXSpecialization
- HS.FHIRModel.R4.DeviceDefinitionX.SeqOfDeviceDefinitionXUdiDeviceIdentifier
- HS.FHIRModel.R4.DeviceMetricX.SeqOfDeviceMetricXCalibration
- HS.FHIRModel.R4.DeviceRequestX.SeqOfDeviceRequestXParameter
- HS.FHIRModel.R4.DeviceX.SeqOfDeviceXDeviceName
- HS.FHIRModel.R4.DeviceX.SeqOfDeviceXProperty
- HS.FHIRModel.R4.DeviceX.SeqOfDeviceXSpecialization
- HS.FHIRModel.R4.DeviceX.SeqOfDeviceXUdiCarrier
- HS.FHIRModel.R4.DeviceX.SeqOfDeviceXVersion
- HS.FHIRModel.R4.DiagnosticReportX.SeqOfDiagnosticReportXMedia
- HS.FHIRModel.R4.DocumentManifestX.SeqOfDocumentManifestXRelated
- HS.FHIRModel.R4.DocumentReferenceX.SeqOfDocumentReferenceXContent
- HS.FHIRModel.R4.DocumentReferenceX.SeqOfDocumentReferenceXRelatesTo
- HS.FHIRModel.R4.DosageX.SeqOfDosageXDoseAndRate
- HS.FHIRModel.R4.EffectEvidenceSynthesisX.SeqOfEffectEvidenceSynthesisXCertainty
- HS.FHIRModel.R4.EffectEvidenceSynthesisX.SeqOfEffectEvidenceSynthesisXCertaintySubcomponent
- HS.FHIRModel.R4.EffectEvidenceSynthesisX.SeqOfEffectEvidenceSynthesisXEffectEstimate
- HS.FHIRModel.R4.EffectEvidenceSynthesisX.SeqOfEffectEvidenceSynthesisXPrecisionEstimate
- HS.FHIRModel.R4.EffectEvidenceSynthesisX.SeqOfEffectEvidenceSynthesisXResultsByExposure
- HS.FHIRModel.R4.ElementDefinitionX.SeqOfElementDefinitionXConstraint
- HS.FHIRModel.R4.ElementDefinitionX.SeqOfElementDefinitionXDiscriminator
- HS.FHIRModel.R4.ElementDefinitionX.SeqOfElementDefinitionXExample
- HS.FHIRModel.R4.ElementDefinitionX.SeqOfElementDefinitionXMapping
- HS.FHIRModel.R4.ElementDefinitionX.SeqOfElementDefinitionXType
- HS.FHIRModel.R4.EncounterX.SeqOfEncounterXClassHistory
- HS.FHIRModel.R4.EncounterX.SeqOfEncounterXDiagnosis
- HS.FHIRModel.R4.EncounterX.SeqOfEncounterXLocation
- HS.FHIRModel.R4.EncounterX.SeqOfEncounterXParticipant
- HS.FHIRModel.R4.EncounterX.SeqOfEncounterXStatusHistory
- HS.FHIRModel.R4.EpisodeOfCareX.SeqOfEpisodeOfCareXDiagnosis
- HS.FHIRModel.R4.EpisodeOfCareX.SeqOfEpisodeOfCareXStatusHistory
- HS.FHIRModel.R4.EvidenceVariableX.SeqOfEvidenceVariableXCharacteristic
- HS.FHIRModel.R4.ExampleScenarioX.SeqOfExampleScenarioXActor
- HS.FHIRModel.R4.ExampleScenarioX.SeqOfExampleScenarioXAlternative
- HS.FHIRModel.R4.ExampleScenarioX.SeqOfExampleScenarioXContainedInstance
- HS.FHIRModel.R4.ExampleScenarioX.SeqOfExampleScenarioXInstance
- HS.FHIRModel.R4.ExampleScenarioX.SeqOfExampleScenarioXProcess
- HS.FHIRModel.R4.ExampleScenarioX.SeqOfExampleScenarioXStep
- HS.FHIRModel.R4.ExampleScenarioX.SeqOfExampleScenarioXVersion
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXAddItem
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXAdjudication
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXBenefitBalance
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXCareTeam
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXDetail
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXDetail1
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXDiagnosis
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXFinancial
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXInsurance
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXItem
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXProcedure
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXProcessNote
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXRelated
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXSubDetail
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXSubDetail1
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXSupportingInfo
- HS.FHIRModel.R4.ExplanationOfBenefitX.SeqOfExplanationOfBenefitXTotal
- HS.FHIRModel.R4.FamilyMemberHistoryX.SeqOfFamilyMemberHistoryXCondition
- HS.FHIRModel.R4.GoalX.SeqOfGoalXTarget
- HS.FHIRModel.R4.GraphDefinitionX.SeqOfGraphDefinitionXCompartment
- HS.FHIRModel.R4.GraphDefinitionX.SeqOfGraphDefinitionXLink
- HS.FHIRModel.R4.GraphDefinitionX.SeqOfGraphDefinitionXTarget
- HS.FHIRModel.R4.GroupX.SeqOfGroupXCharacteristic
- HS.FHIRModel.R4.GroupX.SeqOfGroupXMember
- HS.FHIRModel.R4.HealthcareServiceX.SeqOfHealthcareServiceXAvailableTime
- HS.FHIRModel.R4.HealthcareServiceX.SeqOfHealthcareServiceXEligibility
- HS.FHIRModel.R4.HealthcareServiceX.SeqOfHealthcareServiceXNotAvailable
- HS.FHIRModel.R4.ImagingStudyX.SeqOfImagingStudyXInstance
- HS.FHIRModel.R4.ImagingStudyX.SeqOfImagingStudyXPerformer
- HS.FHIRModel.R4.ImagingStudyX.SeqOfImagingStudyXSeries
- HS.FHIRModel.R4.ImmunizationRecommendationX.SeqOfImmunizationRecommendationXDateCriterion
- HS.FHIRModel.R4.ImmunizationRecommendationX.SeqOfImmunizationRecommendationXRecommendation
- HS.FHIRModel.R4.ImmunizationX.SeqOfImmunizationXEducation
- HS.FHIRModel.R4.ImmunizationX.SeqOfImmunizationXPerformer
- HS.FHIRModel.R4.ImmunizationX.SeqOfImmunizationXProtocolApplied
- HS.FHIRModel.R4.ImmunizationX.SeqOfImmunizationXReaction
- HS.FHIRModel.R4.ImplementationGuideX.SeqOfImplementationGuideXDependsOn
- HS.FHIRModel.R4.ImplementationGuideX.SeqOfImplementationGuideXGlobal
- HS.FHIRModel.R4.ImplementationGuideX.SeqOfImplementationGuideXGrouping
- HS.FHIRModel.R4.ImplementationGuideX.SeqOfImplementationGuideXPage
- HS.FHIRModel.R4.ImplementationGuideX.SeqOfImplementationGuideXPage1
- HS.FHIRModel.R4.ImplementationGuideX.SeqOfImplementationGuideXParameter
- HS.FHIRModel.R4.ImplementationGuideX.SeqOfImplementationGuideXResource
- HS.FHIRModel.R4.ImplementationGuideX.SeqOfImplementationGuideXResource1
- HS.FHIRModel.R4.ImplementationGuideX.SeqOfImplementationGuideXTemplate
- HS.FHIRModel.R4.InsurancePlanX.SeqOfInsurancePlanXBenefit
- HS.FHIRModel.R4.InsurancePlanX.SeqOfInsurancePlanXBenefit1
- HS.FHIRModel.R4.InsurancePlanX.SeqOfInsurancePlanXContact
- HS.FHIRModel.R4.InsurancePlanX.SeqOfInsurancePlanXCost
- HS.FHIRModel.R4.InsurancePlanX.SeqOfInsurancePlanXCoverage
- HS.FHIRModel.R4.InsurancePlanX.SeqOfInsurancePlanXGeneralCost
- HS.FHIRModel.R4.InsurancePlanX.SeqOfInsurancePlanXLimit
- HS.FHIRModel.R4.InsurancePlanX.SeqOfInsurancePlanXPlan
- HS.FHIRModel.R4.InsurancePlanX.SeqOfInsurancePlanXSpecificCost
- HS.FHIRModel.R4.InvoiceX.SeqOfInvoiceXLineItem
- HS.FHIRModel.R4.InvoiceX.SeqOfInvoiceXParticipant
- HS.FHIRModel.R4.InvoiceX.SeqOfInvoiceXPriceComponent
- HS.FHIRModel.R4.LinkageX.SeqOfLinkageXItem
- HS.FHIRModel.R4.ListX.SeqOfListXEntry
- HS.FHIRModel.R4.LocationX.SeqOfLocationXHoursOfOperation
- HS.FHIRModel.R4.MeasureReportX.SeqOfMeasureReportXComponent
- HS.FHIRModel.R4.MeasureReportX.SeqOfMeasureReportXGroup
- HS.FHIRModel.R4.MeasureReportX.SeqOfMeasureReportXPopulation
- HS.FHIRModel.R4.MeasureReportX.SeqOfMeasureReportXPopulation1
- HS.FHIRModel.R4.MeasureReportX.SeqOfMeasureReportXStratifier
- HS.FHIRModel.R4.MeasureReportX.SeqOfMeasureReportXStratum
- HS.FHIRModel.R4.MeasureX.SeqOfMeasureXComponent
- HS.FHIRModel.R4.MeasureX.SeqOfMeasureXGroup
- HS.FHIRModel.R4.MeasureX.SeqOfMeasureXPopulation
- HS.FHIRModel.R4.MeasureX.SeqOfMeasureXStratifier
- HS.FHIRModel.R4.MeasureX.SeqOfMeasureXSupplementalData
- HS.FHIRModel.R4.MedicationAdministrationX.SeqOfMedicationAdministrationXPerformer
- HS.FHIRModel.R4.MedicationDispenseX.SeqOfMedicationDispenseXPerformer
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXAdministrationGuidelines
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXCost
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXDosage
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXDrugCharacteristic
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXIngredient
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXKinetics
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXMedicineClassification
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXMonitoringProgram
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXMonograph
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXPatientCharacteristics
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXRegulatory
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXRelatedMedicationKnowledge
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXSchedule
- HS.FHIRModel.R4.MedicationKnowledgeX.SeqOfMedicationKnowledgeXSubstitution
- HS.FHIRModel.R4.MedicationX.SeqOfMedicationXIngredient
- HS.FHIRModel.R4.MedicinalProductAuthorizationX.SeqOfMedicinalProductAuthorizationXJurisdictionalAuthorization
- HS.FHIRModel.R4.MedicinalProductAuthorizationX.SeqOfMedicinalProductAuthorizationXProcedure
- HS.FHIRModel.R4.MedicinalProductContraindicationX.SeqOfMedicinalProductContraindicationXOtherTherapy
- HS.FHIRModel.R4.MedicinalProductIndicationX.SeqOfMedicinalProductIndicationXOtherTherapy
- HS.FHIRModel.R4.MedicinalProductIngredientX.SeqOfMedicinalProductIngredientXReferenceStrength
- HS.FHIRModel.R4.MedicinalProductIngredientX.SeqOfMedicinalProductIngredientXSpecifiedSubstance
- HS.FHIRModel.R4.MedicinalProductIngredientX.SeqOfMedicinalProductIngredientXStrength
- HS.FHIRModel.R4.MedicinalProductInteractionX.SeqOfMedicinalProductInteractionXInteractant
- HS.FHIRModel.R4.MedicinalProductPackagedX.SeqOfMedicinalProductPackagedXBatchIdentifier
- HS.FHIRModel.R4.MedicinalProductPackagedX.SeqOfMedicinalProductPackagedXPackageItem
- HS.FHIRModel.R4.MedicinalProductPharmaceuticalX.SeqOfMedicinalProductPharmaceuticalXCharacteristics
- HS.FHIRModel.R4.MedicinalProductPharmaceuticalX.SeqOfMedicinalProductPharmaceuticalXRouteOfAdministration
- HS.FHIRModel.R4.MedicinalProductPharmaceuticalX.SeqOfMedicinalProductPharmaceuticalXTargetSpecies
- HS.FHIRModel.R4.MedicinalProductPharmaceuticalX.SeqOfMedicinalProductPharmaceuticalXWithdrawalPeriod
- HS.FHIRModel.R4.MedicinalProductX.SeqOfMedicinalProductXCountryLanguage
- HS.FHIRModel.R4.MedicinalProductX.SeqOfMedicinalProductXManufacturingBusinessOperation
- HS.FHIRModel.R4.MedicinalProductX.SeqOfMedicinalProductXName
- HS.FHIRModel.R4.MedicinalProductX.SeqOfMedicinalProductXNamePart
- HS.FHIRModel.R4.MedicinalProductX.SeqOfMedicinalProductXSpecialDesignation
- HS.FHIRModel.R4.MessageDefinitionX.SeqOfMessageDefinitionXAllowedResponse
- HS.FHIRModel.R4.MessageDefinitionX.SeqOfMessageDefinitionXFocus
- HS.FHIRModel.R4.MessageHeaderX.SeqOfMessageHeaderXDestination
- HS.FHIRModel.R4.MolecularSequenceX.SeqOfMolecularSequenceXQuality
- HS.FHIRModel.R4.MolecularSequenceX.SeqOfMolecularSequenceXRepository
- HS.FHIRModel.R4.MolecularSequenceX.SeqOfMolecularSequenceXStructureVariant
- HS.FHIRModel.R4.MolecularSequenceX.SeqOfMolecularSequenceXVariant
- HS.FHIRModel.R4.NamingSystemX.SeqOfNamingSystemXUniqueId
- HS.FHIRModel.R4.NutritionOrderX.SeqOfNutritionOrderXAdministration
- HS.FHIRModel.R4.NutritionOrderX.SeqOfNutritionOrderXNutrient
- HS.FHIRModel.R4.NutritionOrderX.SeqOfNutritionOrderXSupplement
- HS.FHIRModel.R4.NutritionOrderX.SeqOfNutritionOrderXTexture
- HS.FHIRModel.R4.ObservationDefinitionX.SeqOfObservationDefinitionXQualifiedInterval
- HS.FHIRModel.R4.ObservationX.SeqOfObservationXComponent
- HS.FHIRModel.R4.ObservationX.SeqOfObservationXReferenceRange
- HS.FHIRModel.R4.OperationDefinitionX.SeqOfOperationDefinitionXOverload
- HS.FHIRModel.R4.OperationDefinitionX.SeqOfOperationDefinitionXParameter
- HS.FHIRModel.R4.OperationDefinitionX.SeqOfOperationDefinitionXReferencedFrom
- HS.FHIRModel.R4.OperationOutcomeX.SeqOfOperationOutcomeXIssue
- HS.FHIRModel.R4.OrganizationX.SeqOfOrganizationXContact
- HS.FHIRModel.R4.ParametersX.SeqOfParametersXParameter
- HS.FHIRModel.R4.PatientX.SeqOfPatientXCommunication
- HS.FHIRModel.R4.PatientX.SeqOfPatientXContact
- HS.FHIRModel.R4.PatientX.SeqOfPatientXLink
- HS.FHIRModel.R4.PaymentReconciliationX.SeqOfPaymentReconciliationXDetail
- HS.FHIRModel.R4.PaymentReconciliationX.SeqOfPaymentReconciliationXProcessNote
- HS.FHIRModel.R4.PersonX.SeqOfPersonXLink
- HS.FHIRModel.R4.PlanDefinitionX.SeqOfPlanDefinitionXAction
- HS.FHIRModel.R4.PlanDefinitionX.SeqOfPlanDefinitionXCondition
- HS.FHIRModel.R4.PlanDefinitionX.SeqOfPlanDefinitionXDynamicValue
- HS.FHIRModel.R4.PlanDefinitionX.SeqOfPlanDefinitionXGoal
- HS.FHIRModel.R4.PlanDefinitionX.SeqOfPlanDefinitionXParticipant
- HS.FHIRModel.R4.PlanDefinitionX.SeqOfPlanDefinitionXRelatedAction
- HS.FHIRModel.R4.PlanDefinitionX.SeqOfPlanDefinitionXTarget
- HS.FHIRModel.R4.PractitionerRoleX.SeqOfPractitionerRoleXAvailableTime
- HS.FHIRModel.R4.PractitionerRoleX.SeqOfPractitionerRoleXNotAvailable
- HS.FHIRModel.R4.PractitionerX.SeqOfPractitionerXQualification
- HS.FHIRModel.R4.ProcedureX.SeqOfProcedureXFocalDevice
- HS.FHIRModel.R4.ProcedureX.SeqOfProcedureXPerformer
- HS.FHIRModel.R4.ProvenanceX.SeqOfProvenanceXAgent
- HS.FHIRModel.R4.ProvenanceX.SeqOfProvenanceXEntity
- HS.FHIRModel.R4.QuestionnaireResponseX.SeqOfQuestionnaireResponseXAnswer
- HS.FHIRModel.R4.QuestionnaireResponseX.SeqOfQuestionnaireResponseXItem
- HS.FHIRModel.R4.QuestionnaireX.SeqOfQuestionnaireXAnswerOption
- HS.FHIRModel.R4.QuestionnaireX.SeqOfQuestionnaireXEnableWhen
- HS.FHIRModel.R4.QuestionnaireX.SeqOfQuestionnaireXInitial
- HS.FHIRModel.R4.QuestionnaireX.SeqOfQuestionnaireXItem
- HS.FHIRModel.R4.RelatedPersonX.SeqOfRelatedPersonXCommunication
- HS.FHIRModel.R4.RequestGroupX.SeqOfRequestGroupXAction
- HS.FHIRModel.R4.RequestGroupX.SeqOfRequestGroupXCondition
- HS.FHIRModel.R4.RequestGroupX.SeqOfRequestGroupXRelatedAction
- HS.FHIRModel.R4.ResearchElementDefinitionX.SeqOfResearchElementDefinitionXCharacteristic
- HS.FHIRModel.R4.ResearchStudyX.SeqOfResearchStudyXArm
- HS.FHIRModel.R4.ResearchStudyX.SeqOfResearchStudyXObjective
- HS.FHIRModel.R4.ResourceList
- HS.FHIRModel.R4.RiskAssessmentX.SeqOfRiskAssessmentXPrediction
- HS.FHIRModel.R4.RiskEvidenceSynthesisX.SeqOfRiskEvidenceSynthesisXCertainty
- HS.FHIRModel.R4.RiskEvidenceSynthesisX.SeqOfRiskEvidenceSynthesisXCertaintySubcomponent
- HS.FHIRModel.R4.RiskEvidenceSynthesisX.SeqOfRiskEvidenceSynthesisXPrecisionEstimate
- HS.FHIRModel.R4.SearchParameterX.SeqOfSearchParameterXComponent
- HS.FHIRModel.R4.SeqOfAddress
- HS.FHIRModel.R4.SeqOfAnnotation
- HS.FHIRModel.R4.SeqOfAttachment
- HS.FHIRModel.R4.SeqOfCodeableConcept
- HS.FHIRModel.R4.SeqOfCoding
- HS.FHIRModel.R4.SeqOfContactDetail
- HS.FHIRModel.R4.SeqOfContactPoint
- HS.FHIRModel.R4.SeqOfDataRequirement
- HS.FHIRModel.R4.SeqOfDosage
- HS.FHIRModel.R4.SeqOfElement
- HS.FHIRModel.R4.SeqOfElementDefinition
- HS.FHIRModel.R4.SeqOfExtension
- HS.FHIRModel.R4.SeqOfHumanName
- HS.FHIRModel.R4.SeqOfIdentifier
- HS.FHIRModel.R4.SeqOfInteger
- HS.FHIRModel.R4.SeqOfMarketingStatus
- HS.FHIRModel.R4.SeqOfParameterDefinition
- HS.FHIRModel.R4.SeqOfPeriod
- HS.FHIRModel.R4.SeqOfPopulation
- HS.FHIRModel.R4.SeqOfProductShelfLife
- HS.FHIRModel.R4.SeqOfQuantity
- HS.FHIRModel.R4.SeqOfReference
- HS.FHIRModel.R4.SeqOfRelatedArtifact
- HS.FHIRModel.R4.SeqOfResourceList
- HS.FHIRModel.R4.SeqOfSignature
- HS.FHIRModel.R4.SeqOfString
- HS.FHIRModel.R4.SeqOfTiming
- HS.FHIRModel.R4.SeqOfTriggerDefinition
- HS.FHIRModel.R4.SeqOfUsageContext
- HS.FHIRModel.R4.SpecimenDefinitionX.SeqOfSpecimenDefinitionXAdditive
- HS.FHIRModel.R4.SpecimenDefinitionX.SeqOfSpecimenDefinitionXHandling
- HS.FHIRModel.R4.SpecimenDefinitionX.SeqOfSpecimenDefinitionXTypeTested
- HS.FHIRModel.R4.SpecimenX.SeqOfSpecimenXContainer
- HS.FHIRModel.R4.SpecimenX.SeqOfSpecimenXProcessing
- HS.FHIRModel.R4.StructureDefinitionX.SeqOfStructureDefinitionXContext
- HS.FHIRModel.R4.StructureDefinitionX.SeqOfStructureDefinitionXMapping
- HS.FHIRModel.R4.StructureMapX.SeqOfStructureMapXDependent
- HS.FHIRModel.R4.StructureMapX.SeqOfStructureMapXGroup
- HS.FHIRModel.R4.StructureMapX.SeqOfStructureMapXInput
- HS.FHIRModel.R4.StructureMapX.SeqOfStructureMapXParameter
- HS.FHIRModel.R4.StructureMapX.SeqOfStructureMapXRule
- HS.FHIRModel.R4.StructureMapX.SeqOfStructureMapXSource
- HS.FHIRModel.R4.StructureMapX.SeqOfStructureMapXStructure
- HS.FHIRModel.R4.StructureMapX.SeqOfStructureMapXTarget
- HS.FHIRModel.R4.SubstanceNucleicAcidX.SeqOfSubstanceNucleicAcidXLinkage
- HS.FHIRModel.R4.SubstanceNucleicAcidX.SeqOfSubstanceNucleicAcidXSubunit
- HS.FHIRModel.R4.SubstanceNucleicAcidX.SeqOfSubstanceNucleicAcidXSugar
- HS.FHIRModel.R4.SubstancePolymerX.SeqOfSubstancePolymerXDegreeOfPolymerisation
- HS.FHIRModel.R4.SubstancePolymerX.SeqOfSubstancePolymerXMonomerSet
- HS.FHIRModel.R4.SubstancePolymerX.SeqOfSubstancePolymerXRepeat
- HS.FHIRModel.R4.SubstancePolymerX.SeqOfSubstancePolymerXRepeatUnit
- HS.FHIRModel.R4.SubstancePolymerX.SeqOfSubstancePolymerXStartingMaterial
- HS.FHIRModel.R4.SubstancePolymerX.SeqOfSubstancePolymerXStructuralRepresentation
- HS.FHIRModel.R4.SubstanceProteinX.SeqOfSubstanceProteinXSubunit
- HS.FHIRModel.R4.SubstanceReferenceInformationX.SeqOfSubstanceReferenceInformationXClassification
- HS.FHIRModel.R4.SubstanceReferenceInformationX.SeqOfSubstanceReferenceInformationXGene
- HS.FHIRModel.R4.SubstanceReferenceInformationX.SeqOfSubstanceReferenceInformationXGeneElement
- HS.FHIRModel.R4.SubstanceReferenceInformationX.SeqOfSubstanceReferenceInformationXTarget
- HS.FHIRModel.R4.SubstanceSourceMaterialX.SeqOfSubstanceSourceMaterialXAuthor
- HS.FHIRModel.R4.SubstanceSourceMaterialX.SeqOfSubstanceSourceMaterialXFractionDescription
- HS.FHIRModel.R4.SubstanceSourceMaterialX.SeqOfSubstanceSourceMaterialXPartDescription
- HS.FHIRModel.R4.SubstanceSpecificationX.SeqOfSubstanceSpecificationXCode
- HS.FHIRModel.R4.SubstanceSpecificationX.SeqOfSubstanceSpecificationXIsotope
- HS.FHIRModel.R4.SubstanceSpecificationX.SeqOfSubstanceSpecificationXMoiety
- HS.FHIRModel.R4.SubstanceSpecificationX.SeqOfSubstanceSpecificationXMolecularWeight
- HS.FHIRModel.R4.SubstanceSpecificationX.SeqOfSubstanceSpecificationXName
- HS.FHIRModel.R4.SubstanceSpecificationX.SeqOfSubstanceSpecificationXOfficial
- HS.FHIRModel.R4.SubstanceSpecificationX.SeqOfSubstanceSpecificationXProperty
- HS.FHIRModel.R4.SubstanceSpecificationX.SeqOfSubstanceSpecificationXRelationship
- HS.FHIRModel.R4.SubstanceSpecificationX.SeqOfSubstanceSpecificationXRepresentation
- HS.FHIRModel.R4.SubstanceX.SeqOfSubstanceXIngredient
- HS.FHIRModel.R4.SubstanceX.SeqOfSubstanceXInstance
- HS.FHIRModel.R4.SupplyRequestX.SeqOfSupplyRequestXParameter
- HS.FHIRModel.R4.TaskX.SeqOfTaskXInput
- HS.FHIRModel.R4.TaskX.SeqOfTaskXOutput
- HS.FHIRModel.R4.TerminologyCapabilitiesX.SeqOfTerminologyCapabilitiesXCodeSystem
- HS.FHIRModel.R4.TerminologyCapabilitiesX.SeqOfTerminologyCapabilitiesXFilter
- HS.FHIRModel.R4.TerminologyCapabilitiesX.SeqOfTerminologyCapabilitiesXParameter
- HS.FHIRModel.R4.TerminologyCapabilitiesX.SeqOfTerminologyCapabilitiesXVersion
- HS.FHIRModel.R4.TestReportX.SeqOfTestReportXAction
- HS.FHIRModel.R4.TestReportX.SeqOfTestReportXAction1
- HS.FHIRModel.R4.TestReportX.SeqOfTestReportXAction2
- HS.FHIRModel.R4.TestReportX.SeqOfTestReportXParticipant
- HS.FHIRModel.R4.TestReportX.SeqOfTestReportXTest
- HS.FHIRModel.R4.TestScriptX.SeqOfTestScriptXAction
- HS.FHIRModel.R4.TestScriptX.SeqOfTestScriptXAction1
- HS.FHIRModel.R4.TestScriptX.SeqOfTestScriptXAction2
- HS.FHIRModel.R4.TestScriptX.SeqOfTestScriptXCapability
- HS.FHIRModel.R4.TestScriptX.SeqOfTestScriptXDestination
- HS.FHIRModel.R4.TestScriptX.SeqOfTestScriptXFixture
- HS.FHIRModel.R4.TestScriptX.SeqOfTestScriptXLink
- HS.FHIRModel.R4.TestScriptX.SeqOfTestScriptXOrigin
- HS.FHIRModel.R4.TestScriptX.SeqOfTestScriptXRequestHeader
- HS.FHIRModel.R4.TestScriptX.SeqOfTestScriptXTest
- HS.FHIRModel.R4.TestScriptX.SeqOfTestScriptXVariable
- HS.FHIRModel.R4.ValueSetX.SeqOfValueSetXConcept
- HS.FHIRModel.R4.ValueSetX.SeqOfValueSetXContains
- HS.FHIRModel.R4.ValueSetX.SeqOfValueSetXDesignation
- HS.FHIRModel.R4.ValueSetX.SeqOfValueSetXFilter
- HS.FHIRModel.R4.ValueSetX.SeqOfValueSetXInclude
- HS.FHIRModel.R4.ValueSetX.SeqOfValueSetXParameter
- HS.FHIRModel.R4.VerificationResultX.SeqOfVerificationResultXPrimarySource
- HS.FHIRModel.R4.VerificationResultX.SeqOfVerificationResultXValidator
- HS.FHIRModel.R4.VisionPrescriptionX.SeqOfVisionPrescriptionXLensSpecification
- HS.FHIRModel.R4.VisionPrescriptionX.SeqOfVisionPrescriptionXPrism
- HS.FHIRServer.API.Data.Request
- HS.FHIRServer.API.Data.Response
- HS.FHIRServer.API.Data.RestClient.Response
- HS.Facility.Config
- HS.Gateway.Config
- HS.Gateway.X12.X834v5010.HealthCoverage
- HS.Gateway.X12.X834v5010.MemberLevelDetail
- HS.IHE.ATNA.Repository.Aggregation
- HS.IHE.ATNA.Repository.CustomPair
- HS.IHE.ATNA.Repository.DICOMData.ActiveParticipantContents
- HS.IHE.ATNA.Repository.DICOMData.AuditMessage
- HS.IHE.ATNA.Repository.DICOMData.AuditSourceIdentificationContents
- HS.IHE.ATNA.Repository.DICOMData.AuditSourceTypeCodeContent
- HS.IHE.ATNA.Repository.DICOMData.EventID
- HS.IHE.ATNA.Repository.DICOMData.EventIdentificationContents
- HS.IHE.ATNA.Repository.DICOMData.EventTypeCode
- HS.IHE.ATNA.Repository.DICOMData.MediaIdentifier
- HS.IHE.ATNA.Repository.DICOMData.ParticipantObjectDetail
- HS.IHE.ATNA.Repository.DICOMData.ParticipantObjectIDTypeCode
- HS.IHE.ATNA.Repository.DICOMData.ParticipantObjectIdentificationContents
- HS.IHE.ATNA.Repository.DICOMData.PurposeOfUseCode
- HS.IHE.ATNA.Repository.DICOMData.RoleIDCode
- HS.IHE.ATNA.Repository.Data.ActiveParticipantType
- HS.IHE.ATNA.Repository.Data.AuditMessage
- HS.IHE.ATNA.Repository.Data.AuditSourceIdentificationType
- HS.IHE.ATNA.Repository.Data.CodedValueType
- HS.IHE.ATNA.Repository.Data.EventIdentificationType
- HS.IHE.ATNA.Repository.Data.ParticipantObjectIdentificationType
- HS.IHE.ATNA.Repository.Data.TypeValuePairType
- HS.IHE.ATNA.Repository.Document
- HS.IHE.ATNA.Repository.Patient
- HS.IHE.CodedEntry
- HS.IHE.Common.Messages.MIMEAttachment
- HS.IHE.DSUB.NotificationBroker.Subscription
- HS.IHE.PIX.Manager.DomainsOfInterest
- HS.IHE.PIXv3.Manager.DomainsOfInterest
- HS.IHE.XDSb.Types.Association
- HS.IHE.XDSb.Types.Author
- HS.IHE.XDSb.Types.CodedValue
- HS.IHE.XDSb.Types.Context
- HS.IHE.XDSb.Types.Metadata
- HS.IHE.XDSb.Types.ObjectRef
- HS.IHE.XDSb.Types.Slot
- HS.IHE.XDSb.Types.SlotValue
- HS.IHE.XUA.Config
- HS.IHE.XUA.SAMLData
- HS.InfoType.Config
- HS.Message.AddUpdateHubEncounterInfo
- HS.Message.Analytics.StreamletResend
- HS.Message.AuditMoveResponseNode
- HS.Message.Crawler.ATNARequest
- HS.Message.Crawler.ATNAResponse
- HS.Message.Crawler.ATNARowCountRequest
- HS.Message.Crawler.ATNARowCountResponse
- HS.Message.Crawler.AbstractDataTransport
- HS.Message.Crawler.DSTIMERequest
- HS.Message.Crawler.DSTIMEResponse
- HS.Message.Crawler.HubRowCountRequest
- HS.Message.Crawler.HubRowCountResponse
- HS.Message.FHIR.Base
- HS.Message.GetFacilityMRNsRequest
- HS.Message.GetFacilityMRNsResponse
- HS.Message.IHE.Match
- HS.Message.IHE.XCPDPatient
- HS.Message.IHE.XCPDPatients
- HS.Message.IHE.XDSI.DocumentRequest
- HS.Message.IHE.XDSI.SeriesRequest
- HS.Message.IHE.XDSI.StudyRequest
- HS.Message.IHE.XDSb.ObjectRef
- HS.Message.IHE.XDSb.QueryItem
- HS.Message.PatientListMember
- HS.Message.PatientListResponse
- HS.Message.ProductListResponse
- HS.Message.Roles
- HS.Message.XMLMessage
- HS.Push.DocumentRegistry
- HS.Push.MessageCenter.Folder
- HS.Push.Registry.Recipient
- HS.Push.Types.DocumentAttachment
- HS.Push.Types.FilterInfo
- HS.Push.Types.FilterSerialInfo
- HS.Push.Types.MailMessageSerial
- HS.Push.Types.RecipientSerialInfo
- HS.Push.Types.XDSbDocumentInfo
- HS.Push.WebServices.Containers.ListItem
- HS.Registry.AuthDomain
- HS.Registry.CodeTableMap
- HS.Registry.Document
- HS.Registry.Document.Archive.Queue
- HS.Registry.Document.Archive.Rule
- HS.Registry.Document.Archive.RuleItem
- HS.Registry.Document.Association
- HS.Registry.Document.Classification
- HS.Registry.Document.ExternalIdentifier
- HS.Registry.Document.FHIR
- HS.Registry.Document.RegistryPackage
- HS.Registry.Document.SerialClassification
- HS.Registry.Document.SerialExternalIdentifier
- HS.Registry.Document.Slot
- HS.Registry.Document.Type.ValueType
- HS.Registry.FHIRCSPConfig
- HS.Registry.Patient
- HS.Registry.Person.Base
- HS.Registry.Person.User.WebServices.Containers.AuthResponse
- HS.Registry.Person.User.WebServices.Containers.Query
- HS.Registry.Person.User.WebServices.Containers.QueryItem
- HS.Registry.Person.User.WebServices.Containers.SessionInfo
- HS.Registry.Person.UserEmail
- HS.Registry.Person.UserFacility
- HS.Registry.Person.UserLoginID
- HS.Registry.Person.UserPWHistory
- HS.Registry.RSAKey
- HS.Registry.Role
- HS.Registry.Service.Abstract
- HS.Reports.Management.Config
- HS.Reports.Management.ConfigContainer
- HS.Reports.SerialCondition
- HS.Reports.XMLMessageContainer
- HS.SDA3.CodeTableDetail
- HS.SDA3.CodeTableExtension
- HS.SDA3.Container
- HS.SDA3.DataType
- HS.Sync.Tracker.Hub
- HS.Test.Types.Base
- HS.Test.UI.Test
- HS.Test.UI.TestGroup
- HS.Types.Address
- HS.Types.Analytics.AADBQStats
- HS.Types.Analytics.FeederStats
- HS.Types.Analytics.QueryDefinition
- HS.Types.Analytics.QueryParameter
- HS.Types.Analytics.StreamletFilter
- HS.Types.AnonymizationConfig
- HS.Types.AnonymizationInfo
- HS.Types.AsyncMessage
- HS.Types.AuditAggregateInfo
- HS.Types.AuthDomainInfo
- HS.Types.AuthorizationInfo
- HS.Types.BlobInfo
- HS.Types.CodeSerial
- HS.Types.ConsentedMRNs
- HS.Types.Contact
- HS.Types.DateFilter
- HS.Types.DateTime
- HS.Types.FacilityInfo
- HS.Types.Filters
- HS.Types.GatewayInfo
- HS.Types.GatewayUser
- HS.Types.Grid
- HS.Types.Grid.Axis
- HS.Types.Grid.Evaluator
- HS.Types.Grid.Expression
- HS.Types.IDNumber
- HS.Types.IHE.DSUB.SubscriptionItems
- HS.Types.IHE.DocumentRequest
- HS.Types.IHE.DocumentRequests
- HS.Types.IHE.Error
- HS.Types.IHE.Errors
- HS.Types.IHE.XCPDPatient
- HS.Types.IHE.XCPDPatients
- HS.Types.IHE.XDSb.Association
- HS.Types.IHE.XDSb.Author
- HS.Types.IHE.XDSb.DocumentAdditional
- HS.Types.IHE.XDSb.DocumentStored
- HS.Types.IHE.XDSb.Folder
- HS.Types.IHE.XDSb.SerialClassification
- HS.Types.IHE.XDSb.SerialExternalIdentifier
- HS.Types.IHE.XDSb.Slot
- HS.Types.IHE.XDSb.SlotValue
- HS.Types.IHE.XDSb.Submission
- HS.Types.IHE.XDSb.ValueType
- HS.Types.Identifier
- HS.Types.InfoTypeInfo
- HS.Types.PatientFilterInfo
- HS.Types.PatientIdentifiers
- HS.Types.PatientInfo
- HS.Types.PatientReport
- HS.Types.PatientSerial
- HS.Types.PersonInfo
- HS.Types.PersonName
- HS.Types.PhysicianDestination
- HS.Types.PhysicianInfo
- HS.Types.ReportSection
- HS.Types.RequestInfo
- HS.Types.RequestorInfo
- HS.Types.SectionType
- HS.Types.SectionTypeFilter
- HS.Types.StreamletInfo
- HS.Types.SubscriptionSerialInfo
- HS.Types.Telecom
- HS.Types.TerminologySyncRequest
- HS.Types.TerminologySyncResponse
- HS.Types.UserPrefInfo
- HS.Types.UserRecipientInfo
- HS.Types.XMLMessage
- HS.Types.XMLMessageList
- HS.Types.XMLSummaryType
- HS.Types.Zip
- HS.Types.ZipItem
- HS.Util.Installer.ConfigItem
- HS.Util.Installer.Kit.Namespace
- HS.Util.Installer.Kit.Namespaces
- HS.Util.Installer.Kit.RunableClass
- HS.Util.RESTCSPConfig
- HS.Util.SessionData.AbstractSessionData
- HS.Util.SessionData.Session
- HS.Util.Status.Metadata.AbstractMessageContainer
- HS.Util.Status.Metadata.ViolationMessage
- HS.Util.Status.Metadata.Wrapper
- HS.Util.Trace.Item
- HS.Util.WebServices.ListItem
- HS.Util.WebServices.ServiceStatus
- HSMOD.OperationalReporting.HSPIData.Request
- HSMOD.OperationalReporting.HSPIData.Response
- INFORMATION.SCHEMA.CURRENTSTATEMENTS
- INFORMATION.SCHEMA.STATEMENTCHILDREN
- INFORMATION.SCHEMA.STATEMENTDAILYSTATS
- INFORMATION.SCHEMA.STATEMENTHOURLYSTATS
- INFORMATION.SCHEMA.STATEMENTLOCATIONS
- INFORMATION.SCHEMA.STATEMENTPARAMETERSTATS
- INFORMATION.SCHEMA.STATEMENTPRIVACTIONS
- INFORMATION.SCHEMA.STATEMENTPRIVOBJECTS
- INFORMATION.SCHEMA.STATEMENTRELATIONS
- INFORMATION.SCHEMA.STATEMENTS