diff --git a/backend/pkg/auth/utils.go b/backend/pkg/auth/utils.go
deleted file mode 100644
index 77709b7e..00000000
--- a/backend/pkg/auth/utils.go
+++ /dev/null
@@ -1,56 +0,0 @@
-package auth
-
-import (
- "errors"
- "github.com/golang-jwt/jwt"
- "time"
-)
-
-//TODO: this should match the ID and username for the user.
-type JWTClaim struct {
- Username string `json:"username"`
- UserId string `json:"user_id"`
- Email string `json:"email"`
- jwt.StandardClaims
-}
-
-func GenerateJWT(encryptionKey string, username string, userId string) (tokenString string, err error) {
- expirationTime := time.Now().Add(2 * time.Hour)
- claims := &JWTClaim{
- Username: username,
- Email: username,
- UserId: userId,
- StandardClaims: jwt.StandardClaims{
- ExpiresAt: expirationTime.Unix(),
- },
- }
- token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
- tokenString, err = token.SignedString([]byte(encryptionKey))
- return
-}
-
-func ValidateToken(encryptionKey string, signedToken string) (*JWTClaim, error) {
- token, err := jwt.ParseWithClaims(
- signedToken,
- &JWTClaim{},
- func(token *jwt.Token) (interface{}, error) {
- if jwt.SigningMethodHS256 != token.Method {
- return nil, errors.New("Invalid signing algorithm")
- }
- return []byte(encryptionKey), nil
- },
- )
- if err != nil {
- return nil, err
- }
- claims, ok := token.Claims.(*JWTClaim)
- if !ok {
- err = errors.New("couldn't parse claims")
- return nil, err
- }
- if claims.ExpiresAt < time.Now().Local().Unix() {
- err = errors.New("token expired")
- return nil, err
- }
- return claims, nil
-}
diff --git a/backend/pkg/config/config.go b/backend/pkg/config/config.go
index e79fee66..189ea40b 100644
--- a/backend/pkg/config/config.go
+++ b/backend/pkg/config/config.go
@@ -27,6 +27,12 @@ func (c *configuration) Init() error {
c.SetDefault("web.src.frontend.path", "/opt/fasten/web")
c.SetDefault("web.database.location", "/opt/fasten/db/fasten.db") //TODO: should be /opt/fasten/fasten.db
+ c.SetDefault("web.couchdb.scheme", "http")
+ c.SetDefault("web.couchdb.host", "localhost")
+ c.SetDefault("web.couchdb.port", "5984")
+ c.SetDefault("web.couchdb.admin_username", "admin")
+ c.SetDefault("web.couchdb.admin_password", "mysecretpassword")
+
c.SetDefault("log.level", "INFO")
c.SetDefault("log.file", "")
diff --git a/backend/pkg/database/couchdb_repository.go b/backend/pkg/database/couchdb_repository.go
new file mode 100644
index 00000000..92ac650e
--- /dev/null
+++ b/backend/pkg/database/couchdb_repository.go
@@ -0,0 +1,88 @@
+package database
+
+import (
+ "context"
+ "fmt"
+ "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
+ "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
+ "github.com/go-kivik/couchdb/v3"
+ _ "github.com/go-kivik/couchdb/v3" // The CouchDB driver
+ "github.com/go-kivik/kivik/v3"
+ "github.com/sirupsen/logrus"
+)
+
+func NewRepository(appConfig config.Interface, globalLogger logrus.FieldLogger) (DatabaseRepository, error) {
+ //backgroundContext := context.Background()
+
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
+ // Gorm/SQLite setup
+ ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
+ globalLogger.Infof("Trying to connect to sqlite db: %s\n", appConfig.GetString("web.database.location"))
+
+ // When a transaction cannot lock the database, because it is already locked by another one,
+ // SQLite by default throws an error: database is locked. This behavior is usually not appropriate when
+ // concurrent access is needed, typically when multiple processes write to the same database.
+ // PRAGMA busy_timeout lets you set a timeout or a handler for these events. When setting a timeout,
+ // SQLite will try the transaction multiple times within this timeout.
+ // fixes #341
+ // https://rsqlite.r-dbi.org/reference/sqlitesetbusyhandler
+ // retrying for 30000 milliseconds, 30seconds - this would be unreasonable for a distributed multi-tenant application,
+ // but should be fine for local usage.
+
+ couchdbUrl := fmt.Sprintf("%s://%s:%s", appConfig.GetString("web.couchdb.scheme"), appConfig.GetString("web.couchdb.host"), appConfig.GetString("web.couchdb.port"))
+ database, err := kivik.New("couch", couchdbUrl)
+ if err != nil {
+ return nil, fmt.Errorf("Failed to connect to database! - %v", err)
+ }
+
+ err = database.Authenticate(context.Background(),
+ couchdb.BasicAuth(
+ appConfig.GetString("web.couchdb.admin_username"),
+ appConfig.GetString("web.couchdb.admin_password")),
+ )
+
+ if err != nil {
+ return nil, fmt.Errorf("Failed to authenticate to database! - %v", err)
+ }
+ globalLogger.Infof("Successfully connected to coubdb: %s\n", couchdbUrl)
+
+ deviceRepo := couchdbRepository{
+ appConfig: appConfig,
+ logger: globalLogger,
+ client: database,
+ }
+ return &deviceRepo, nil
+}
+
+type couchdbRepository struct {
+ appConfig config.Interface
+ logger logrus.FieldLogger
+
+ client *kivik.Client
+}
+
+type couchDbUser struct {
+ ID string `json:"_id"`
+ Name string `json:"name"`
+ Type string `json:"type"`
+ Roles []string `json:"roles"`
+ Password string `json:"password"`
+}
+
+func (cr *couchdbRepository) CreateUser(ctx context.Context, user *models.User) error {
+
+ newUser := &couchDbUser{
+ ID: fmt.Sprintf("%s%s", kivik.UserPrefix, user.Username),
+ Name: user.Username,
+ Type: "user",
+ Roles: []string{},
+ Password: user.Password,
+ }
+ db := cr.client.DB(ctx, "_users")
+ _, err := db.Put(ctx, newUser.ID, newUser)
+ return err
+}
+
+func (cr *couchdbRepository) Close() error {
+ return nil
+}
diff --git a/backend/pkg/database/interface.go b/backend/pkg/database/interface.go
index 7b009f1f..b5ec98ae 100644
--- a/backend/pkg/database/interface.go
+++ b/backend/pkg/database/interface.go
@@ -10,21 +10,4 @@ type DatabaseRepository interface {
Close() error
CreateUser(context.Context, *models.User) error
- GetUserByEmail(context.Context, string) (*models.User, error)
- GetCurrentUser(context.Context) *models.User
-
- GetSummary(ctx context.Context) (*models.Summary, error)
-
- UpsertResource(context.Context, *models.ResourceFhir) error
- GetResourceBySourceType(context.Context, string, string) (*models.ResourceFhir, error)
- GetResourceBySourceId(context.Context, string, string) (*models.ResourceFhir, error)
- ListResources(context.Context, models.ListResourceQueryOptions) ([]models.ResourceFhir, error)
- GetPatientForSources(ctx context.Context) ([]models.ResourceFhir, error)
- //UpsertProfile(context.Context, *models.Profile) error
- //UpsertOrganziation(context.Context, *models.Organization) error
-
- CreateSource(context.Context, *models.Source) error
- GetSource(context.Context, string) (*models.Source, error)
- GetSourceSummary(context.Context, string) (*models.SourceSummary, error)
- GetSources(context.Context) ([]models.Source, error)
}
diff --git a/backend/pkg/database/sqlite_repository.go b/backend/pkg/database/sqlite_repository.go
deleted file mode 100644
index d8354c76..00000000
--- a/backend/pkg/database/sqlite_repository.go
+++ /dev/null
@@ -1,378 +0,0 @@
-package database
-
-import (
- "context"
- "encoding/json"
- "fmt"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/gin-gonic/gin"
- "github.com/glebarez/sqlite"
- "github.com/google/uuid"
- "github.com/sirupsen/logrus"
- "gorm.io/gorm"
- "net/url"
-)
-
-func NewRepository(appConfig config.Interface, globalLogger logrus.FieldLogger) (DatabaseRepository, error) {
- //backgroundContext := context.Background()
-
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- // Gorm/SQLite setup
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- globalLogger.Infof("Trying to connect to sqlite db: %s\n", appConfig.GetString("web.database.location"))
-
- // When a transaction cannot lock the database, because it is already locked by another one,
- // SQLite by default throws an error: database is locked. This behavior is usually not appropriate when
- // concurrent access is needed, typically when multiple processes write to the same database.
- // PRAGMA busy_timeout lets you set a timeout or a handler for these events. When setting a timeout,
- // SQLite will try the transaction multiple times within this timeout.
- // fixes #341
- // https://rsqlite.r-dbi.org/reference/sqlitesetbusyhandler
- // retrying for 30000 milliseconds, 30seconds - this would be unreasonable for a distributed multi-tenant application,
- // but should be fine for local usage.
- pragmaStr := sqlitePragmaString(map[string]string{
- "busy_timeout": "30000",
- "foreign_keys": "ON",
- })
- database, err := gorm.Open(sqlite.Open(appConfig.GetString("web.database.location")+pragmaStr), &gorm.Config{
- //TODO: figure out how to log database queries again.
- //Logger: logger
- DisableForeignKeyConstraintWhenMigrating: true,
- })
- if err != nil {
- return nil, fmt.Errorf("Failed to connect to database! - %v", err)
- }
- globalLogger.Infof("Successfully connected to scrutiny sqlite db: %s\n", appConfig.GetString("web.database.location"))
-
- //TODO: automigrate for now
- err = database.AutoMigrate(
- &models.User{},
- &models.Source{},
- &models.ResourceFhir{},
- )
- if err != nil {
- return nil, fmt.Errorf("Failed to automigrate! - %v", err)
- }
-
- // create/update admin user
- adminUser := models.User{}
- err = database.FirstOrCreate(&adminUser, models.User{Username: "admin"}).Error
- if err != nil {
- return nil, fmt.Errorf("Failed to create admin user! - %v", err)
- }
-
- deviceRepo := sqliteRepository{
- appConfig: appConfig,
- logger: globalLogger,
- gormClient: database,
- }
- return &deviceRepo, nil
-}
-
-type sqliteRepository struct {
- appConfig config.Interface
- logger logrus.FieldLogger
-
- gormClient *gorm.DB
-}
-
-func (sr *sqliteRepository) Close() error {
- return nil
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// User
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-
-func (sr *sqliteRepository) CreateUser(ctx context.Context, user *models.User) error {
- if err := user.HashPassword(user.Password); err != nil {
- return err
- }
- record := sr.gormClient.Create(user)
- if record.Error != nil {
- return record.Error
- }
- return nil
-}
-func (sr *sqliteRepository) GetUserByEmail(ctx context.Context, username string) (*models.User, error) {
- var foundUser models.User
- result := sr.gormClient.Where(models.User{Username: username}).First(&foundUser)
- return &foundUser, result.Error
-}
-
-func (sr *sqliteRepository) GetCurrentUser(ctx context.Context) *models.User {
- ginCtx := ctx.(*gin.Context)
- var currentUser models.User
- sr.gormClient.First(¤tUser, models.User{Username: ginCtx.MustGet("AUTH_USERNAME").(string)})
-
- return ¤tUser
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// User
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-
-func (sr *sqliteRepository) GetSummary(ctx context.Context) (*models.Summary, error) {
-
- // we want a count of all resources for this user by type
- var resourceCountResults []map[string]interface{}
-
- //group by resource type and return counts
- // SELECT source_resource_type as resource_type, COUNT(*) as count FROM resource_fhirs WHERE source_id = "53c1e930-63af-46c9-b760-8e83cbc1abd9" GROUP BY source_resource_type;
- result := sr.gormClient.WithContext(ctx).
- Model(models.ResourceFhir{}).
- Select("source_id, source_resource_type as resource_type, count(*) as count").
- Group("source_resource_type").
- Where(models.OriginBase{
- UserID: sr.GetCurrentUser(ctx).ID,
- }).
- Scan(&resourceCountResults)
- if result.Error != nil {
- return nil, result.Error
- }
-
- // we want a list of all sources (when they were last updated)
- sources, err := sr.GetSources(ctx)
- if err != nil {
- return nil, err
- }
-
- // we want the main Patient for each source
- patients, err := sr.GetPatientForSources(ctx)
- if err != nil {
- return nil, err
- }
-
- summary := &models.Summary{
- Sources: sources,
- ResourceTypeCounts: resourceCountResults,
- Patients: patients,
- }
-
- return summary, nil
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// Resource
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-
-func (sr *sqliteRepository) UpsertResource(ctx context.Context, resourceModel *models.ResourceFhir) error {
- sr.logger.Infof("insert/update (%T) %v", resourceModel, resourceModel)
-
- if sr.gormClient.Debug().WithContext(ctx).
- Where(models.OriginBase{
- SourceID: resourceModel.GetSourceID(),
- SourceResourceID: resourceModel.GetSourceResourceID(),
- SourceResourceType: resourceModel.GetSourceResourceType(), //TODO: and UpdatedAt > old UpdatedAt
- }).Updates(resourceModel).RowsAffected == 0 {
- sr.logger.Infof("resource does not exist, creating: %s %s %s", resourceModel.GetSourceID(), resourceModel.GetSourceResourceID(), resourceModel.GetSourceResourceType())
- return sr.gormClient.Debug().Create(resourceModel).Error
- }
- return nil
-}
-
-func (sr *sqliteRepository) ListResources(ctx context.Context, queryOptions models.ListResourceQueryOptions) ([]models.ResourceFhir, error) {
-
- queryParam := models.ResourceFhir{
- OriginBase: models.OriginBase{
- UserID: sr.GetCurrentUser(ctx).ID,
- },
- }
-
- if len(queryOptions.SourceResourceType) > 0 {
- queryParam.OriginBase.SourceResourceType = queryOptions.SourceResourceType
- }
-
- if len(queryOptions.SourceID) > 0 {
- sourceUUID, err := uuid.Parse(queryOptions.SourceID)
- if err != nil {
- return nil, err
- }
-
- queryParam.OriginBase.SourceID = sourceUUID
- }
-
- manifestJson, _ := json.MarshalIndent(queryParam, "", " ")
- sr.logger.Infof("THE QUERY OBJECT===========> %v", string(manifestJson))
-
- var wrappedResourceModels []models.ResourceFhir
- results := sr.gormClient.WithContext(ctx).
- Where(queryParam).
- Find(&wrappedResourceModels)
-
- return wrappedResourceModels, results.Error
-}
-
-func (sr *sqliteRepository) GetResourceBySourceType(ctx context.Context, sourceResourceType string, sourceResourceId string) (*models.ResourceFhir, error) {
- queryParam := models.ResourceFhir{
- OriginBase: models.OriginBase{
- UserID: sr.GetCurrentUser(ctx).ID,
- SourceResourceType: sourceResourceType,
- SourceResourceID: sourceResourceId,
- },
- }
-
- var wrappedResourceModel models.ResourceFhir
- results := sr.gormClient.WithContext(ctx).
- Where(queryParam).
- First(&wrappedResourceModel)
-
- return &wrappedResourceModel, results.Error
-}
-
-func (sr *sqliteRepository) GetResourceBySourceId(ctx context.Context, sourceId string, sourceResourceId string) (*models.ResourceFhir, error) {
- sourceIdUUID, err := uuid.Parse(sourceId)
- if err != nil {
- return nil, err
- }
-
- queryParam := models.ResourceFhir{
- OriginBase: models.OriginBase{
- UserID: sr.GetCurrentUser(ctx).ID,
- SourceID: sourceIdUUID,
- SourceResourceID: sourceResourceId,
- },
- }
-
- var wrappedResourceModel models.ResourceFhir
- results := sr.gormClient.WithContext(ctx).
- Where(queryParam).
- First(&wrappedResourceModel)
-
- return &wrappedResourceModel, results.Error
-}
-
-// Get the patient for each source (for the current user)
-func (sr *sqliteRepository) GetPatientForSources(ctx context.Context) ([]models.ResourceFhir, error) {
-
- //SELECT * FROM resource_fhirs WHERE user_id = "" and source_resource_type = "Patient" GROUP BY source_id
-
- //var sourceCred models.Source
- //results := sr.gormClient.WithContext(ctx).
- // Where(models.Source{UserID: sr.GetCurrentUser(ctx).ID, ModelBase: models.ModelBase{ID: sourceUUID}}).
- // First(&sourceCred)
-
- var wrappedResourceModels []models.ResourceFhir
- results := sr.gormClient.WithContext(ctx).
- Model(models.ResourceFhir{}).
- Group("source_id").
- Where(models.OriginBase{
- UserID: sr.GetCurrentUser(ctx).ID,
- SourceResourceType: "Patient",
- }).
- Find(&wrappedResourceModels)
-
- return wrappedResourceModels, results.Error
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// Source
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-
-func (sr *sqliteRepository) CreateSource(ctx context.Context, sourceCreds *models.Source) error {
- sourceCreds.UserID = sr.GetCurrentUser(ctx).ID
-
- if sr.gormClient.WithContext(ctx).
- Where(models.Source{
- UserID: sourceCreds.UserID,
- SourceType: sourceCreds.SourceType,
- PatientId: sourceCreds.PatientId}).Updates(sourceCreds).RowsAffected == 0 {
- return sr.gormClient.WithContext(ctx).Create(sourceCreds).Error
- }
- return nil
-}
-
-func (sr *sqliteRepository) GetSource(ctx context.Context, sourceId string) (*models.Source, error) {
- sourceUUID, err := uuid.Parse(sourceId)
- if err != nil {
- return nil, err
- }
-
- var sourceCred models.Source
- results := sr.gormClient.WithContext(ctx).
- Where(models.Source{UserID: sr.GetCurrentUser(ctx).ID, ModelBase: models.ModelBase{ID: sourceUUID}}).
- First(&sourceCred)
-
- return &sourceCred, results.Error
-}
-
-func (sr *sqliteRepository) GetSourceSummary(ctx context.Context, sourceId string) (*models.SourceSummary, error) {
- sourceUUID, err := uuid.Parse(sourceId)
- if err != nil {
- return nil, err
- }
-
- sourceSummary := &models.SourceSummary{}
-
- source, err := sr.GetSource(ctx, sourceId)
- if err != nil {
- return nil, err
- }
- sourceSummary.Source = source
-
- //group by resource type and return counts
- // SELECT source_resource_type as resource_type, COUNT(*) as count FROM resource_fhirs WHERE source_id = "53c1e930-63af-46c9-b760-8e83cbc1abd9" GROUP BY source_resource_type;
-
- var resourceTypeCounts []map[string]interface{}
-
- result := sr.gormClient.WithContext(ctx).
- Model(models.ResourceFhir{}).
- Select("source_id, source_resource_type as resource_type, count(*) as count").
- Group("source_resource_type").
- Where(models.OriginBase{
- UserID: sr.GetCurrentUser(ctx).ID,
- SourceID: sourceUUID,
- }).
- Scan(&resourceTypeCounts)
-
- if result.Error != nil {
- return nil, result.Error
- }
-
- sourceSummary.ResourceTypeCounts = resourceTypeCounts
-
- //set patient
- var wrappedPatientResourceModel models.ResourceFhir
- results := sr.gormClient.WithContext(ctx).
- Where(models.OriginBase{
- UserID: sr.GetCurrentUser(ctx).ID,
- SourceResourceType: "Patient",
- SourceID: sourceUUID,
- }).
- First(&wrappedPatientResourceModel)
-
- if results.Error != nil {
- return nil, result.Error
- }
- sourceSummary.Patient = &wrappedPatientResourceModel
-
- return sourceSummary, nil
-}
-
-func (sr *sqliteRepository) GetSources(ctx context.Context) ([]models.Source, error) {
-
- var sourceCreds []models.Source
- results := sr.gormClient.WithContext(ctx).
- Where(models.Source{UserID: sr.GetCurrentUser(ctx).ID}).
- Find(&sourceCreds)
-
- return sourceCreds, results.Error
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// Utilities
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-
-func sqlitePragmaString(pragmas map[string]string) string {
- q := url.Values{}
- for key, val := range pragmas {
- q.Add("_pragma", key+"="+val)
- }
-
- queryStr := q.Encode()
- if len(queryStr) > 0 {
- return "?" + queryStr
- }
- return ""
-}
diff --git a/backend/pkg/hub/README.md b/backend/pkg/hub/README.md
deleted file mode 100644
index 773704d4..00000000
--- a/backend/pkg/hub/README.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Hub
-
-The Fasten Hub is a semi stand-alone application that can retrieve data from various Medical Providers, transform it, and
-store it in the database. This code will eventually be moved into its own repository.
-
-# Types
-
-There are multiple protocols used by the Medical Provider industry to transfer patient data, the following mechanisms are the
-ones that Fasten supports
-
-### FHIR
-
diff --git a/backend/pkg/hub/factory.go b/backend/pkg/hub/factory.go
deleted file mode 100644
index b863bdf4..00000000
--- a/backend/pkg/hub/factory.go
+++ /dev/null
@@ -1,58 +0,0 @@
-package hub
-
-import (
- "context"
- "errors"
- "fmt"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/aetna"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/athena"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/bluebutton"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/careevolution"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/cerner"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/cigna"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/epic"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/healthit"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/logica"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/manual"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/sirupsen/logrus"
- "net/http"
-)
-
-func NewClient(sourceType pkg.SourceType, ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, credentials models.Source, testHttpClient ...*http.Client) (base.Client, *models.Source, error) {
-
- var sourceClient base.Client
- var updatedSource *models.Source
- var err error
- switch sourceType {
- case pkg.SourceTypeAetna:
- sourceClient, updatedSource, err = aetna.NewClient(ctx, appConfig, globalLogger, credentials, testHttpClient...)
- case pkg.SourceTypeAthena:
- sourceClient, updatedSource, err = athena.NewClient(ctx, appConfig, globalLogger, credentials, testHttpClient...)
- case pkg.SourceTypeAnthem:
- sourceClient, updatedSource, err = cigna.NewClient(ctx, appConfig, globalLogger, credentials, testHttpClient...)
- case pkg.SourceTypeBlueButtonMedicare:
- sourceClient, updatedSource, err = bluebutton.NewClient(ctx, appConfig, globalLogger, credentials, testHttpClient...)
- case pkg.SourceTypeCareEvolution:
- sourceClient, updatedSource, err = careevolution.NewClient(ctx, appConfig, globalLogger, credentials, testHttpClient...)
- case pkg.SourceTypeCerner:
- sourceClient, updatedSource, err = cerner.NewClient(ctx, appConfig, globalLogger, credentials, testHttpClient...)
- case pkg.SourceTypeCigna:
- sourceClient, updatedSource, err = cigna.NewClient(ctx, appConfig, globalLogger, credentials, testHttpClient...)
- case pkg.SourceTypeEpic:
- sourceClient, updatedSource, err = epic.NewClient(ctx, appConfig, globalLogger, credentials, testHttpClient...)
- case pkg.SourceTypeHealthIT:
- sourceClient, updatedSource, err = healthit.NewClient(ctx, appConfig, globalLogger, credentials, testHttpClient...)
- case pkg.SourceTypeLogica:
- sourceClient, updatedSource, err = logica.NewClient(ctx, appConfig, globalLogger, credentials, testHttpClient...)
- case pkg.SourceTypeManual:
- sourceClient, updatedSource, err = manual.NewClient(ctx, appConfig, globalLogger, credentials, testHttpClient...)
- default:
- return nil, updatedSource, errors.New(fmt.Sprintf("Unknown Source Type: %s", sourceType))
- }
-
- return sourceClient, updatedSource, err
-}
diff --git a/backend/pkg/hub/internal/fhir/aetna/client.go b/backend/pkg/hub/internal/fhir/aetna/client.go
deleted file mode 100644
index c5f6d219..00000000
--- a/backend/pkg/hub/internal/fhir/aetna/client.go
+++ /dev/null
@@ -1,49 +0,0 @@
-package aetna
-
-import (
- "context"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/sirupsen/logrus"
- "net/http"
-)
-
-type AetnaClient struct {
- *base.FHIR401Client
-}
-
-func NewClient(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (base.Client, *models.Source, error) {
- baseClient, updatedSource, err := base.NewFHIR401Client(ctx, appConfig, globalLogger, source, testHttpClient...)
- return AetnaClient{
- baseClient,
- }, updatedSource, err
-}
-
-//Overrides
-
-func (c AetnaClient) SyncAll(db database.DatabaseRepository) error {
-
- bundle, err := c.GetResourceBundle("Patient")
- if err != nil {
- c.Logger.Infof("An error occurred while getting patient bundle %s", c.Source.PatientId)
- return err
- }
-
- wrappedResourceModels, err := c.ProcessBundle(bundle)
- if err != nil {
- c.Logger.Infof("An error occurred while processing patient bundle %s", c.Source.PatientId)
- return err
- }
- //todo, create the resources in dependency order
-
- for _, apiModel := range wrappedResourceModels {
- err = db.UpsertResource(context.Background(), &apiModel)
- if err != nil {
- c.Logger.Info("An error occurred while upserting resource")
- return err
- }
- }
- return nil
-}
diff --git a/backend/pkg/hub/internal/fhir/athena/client.go b/backend/pkg/hub/internal/fhir/athena/client.go
deleted file mode 100644
index 33d54727..00000000
--- a/backend/pkg/hub/internal/fhir/athena/client.go
+++ /dev/null
@@ -1,49 +0,0 @@
-package athena
-
-import (
- "context"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/sirupsen/logrus"
- "net/http"
-)
-
-type AthenaClient struct {
- *base.FHIR401Client
-}
-
-func NewClient(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (base.Client, *models.Source, error) {
- baseClient, updatedSource, err := base.NewFHIR401Client(ctx, appConfig, globalLogger, source, testHttpClient...)
- return AthenaClient{
- baseClient,
- }, updatedSource, err
-}
-
-func (c AthenaClient) SyncAll(db database.DatabaseRepository) error {
- supportedResources := []string{
- "AllergyIntolerance",
- //"Binary",
- "CarePlan",
- "CareTeam",
- "Condition",
- "Device",
- "DiagnosticReport",
- "DocumentReference",
- "Encounter",
- "Goal",
- "Immunization",
- //"Location",
- //"Medication",
- //"MedicationRequest",
- "Observation",
- //"Organization",
- //"Patient",
- //"Practitioner",
- "Procedure",
- //"Provenance",
- }
-
- return c.SyncAllByResourceName(db, supportedResources)
-}
diff --git a/backend/pkg/hub/internal/fhir/base/base_client.go b/backend/pkg/hub/internal/fhir/base/base_client.go
deleted file mode 100644
index a2b3565c..00000000
--- a/backend/pkg/hub/internal/fhir/base/base_client.go
+++ /dev/null
@@ -1,154 +0,0 @@
-package base
-
-import (
- "context"
- "encoding/json"
- "fmt"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/sirupsen/logrus"
- "golang.org/x/oauth2"
- "io"
- "log"
- "net/http"
- "net/url"
- "os"
- "strings"
- "time"
-)
-
-type BaseClient struct {
- Context context.Context
- AppConfig config.Interface
- Logger logrus.FieldLogger
-
- OauthClient *http.Client
- Source models.Source
- Headers map[string]string
-}
-
-func (c *BaseClient) SyncAllBundle(db database.DatabaseRepository, bundleFile *os.File) error {
- panic("SyncAllBundle functionality is not available on this client")
-}
-
-func NewBaseClient(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (*BaseClient, *models.Source, error) {
- var httpClient *http.Client
- var updatedSource *models.Source
- if len(testHttpClient) == 0 {
- //check if we need to refresh the access token
- //https://github.com/golang/oauth2/issues/84#issuecomment-520099526
- // https://chromium.googlesource.com/external/github.com/golang/oauth2/+/8f816d62a2652f705144857bbbcc26f2c166af9e/oauth2.go#239
- conf := &oauth2.Config{
- ClientID: source.ClientId,
- ClientSecret: "",
- Endpoint: oauth2.Endpoint{
- AuthURL: source.OauthAuthorizationEndpoint,
- TokenURL: source.OauthTokenEndpoint,
- },
- //RedirectURL: "",
- //Scopes: nil,
- }
- token := &oauth2.Token{
- TokenType: "Bearer",
- RefreshToken: source.RefreshToken,
- AccessToken: source.AccessToken,
- Expiry: time.Unix(source.ExpiresAt, 0),
- }
- if token.Expiry.Before(time.Now()) { // expired so let's update it
- log.Println("access token expired, refreshing...")
- src := conf.TokenSource(ctx, token)
- newToken, err := src.Token() // this actually goes and renews the tokens
- if err != nil {
- return nil, nil, err
- }
- if newToken.AccessToken != token.AccessToken {
- token = newToken
-
- // update the "source" credential with new data (which will need to be sent
- updatedSource = &source
- updatedSource.AccessToken = newToken.AccessToken
- updatedSource.ExpiresAt = newToken.Expiry.Unix()
- // Don't overwrite `RefreshToken` with an empty value
- // if this was a token refreshing request.
- if newToken.RefreshToken != "" {
- updatedSource.RefreshToken = newToken.RefreshToken
- }
-
- }
- }
-
- // OLD CODE
- httpClient = oauth2.NewClient(ctx, oauth2.StaticTokenSource(token))
-
- } else {
- //Testing mode.
- httpClient = testHttpClient[0]
- }
-
- httpClient.Timeout = 10 * time.Second
-
- return &BaseClient{
- Context: ctx,
- AppConfig: appConfig,
- Logger: globalLogger,
- OauthClient: httpClient,
- Source: source,
- Headers: map[string]string{},
- }, updatedSource, nil
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// HttpClient
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-func (c *BaseClient) GetRequest(resourceSubpathOrNext string, decodeModelPtr interface{}) error {
- resourceUrl, err := url.Parse(resourceSubpathOrNext)
- if err != nil {
- return err
- }
- if !resourceUrl.IsAbs() {
- resourceUrl, err = url.Parse(fmt.Sprintf("%s/%s", strings.TrimRight(c.Source.ApiEndpointBaseUrl, "/"), strings.TrimLeft(resourceSubpathOrNext, "/")))
- }
- if err != nil {
- return err
- }
-
- req, err := http.NewRequest(http.MethodGet, resourceUrl.String(), nil)
- if err != nil {
- return err
- }
-
- for key, val := range c.Headers {
- //req.Header.Add("Accept", "application/json+fhir")
- req.Header.Add(key, val)
- }
-
- //resp, err := c.OauthClient.Get(url)
- resp, err := c.OauthClient.Do(req)
-
- if err != nil {
- return err
- }
- defer resp.Body.Close()
-
- if resp.StatusCode >= 300 || resp.StatusCode < 200 {
- b, _ := io.ReadAll(resp.Body)
- return fmt.Errorf("An error occurred during request %s - %d - %s [%s]", resourceUrl, resp.StatusCode, resp.Status, string(b))
- }
-
- err = ParseBundle(resp.Body, decodeModelPtr)
- return err
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// Helper Functions
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-func ParseBundle(r io.Reader, decodeModelPtr interface{}) error {
- decoder := json.NewDecoder(r)
- //decoder.DisallowUnknownFields() //make sure we throw an error if unknown fields are present.
- err := decoder.Decode(decodeModelPtr)
- if err != nil {
- return err
- }
- return err
-}
diff --git a/backend/pkg/hub/internal/fhir/base/fhir401_client.go b/backend/pkg/hub/internal/fhir/base/fhir401_client.go
deleted file mode 100644
index 8aaab185..00000000
--- a/backend/pkg/hub/internal/fhir/base/fhir401_client.go
+++ /dev/null
@@ -1,208 +0,0 @@
-package base
-
-import (
- "context"
- "fmt"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/fastenhealth/gofhir-models/fhir401"
- fhirutils "github.com/fastenhealth/gofhir-models/fhir401/utils"
- "github.com/samber/lo"
- "github.com/sirupsen/logrus"
- "gorm.io/datatypes"
- "net/http"
-)
-
-type FHIR401Client struct {
- *BaseClient
-}
-
-func NewFHIR401Client(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (*FHIR401Client, *models.Source, error) {
- baseClient, updatedSource, err := NewBaseClient(ctx, appConfig, globalLogger, source, testHttpClient...)
- return &FHIR401Client{
- baseClient,
- }, updatedSource, err
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// Sync
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-func (c *FHIR401Client) SyncAll(db database.DatabaseRepository) error {
-
- bundle, err := c.GetPatientBundle(c.Source.PatientId)
- if err != nil {
- return err
- }
-
- wrappedResourceModels, err := c.ProcessBundle(bundle)
- if err != nil {
- c.Logger.Infof("An error occurred while processing patient bundle %s", c.Source.PatientId)
- return err
- }
- //todo, create the resources in dependency order
-
- for _, apiModel := range wrappedResourceModels {
- err = db.UpsertResource(context.Background(), &apiModel)
- if err != nil {
- return err
- }
- }
- return nil
-}
-
-//TODO, find a way to sync references that cannot be searched by patient ID.
-func (c *FHIR401Client) SyncAllByResourceName(db database.DatabaseRepository, resourceNames []string) error {
-
- //Store the Patient
- patientResource, err := c.GetPatient(c.Source.PatientId)
- if err != nil {
- return err
- }
- patientJson, err := patientResource.MarshalJSON()
- if err != nil {
- return err
- }
-
- patientResourceType, patientResourceId := patientResource.ResourceRef()
- patientResourceFhir := models.ResourceFhir{
- OriginBase: models.OriginBase{
- UserID: c.Source.UserID,
- SourceID: c.Source.ID,
- SourceResourceType: patientResourceType,
- SourceResourceID: *patientResourceId,
- },
- Payload: datatypes.JSON(patientJson),
- }
- db.UpsertResource(context.Background(), &patientResourceFhir)
-
- //error map storage.
- syncErrors := map[string]error{}
-
- //Store all other resources.
- for _, resourceType := range resourceNames {
- bundle, err := c.GetResourceBundle(fmt.Sprintf("%s?patient=%s", resourceType, c.Source.PatientId))
- if err != nil {
- syncErrors[resourceType] = err
- continue
- }
- wrappedResourceModels, err := c.ProcessBundle(bundle)
- if err != nil {
- c.Logger.Infof("An error occurred while processing %s bundle %s", resourceType, c.Source.PatientId)
- syncErrors[resourceType] = err
- continue
- }
- for _, apiModel := range wrappedResourceModels {
- err = db.UpsertResource(context.Background(), &apiModel)
- if err != nil {
- syncErrors[resourceType] = err
- continue
- }
- }
- }
-
- if len(syncErrors) > 0 {
- return fmt.Errorf("%d error(s) occurred during sync: %v", len(syncErrors), syncErrors)
- }
- return nil
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// FHIR
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-func (c *FHIR401Client) GetResourceBundle(relativeResourcePath string) (fhir401.Bundle, error) {
-
- // https://www.hl7.org/fhir/patient-operation-everything.html
- bundle := fhir401.Bundle{}
- err := c.GetRequest(relativeResourcePath, &bundle)
- if err != nil {
- return bundle, err
- }
- var next string
- var prev string
- var self string
- for _, link := range bundle.Link {
- if link.Relation == "next" {
- next = link.Url
- } else if link.Relation == "self" {
- self = link.Url
- } else if link.Relation == "previous" {
- prev = link.Url
- }
- }
-
- for len(next) > 0 && next != self && next != prev {
- c.Logger.Debugf("Paginated request => %s", next)
- nextBundle := fhir401.Bundle{}
- err := c.GetRequest(next, &nextBundle)
- if err != nil {
- return bundle, nil //ignore failures when paginating?
- }
- bundle.Entry = append(bundle.Entry, nextBundle.Entry...)
-
- next = "" //reset the pointers
- self = ""
- prev = ""
- for _, link := range nextBundle.Link {
- if link.Relation == "next" {
- next = link.Url
- } else if link.Relation == "self" {
- self = link.Url
- } else if link.Relation == "previous" {
- prev = link.Url
- }
- }
- }
-
- return bundle, err
-
-}
-
-func (c *FHIR401Client) GetPatientBundle(patientId string) (fhir401.Bundle, error) {
- return c.GetResourceBundle(fmt.Sprintf("Patient/%s/$everything", patientId))
-}
-
-func (c *FHIR401Client) GetPatient(patientId string) (fhir401.Patient, error) {
-
- patient := fhir401.Patient{}
- err := c.GetRequest(fmt.Sprintf("Patient/%s", patientId), &patient)
- return patient, err
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// Process Bundles
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-func (c *FHIR401Client) ProcessBundle(bundle fhir401.Bundle) ([]models.ResourceFhir, error) {
-
- //process each entry in bundle
- wrappedResourceModels := lo.FilterMap[fhir401.BundleEntry, models.ResourceFhir](bundle.Entry, func(bundleEntry fhir401.BundleEntry, _ int) (models.ResourceFhir, bool) {
- originalResource, _ := fhirutils.MapToResource(bundleEntry.Resource, false)
-
- resourceType, resourceId := originalResource.(ResourceInterface).ResourceRef()
-
- // TODO find a way to safely/consistently get the resource updated date (and other metadata) which shoudl be added to the model.
- //if originalResource.Meta != nil && originalResource.Meta.LastUpdated != nil {
- // if parsed, err := time.Parse(time.RFC3339Nano, *originalResource.Meta.LastUpdated); err == nil {
- // patientProfile.UpdatedAt = parsed
- // }
- //}
- if resourceId == nil {
- //no resourceId present for this resource, we'll ignore it.
- return models.ResourceFhir{}, false
- }
-
- wrappedResourceModel := models.ResourceFhir{
- OriginBase: models.OriginBase{
- ModelBase: models.ModelBase{},
- UserID: c.Source.UserID,
- SourceID: c.Source.ID,
- SourceResourceID: *resourceId,
- SourceResourceType: resourceType,
- },
- Payload: datatypes.JSON(bundleEntry.Resource),
- }
-
- return wrappedResourceModel, true
- })
- return wrappedResourceModels, nil
-}
diff --git a/backend/pkg/hub/internal/fhir/base/fhir401_client_test.go b/backend/pkg/hub/internal/fhir/base/fhir401_client_test.go
deleted file mode 100644
index f306995f..00000000
--- a/backend/pkg/hub/internal/fhir/base/fhir401_client_test.go
+++ /dev/null
@@ -1,80 +0,0 @@
-package base
-
-import (
- "context"
- "encoding/json"
- mock_config "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config/mock"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/fastenhealth/gofhir-models/fhir401"
- "github.com/golang/mock/gomock"
- "github.com/sirupsen/logrus"
- "github.com/stretchr/testify/require"
- "io/ioutil"
- "net/http"
- "os"
- "testing"
-)
-
-// helpers
-func readTestFixture(path string) ([]byte, error) {
- jsonFile, err := os.Open(path)
- if err != nil {
- return nil, err
- }
- defer jsonFile.Close()
- return ioutil.ReadAll(jsonFile)
-}
-
-func TestNewFHIR401Client(t *testing.T) {
- t.Parallel()
- //setup
- mockCtrl := gomock.NewController(t)
- defer mockCtrl.Finish()
- fakeConfig := mock_config.NewMockInterface(mockCtrl)
-
- testLogger := logrus.WithFields(logrus.Fields{
- "type": "test",
- })
-
- //test
- client, _, err := NewFHIR401Client(context.Background(), fakeConfig, testLogger, models.Source{
- RefreshToken: "test-refresh-token",
- AccessToken: "test-access-token",
- }, &http.Client{})
-
- //assert
- require.NoError(t, err)
- require.Equal(t, client.Source.AccessToken, "test-access-token")
- require.Equal(t, client.Source.RefreshToken, "test-refresh-token")
-}
-
-func TestFHIR401Client_ProcessBundle(t *testing.T) {
- t.Parallel()
- //setup
- mockCtrl := gomock.NewController(t)
- defer mockCtrl.Finish()
- fakeConfig := mock_config.NewMockInterface(mockCtrl)
- testLogger := logrus.WithFields(logrus.Fields{
- "type": "test",
- })
- client, _, err := NewFHIR401Client(context.Background(), fakeConfig, testLogger, models.Source{
- RefreshToken: "test-refresh-token",
- AccessToken: "test-access-token",
- }, &http.Client{})
- require.NoError(t, err)
-
- jsonBytes, err := readTestFixture("testdata/fixtures/401-R4/bundle/cigna_syntheticuser05-everything.json")
- require.NoError(t, err)
- var bundle fhir401.Bundle
- err = json.Unmarshal(jsonBytes, &bundle)
- require.NoError(t, err)
-
- // test
- wrappedResourceModels, err := client.ProcessBundle(bundle)
- //log.Printf("%v", wrappedResourceModels)
-
- //assert
- require.NoError(t, err)
- require.Equal(t, 11, len(wrappedResourceModels))
- //require.Equal(t, "A00000000000005", profile.SourceResourceID)
-}
diff --git a/backend/pkg/hub/internal/fhir/base/fhir430_client.go b/backend/pkg/hub/internal/fhir/base/fhir430_client.go
deleted file mode 100644
index 2f134fc4..00000000
--- a/backend/pkg/hub/internal/fhir/base/fhir430_client.go
+++ /dev/null
@@ -1,81 +0,0 @@
-package base
-
-import (
- "context"
- "fmt"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/fastenhealth/gofhir-models/fhir430"
- fhirutils "github.com/fastenhealth/gofhir-models/fhir430/utils"
- "github.com/samber/lo"
- "github.com/sirupsen/logrus"
- "gorm.io/datatypes"
- "net/http"
-)
-
-type FHIR430Client struct {
- *BaseClient
-}
-
-func NewFHIR430Client(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (*FHIR430Client, *models.Source, error) {
- baseClient, updatedSource, err := NewBaseClient(ctx, appConfig, globalLogger, source, testHttpClient...)
- return &FHIR430Client{
- baseClient,
- }, updatedSource, err
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// FHIR
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-func (c *FHIR430Client) GetPatientEverything(patientId string) (*fhir430.Bundle, error) {
-
- // https://www.hl7.org/fhir/patient-operation-everything.html
- bundle := fhir430.Bundle{}
- err := c.GetRequest(fmt.Sprintf("Patient/%s/$everything", patientId), &bundle)
- return &bundle, err
-}
-
-func (c *FHIR430Client) GetPatient(patientId string) (*fhir430.Patient, error) {
-
- patient := fhir430.Patient{}
- err := c.GetRequest(fmt.Sprintf("Patient/%s", patientId), &patient)
- return &patient, err
-}
-
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-// Process Bundles
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
-func (c *FHIR430Client) ProcessBundle(bundle fhir430.Bundle) ([]models.ResourceFhir, error) {
-
- //process each entry in bundle
- wrappedResourceModels := lo.FilterMap[fhir430.BundleEntry, models.ResourceFhir](bundle.Entry, func(bundleEntry fhir430.BundleEntry, _ int) (models.ResourceFhir, bool) {
- originalResource, _ := fhirutils.MapToResource(bundleEntry.Resource, false)
-
- resourceType, resourceId := originalResource.(ResourceInterface).ResourceRef()
-
- // TODO find a way to safely/consistently get the resource updated date (and other metadata) which shoudl be added to the model.
- //if originalResource.Meta != nil && originalResource.Meta.LastUpdated != nil {
- // if parsed, err := time.Parse(time.RFC3339Nano, *originalResource.Meta.LastUpdated); err == nil {
- // patientProfile.UpdatedAt = parsed
- // }
- //}
- if resourceId == nil {
- //no resourceId present for this resource, we'll ignore it.
- return models.ResourceFhir{}, false
- }
-
- wrappedResourceModel := models.ResourceFhir{
- OriginBase: models.OriginBase{
- ModelBase: models.ModelBase{},
- UserID: c.Source.UserID,
- SourceID: c.Source.ID,
- SourceResourceID: *resourceId,
- SourceResourceType: resourceType,
- },
- Payload: datatypes.JSON(bundleEntry.Resource),
- }
-
- return wrappedResourceModel, true
- })
- return wrappedResourceModels, nil
-}
diff --git a/backend/pkg/hub/internal/fhir/base/interface.go b/backend/pkg/hub/internal/fhir/base/interface.go
deleted file mode 100644
index b9559811..00000000
--- a/backend/pkg/hub/internal/fhir/base/interface.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package base
-
-import (
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "os"
-)
-
-//go:generate mockgen -source=interface.go -destination=mock/mock_client.go
-type Client interface {
- GetRequest(resourceSubpath string, decodeModelPtr interface{}) error
- SyncAll(db database.DatabaseRepository) error
-
- //Manual client ONLY functions
- SyncAllBundle(db database.DatabaseRepository, bundleFile *os.File) error
-}
-
-type ResourceInterface interface {
- ResourceRef() (string, *string)
-}
diff --git a/backend/pkg/hub/internal/fhir/base/mock/mock_client.go b/backend/pkg/hub/internal/fhir/base/mock/mock_client.go
deleted file mode 100644
index 3e4c3dc7..00000000
--- a/backend/pkg/hub/internal/fhir/base/mock/mock_client.go
+++ /dev/null
@@ -1,116 +0,0 @@
-// Code generated by MockGen. DO NOT EDIT.
-// Source: interface.go
-
-// Package mock_base is a generated GoMock package.
-package mock_base
-
-import (
- os "os"
- reflect "reflect"
-
- database "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- gomock "github.com/golang/mock/gomock"
-)
-
-// MockClient is a mock of Client interface.
-type MockClient struct {
- ctrl *gomock.Controller
- recorder *MockClientMockRecorder
-}
-
-// MockClientMockRecorder is the mock recorder for MockClient.
-type MockClientMockRecorder struct {
- mock *MockClient
-}
-
-// NewMockClient creates a new mock instance.
-func NewMockClient(ctrl *gomock.Controller) *MockClient {
- mock := &MockClient{ctrl: ctrl}
- mock.recorder = &MockClientMockRecorder{mock}
- return mock
-}
-
-// EXPECT returns an object that allows the caller to indicate expected use.
-func (m *MockClient) EXPECT() *MockClientMockRecorder {
- return m.recorder
-}
-
-// GetRequest mocks base method.
-func (m *MockClient) GetRequest(resourceSubpath string, decodeModelPtr interface{}) error {
- m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "GetRequest", resourceSubpath, decodeModelPtr)
- ret0, _ := ret[0].(error)
- return ret0
-}
-
-// GetRequest indicates an expected call of GetRequest.
-func (mr *MockClientMockRecorder) GetRequest(resourceSubpath, decodeModelPtr interface{}) *gomock.Call {
- mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetRequest", reflect.TypeOf((*MockClient)(nil).GetRequest), resourceSubpath, decodeModelPtr)
-}
-
-// SyncAll mocks base method.
-func (m *MockClient) SyncAll(db database.DatabaseRepository) error {
- m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "SyncAll", db)
- ret0, _ := ret[0].(error)
- return ret0
-}
-
-// SyncAll indicates an expected call of SyncAll.
-func (mr *MockClientMockRecorder) SyncAll(db interface{}) *gomock.Call {
- mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SyncAll", reflect.TypeOf((*MockClient)(nil).SyncAll), db)
-}
-
-// SyncAllBundle mocks base method.
-func (m *MockClient) SyncAllBundle(db database.DatabaseRepository, bundleFile *os.File) error {
- m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "SyncAllBundle", db, bundleFile)
- ret0, _ := ret[0].(error)
- return ret0
-}
-
-// SyncAllBundle indicates an expected call of SyncAllBundle.
-func (mr *MockClientMockRecorder) SyncAllBundle(db, bundleFile interface{}) *gomock.Call {
- mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SyncAllBundle", reflect.TypeOf((*MockClient)(nil).SyncAllBundle), db, bundleFile)
-}
-
-// MockResourceInterface is a mock of ResourceInterface interface.
-type MockResourceInterface struct {
- ctrl *gomock.Controller
- recorder *MockResourceInterfaceMockRecorder
-}
-
-// MockResourceInterfaceMockRecorder is the mock recorder for MockResourceInterface.
-type MockResourceInterfaceMockRecorder struct {
- mock *MockResourceInterface
-}
-
-// NewMockResourceInterface creates a new mock instance.
-func NewMockResourceInterface(ctrl *gomock.Controller) *MockResourceInterface {
- mock := &MockResourceInterface{ctrl: ctrl}
- mock.recorder = &MockResourceInterfaceMockRecorder{mock}
- return mock
-}
-
-// EXPECT returns an object that allows the caller to indicate expected use.
-func (m *MockResourceInterface) EXPECT() *MockResourceInterfaceMockRecorder {
- return m.recorder
-}
-
-// ResourceRef mocks base method.
-func (m *MockResourceInterface) ResourceRef() (string, *string) {
- m.ctrl.T.Helper()
- ret := m.ctrl.Call(m, "ResourceRef")
- ret0, _ := ret[0].(string)
- ret1, _ := ret[1].(*string)
- return ret0, ret1
-}
-
-// ResourceRef indicates an expected call of ResourceRef.
-func (mr *MockResourceInterfaceMockRecorder) ResourceRef() *gomock.Call {
- mr.mock.ctrl.T.Helper()
- return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ResourceRef", reflect.TypeOf((*MockResourceInterface)(nil).ResourceRef))
-}
diff --git a/backend/pkg/hub/internal/fhir/base/test_helpers.go b/backend/pkg/hub/internal/fhir/base/test_helpers.go
deleted file mode 100644
index 3d39514d..00000000
--- a/backend/pkg/hub/internal/fhir/base/test_helpers.go
+++ /dev/null
@@ -1,51 +0,0 @@
-package base
-
-import (
- "context"
- "crypto/tls"
- "github.com/seborama/govcr"
- "golang.org/x/oauth2"
- "net/http"
- "path"
- "testing"
-)
-
-func OAuthVcrSetup(t *testing.T, enableRecording bool) *http.Client {
- accessToken := "PLACEHOLDER"
- if enableRecording {
- //this has to be disabled because CI is empty inside docker containers.
- accessToken = ""
- }
-
- ts := oauth2.StaticTokenSource(
- //setting a real access token here will allow API calls to connect successfully
- &oauth2.Token{AccessToken: accessToken},
- )
-
- tr := http.DefaultTransport.(*http.Transport)
- tr.TLSClientConfig = &tls.Config{
- InsecureSkipVerify: true, //disable certificate validation because we're playing back http requests.
- }
- insecureClient := http.Client{
- Transport: tr,
- }
-
- ctx := context.WithValue(oauth2.NoContext, oauth2.HTTPClient, insecureClient)
- tc := oauth2.NewClient(ctx, ts)
-
- vcrConfig := govcr.VCRConfig{
- Logging: true,
- CassettePath: path.Join("testdata", "govcr-fixtures"),
- Client: tc,
-
- //this line ensures that we do not attempt to create new recordings.
- //Comment this out if you would like to make recordings.
- DisableRecording: !enableRecording,
- }
-
- // HTTP headers are case-insensitive
- vcrConfig.RequestFilters.Add(govcr.RequestDeleteHeaderKeys("User-Agent", "user-agent"))
-
- vcr := govcr.NewVCR(t.Name(), &vcrConfig)
- return vcr.Client
-}
diff --git a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/cigna_syntheticuser05-everything.json b/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/cigna_syntheticuser05-everything.json
deleted file mode 100644
index 7512cc65..00000000
--- a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/cigna_syntheticuser05-everything.json
+++ /dev/null
@@ -1,1542 +0,0 @@
-{
- "meta": {
- "source": "https://p-hi2.digitaledge.cigna.com"
- },
- "entry": [{
- "fullUrl": "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal/Patient/ifp-A00000000000005",
- "resource": {
- "id": "ifp-A00000000000005",
- "meta": {
- "lastUpdated": "2022-06-20T15:45:22.043000+00:00",
- "profile": ["http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-Patient"],
- "source": "IFP#CqP06ARvJo9XS9Cl",
- "versionId": "1"
- },
- "text": {
- "div": "
Identifier | A00000000000005 |
Date of birth | 12 January 2013 |
",
- "status": "generated"
- },
- "birthDate": "2013-01-12",
- "gender": "female",
- "identifier": [{
- "system": "https://developer.cigna.com",
- "type": {
- "coding": [{
- "code": "um",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/IdentifierTypeCS"
- }]
- },
- "value": "A00000000000005"
- }, {
- "system": "https://developer.cigna.com",
- "type": {
- "coding": [{
- "code": "mb",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/IdentifierTypeCS"
- }]
- },
- "value": "unknown"
- }],
- "maritalStatus": {
- "coding": [{
- "code": "UNK",
- "display": "unknown",
- "system": "http://terminology.hl7.org/CodeSystem/v3-NullFlavor"
- }],
- "text": "unknown"
- },
- "name": [{
- "family": "Monahan",
- "given": ["Felecita"],
- "use": "official"
- }],
- "telecom": [{
- "system": "phone",
- "use": "mobile",
- "value": "9404535496"
- }],
- "resourceType": "Patient"
- },
- "search": {
- "mode": "match"
- }
- },{
- "fullUrl": "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal/Condition/ifp-A00000000000005-CS0000449534-K57.92",
- "resource": {
- "id": "ifp-A00000000000005-CS0000449534-K57.92",
- "meta": {
- "lastUpdated": "2022-06-20T15:45:22.431000+00:00",
- "profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition"],
- "source": "IFP#BfVDmjcVAxAfr5Be",
- "versionId": "1"
- },
- "category": [{
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- }],
- "clinicalStatus": {
- "coding": [{
- "code": "active",
- "display": "active",
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical"
- }],
- "text": "active"
- },
- "code": {
- "coding": [{
- "code": "K57.92",
- "display": "DVTRCLI OF INTEST, PART UNSP, W/O PERF OR ABSCESS W/O BLEED"
- }],
- "text": "Null"
- },
- "identifier": [{
- "value": "A00000000000005-CS0000449534-K57.92"
- }],
- "recordedDate": "2019-10-22",
- "subject": {
- "reference": "Patient/ifp-A00000000000005"
- },
- "resourceType": "Condition"
- },
- "search": {
- "mode": "match"
- }
- }, {
- "fullUrl": "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal/Encounter/ifp-1C9A46F07B3CADE33EFC75ABA3DC37CF",
- "resource": {
- "id": "ifp-1C9A46F07B3CADE33EFC75ABA3DC37CF",
- "meta": {
- "lastUpdated": "2022-06-20T15:45:29.685000+00:00",
- "profile": ["http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter"],
- "source": "IFP#e7zkeLCSmQFgUX0Z",
- "versionId": "1"
- },
- "class": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "diagnosis": [{
- "condition": {
- "reference": "Condition/ifp-A00000000000005-OP0447575426-K57.80-Y-"
- },
- "use": {
- "coding": [{
- "display": "Admission diagnosis"
- }]
- }
- }],
- "identifier": [{
- "system": "http://dev.cigna.com/system/TRCR",
- "value": "TRCR-OP0447575426-1"
- }],
- "location": [{
- "location": {
- "reference": "Location/ifp-7312532"
- }
- }, {
- "location": {
- "reference": "Location/ifp-0566265"
- }
- }],
- "participant": [{
- "individual": {
- "reference": "Practitioner/ifp-50ef4542ecb5ae5eddc0dac76a10aaed"
- }
- }, {
- "individual": {
- "reference": "Practitioner/ifp-6a4d3d6fe165b6a0a79b6a976d043c2c"
- }
- }],
- "period": {
- "end": "2019-12-31",
- "start": "2019-11-07"
- },
- "reasonCode": [{
- "coding": [{
- "code": "K57.80",
- "display": "Dvtrcli of intest, part unsp, w perf and abscess w/o bleed"
- }]
- }],
- "reasonReference": [{
- "reference": "Condition/ifp-A00000000000005-OP0447575426-K57.80-Y-"
- }],
- "serviceProvider": {
- "reference": "Organization/ifp-0566265"
- },
- "serviceType": {
- "coding": [{
- "code": "302",
- "display": "Medical Outpatient"
- }]
- },
- "status": "unknown",
- "subject": {
- "reference": "Patient/ifp-A00000000000005"
- },
- "type": [{
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- }],
- "resourceType": "Encounter"
- },
- "search": {
- "mode": "match"
- }
- }, {
- "fullUrl": "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal/ExplanationOfBenefit/ifp-577B939844288EC2702EA92A8A2BEAA0",
- "resource": {
- "id": "ifp-577B939844288EC2702EA92A8A2BEAA0",
- "meta": {
- "lastUpdated": "2022-06-20T15:45:34.176000+00:00",
- "profile": ["http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Inpatient-Institutional"],
- "source": "IFP#8SdkvkRZ51amC5sY",
- "versionId": "1"
- },
- "accident": {
- "type": {
- "coding": [{
- "display": "XXXXX"
- }]
- }
- },
- "billablePeriod": {
- "end": "2019-11-22",
- "start": "2019-11-08"
- },
- "careTeam": [{
- "provider": {
- "reference": "Organization/ifp-0566265"
- },
- "role": {
- "coding": [{
- "code": "performing",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole"
- }]
- },
- "_sequence": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- }
- }],
- "_created": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "diagnosis": [{
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "K5720",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 1,
- "type": [{
- "coding": [{
- "code": "principal",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "N186",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 2,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "K5720",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 1,
- "type": [{
- "coding": [{
- "code": "admitting",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z905",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 11,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z87442",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 12,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z98890",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 14,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "D649",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 7,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Q612",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 5,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "E876",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 9,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z7982",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 10,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z8249",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 13,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "E871",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 3,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "I120",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 4,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z940",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 6,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "E785",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 8,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }],
- "identifier": [{
- "type": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "value": "1925381131-8-FCTS"
- }],
- "insurance": [{
- "coverage": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "_focal": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- }
- }],
- "insurer": {
- "display": "Cigna"
- },
- "outcome": "complete",
- "patient": {
- "reference": "Patient/ifp-A00000000000005"
- },
- "payee": {
- "party": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "type": {
- "coding": [{
- "code": "other",
- "display": "Provider",
- "system": "http://terminology.hl7.org/CodeSystem/payeetype"
- }]
- }
- },
- "payment": {
- "date": "2020-01-02"
- },
- "provider": {
- "reference": "Organization/ifp-0566265"
- },
- "_status": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "total": [{
- "amount": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "category": {
- "coding": [{
- "code": "innetwork",
- "display": "In Network",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBPayerAdjudicationStatus"
- }]
- }
- }],
- "type": {
- "coding": [{
- "code": "institutional",
- "display": "Institutional Claim",
- "system": "http://terminology.hl7.org/CodeSystem/claim-type"
- }]
- },
- "use": "claim",
- "resourceType": "ExplanationOfBenefit"
- },
- "search": {
- "mode": "match"
- }
- }, {
- "fullUrl": "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal/ExplanationOfBenefit/ifp-B4028B5B95E3E540CD1DFA1968D5C08D",
- "resource": {
- "id": "ifp-B4028B5B95E3E540CD1DFA1968D5C08D",
- "meta": {
- "lastUpdated": "2022-06-20T15:45:34.699000+00:00",
- "profile": ["http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Professional-NonClinician"],
- "source": "IFP#BmUfv05t9wDcyAt0",
- "versionId": "1"
- },
- "accident": {
- "type": {
- "coding": [{
- "display": "XXXXX"
- }]
- }
- },
- "billablePeriod": {
- "end": "2019-11-22",
- "start": "2019-11-22"
- },
- "careTeam": [{
- "provider": {
- "reference": "Organization/ifp-1465120"
- },
- "qualification": {
- "coding": [{
- "code": "unknown",
- "display": "Pathology, Anatomic",
- "system": "http://nucc.org/provider-taxonomy"
- }]
- },
- "role": {
- "coding": [{
- "code": "performing",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole"
- }]
- },
- "_sequence": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- }
- }],
- "_created": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "diagnosis": [{
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "N186",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 2,
- "type": [{
- "coding": [{
- "code": "secondary",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "K5720",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 1,
- "type": [{
- "coding": [{
- "code": "principal",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "E871",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 3,
- "type": [{
- "coding": [{
- "code": "secondary",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Q612",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 4,
- "type": [{
- "coding": [{
- "code": "secondary",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }],
- "identifier": [{
- "type": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "value": "1927246798-6-FCTS"
- }],
- "insurance": [{
- "coverage": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "_focal": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- }
- }],
- "insurer": {
- "display": "Cigna"
- },
- "item": [{
- "adjudication": [{
- "category": {
- "coding": [{
- "code": "innetwork",
- "display": "In Network",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBPayerAdjudicationStatus"
- }]
- }
- }],
- "net": {
- "value": 25
- },
- "productOrService": {
- "coding": [{
- "code": "83735",
- "display": "ASSAY OF MAGNESIUM",
- "system": "http://www.ama-assn.org/go/cpt"
- }]
- },
- "quantity": {
- "unit": "item_quantity_unit",
- "value": 1
- },
- "_sequence": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "servicedPeriod": {
- "end": "2019-11-22",
- "start": "2019-11-22"
- }
- }],
- "outcome": "complete",
- "patient": {
- "reference": "Patient/ifp-A00000000000005"
- },
- "payee": {
- "party": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "type": {
- "coding": [{
- "code": "other",
- "display": "Provider",
- "system": "http://terminology.hl7.org/CodeSystem/payeetype"
- }]
- }
- },
- "payment": {
- "date": "2020-01-09"
- },
- "provider": {
- "reference": "Organization/ifp-1465120"
- },
- "_status": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "type": {
- "coding": [{
- "code": "professional",
- "display": "Professional Claim",
- "system": "http://terminology.hl7.org/CodeSystem/claim-type"
- }]
- },
- "use": "claim",
- "resourceType": "ExplanationOfBenefit"
- },
- "search": {
- "mode": "match"
- }
- }, {
- "fullUrl": "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal/ExplanationOfBenefit/ifp-B272409E801EDF44CDDAD86259DBAC50",
- "resource": {
- "id": "ifp-B272409E801EDF44CDDAD86259DBAC50",
- "meta": {
- "lastUpdated": "2022-06-20T15:45:35.218000+00:00",
- "profile": ["http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Inpatient-Institutional"],
- "source": "IFP#6OAkeEOfyrgbnOn1",
- "versionId": "1"
- },
- "accident": {
- "type": {
- "coding": [{
- "display": "XXXXX"
- }]
- }
- },
- "billablePeriod": {
- "end": "2019-11-22",
- "start": "2019-11-08"
- },
- "careTeam": [{
- "provider": {
- "reference": "Organization/ifp-0566265"
- },
- "role": {
- "coding": [{
- "code": "performing",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole"
- }]
- },
- "_sequence": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- }
- }],
- "_created": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "diagnosis": [{
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z87442",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 12,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z98890",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 14,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z940",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 6,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "K5720",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 1,
- "type": [{
- "coding": [{
- "code": "principal",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Q612",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 5,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "E785",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 8,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "D649",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 7,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "K5720",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 1,
- "type": [{
- "coding": [{
- "code": "admitting",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "E871",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 3,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z905",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 11,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z8249",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 13,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z7982",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 10,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "E876",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 9,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "I120",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 4,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "N186",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "onAdmission": {
- "coding": [{
- "code": "y",
- "system": "http://www.nubc.org/PresentOnAdmission"
- }]
- },
- "sequence": 2,
- "type": [{
- "coding": [{
- "code": "other",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }],
- "identifier": [{
- "type": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "value": "1925381131-16-FCTS"
- }],
- "insurance": [{
- "coverage": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "_focal": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- }
- }],
- "insurer": {
- "display": "Cigna"
- },
- "outcome": "complete",
- "patient": {
- "reference": "Patient/ifp-A00000000000005"
- },
- "payee": {
- "party": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "type": {
- "coding": [{
- "code": "other",
- "display": "Provider",
- "system": "http://terminology.hl7.org/CodeSystem/payeetype"
- }]
- }
- },
- "payment": {
- "date": "2020-01-02"
- },
- "provider": {
- "reference": "Organization/ifp-0566265"
- },
- "_status": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "total": [{
- "amount": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "category": {
- "coding": [{
- "code": "innetwork",
- "display": "In Network",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBPayerAdjudicationStatus"
- }]
- }
- }],
- "type": {
- "coding": [{
- "code": "institutional",
- "display": "Institutional Claim",
- "system": "http://terminology.hl7.org/CodeSystem/claim-type"
- }]
- },
- "use": "claim",
- "resourceType": "ExplanationOfBenefit"
- },
- "search": {
- "mode": "match"
- }
- }, {
- "fullUrl": "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal/ExplanationOfBenefit/ifp-C0B54C38E7FBB4AAEFEF3BB6E74F3081",
- "resource": {
- "id": "ifp-C0B54C38E7FBB4AAEFEF3BB6E74F3081",
- "meta": {
- "lastUpdated": "2022-06-20T15:45:49.312000+00:00",
- "profile": ["http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Professional-NonClinician"],
- "source": "IFP#c3P5kBwUugM3EvwG",
- "versionId": "1"
- },
- "accident": {
- "type": {
- "coding": [{
- "display": "XXXXX"
- }]
- }
- },
- "billablePeriod": {
- "end": "2019-10-10",
- "start": "2019-10-10"
- },
- "careTeam": [{
- "provider": {
- "reference": "Organization/ifp-51fb06f37e5ec973ce69132a9a2571f3"
- },
- "qualification": {
- "coding": [{
- "code": "unknown",
- "display": "Radiology, Diagnostic",
- "system": "http://nucc.org/provider-taxonomy"
- }]
- },
- "role": {
- "coding": [{
- "code": "performing",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole"
- }]
- },
- "_sequence": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- }
- }],
- "_created": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "diagnosis": [{
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z9911",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 3,
- "type": [{
- "coding": [{
- "code": "secondary",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "Z452",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 2,
- "type": [{
- "coding": [{
- "code": "secondary",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }, {
- "diagnosisCodeableConcept": {
- "coding": [{
- "code": "D329",
- "system": "http://hl7.org/fhir/sid/icd-10-cm",
- "version": "10"
- }]
- },
- "sequence": 1,
- "type": [{
- "coding": [{
- "code": "principal",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType"
- }]
- }]
- }],
- "identifier": [{
- "type": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "value": "1921666600-1-FCTS"
- }],
- "insurance": [{
- "coverage": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "_focal": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- }
- }],
- "insurer": {
- "display": "Cigna"
- },
- "item": [{
- "adjudication": [{
- "category": {
- "coding": [{
- "code": "innetwork",
- "display": "In Network",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBPayerAdjudicationStatus"
- }]
- }
- }],
- "net": {
- "value": 165.66
- },
- "productOrService": {
- "coding": [{
- "code": "70470",
- "display": "CT HEAD/BRAIN W/O & W/DYE",
- "system": "http://www.ama-assn.org/go/cpt"
- }]
- },
- "quantity": {
- "unit": "item_quantity_unit",
- "value": 1
- },
- "_sequence": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "servicedPeriod": {
- "end": "2019-10-10",
- "start": "2019-10-10"
- }
- }],
- "outcome": "complete",
- "patient": {
- "reference": "Patient/ifp-A00000000000005"
- },
- "payee": {
- "party": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "type": {
- "coding": [{
- "code": "other",
- "display": "Provider",
- "system": "http://terminology.hl7.org/CodeSystem/payeetype"
- }]
- }
- },
- "payment": {
- "date": "2019-10-17"
- },
- "provider": {
- "reference": "Organization/ifp-51fb06f37e5ec973ce69132a9a2571f3"
- },
- "_status": {
- "extension": [{
- "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason",
- "valueCode": "unknown"
- }]
- },
- "type": {
- "coding": [{
- "code": "professional",
- "display": "Professional Claim",
- "system": "http://terminology.hl7.org/CodeSystem/claim-type"
- }]
- },
- "use": "claim",
- "resourceType": "ExplanationOfBenefit"
- },
- "search": {
- "mode": "match"
- }
- }, {
- "fullUrl": "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal/Immunization/ifp-2f26cahb-536c-4e01-8672-72a6b543fa65",
- "resource": {
- "id": "ifp-2f26cahb-536c-4e01-8672-72a6b543fa65",
- "meta": {
- "lastUpdated": "2022-06-20T15:45:51.885000+00:00",
- "source": "IFP#AG3OYyeYwo5It0Jo",
- "versionId": "1"
- },
- "location": {
- "reference": "Location/ifp-2f26caab-536c-4e00-8672-72a6b543fa89"
- },
- "occurrenceDateTime": "2021-02-22T15:20:12+00:00",
- "patient": {
- "reference": "Patient/ifp-A00000000000005"
- },
- "primarySource": true,
- "status": "completed",
- "vaccineCode": {
- "coding": [{
- "code": "212",
- "system": "http://hl7.org/fhir/sid/cvx"
- }]
- },
- "resourceType": "Immunization"
- },
- "search": {
- "mode": "match"
- }
- }, {
- "fullUrl": "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal/Location/ifp-2f26caab-536c-4e00-8672-72a6b543fa89",
- "resource": {
- "id": "ifp-2f26caab-536c-4e00-8672-72a6b543fa89",
- "meta": {
- "lastUpdated": "2022-06-20T15:45:50.345000+00:00",
- "source": "IFP#Yglf5U34zTuq9jfW",
- "versionId": "1"
- },
- "address": {
- "city": "BOISE",
- "country": "US",
- "line": ["65 MAIN ST"],
- "postalCode": "83701",
- "state": "ID"
- },
- "name": "TRISTATE HEALTH SERVICE",
- "resourceType": "Location"
- },
- "search": {
- "mode": "match"
- }
- }, {
- "fullUrl": "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal/Organization/ifp-51fb06f37e5ec973ce69132a9a2571f3",
- "resource": {
- "id": "ifp-51fb06f37e5ec973ce69132a9a2571f3",
- "meta": {
- "lastUpdated": "2022-06-20T15:45:45.155000+00:00",
- "profile": ["http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-Organization"],
- "source": "IFP#1Hc7lo3uMBmGNP1z",
- "versionId": "1"
- },
- "active": true,
- "address": [{
- "city": "SURPRISE",
- "line": ["13991 W GRAND AVE STE 105"],
- "postalCode": "85374",
- "state": "AZ",
- "text": "13991 W GRAND AVE STE 105 SURPRISE AZ 85374"
- }],
- "identifier": [{
- "system": "http://hl7.org/fhir/sid/us-npi",
- "type": {
- "coding": [{
- "code": "npi",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/IdentifierTypeCS"
- }]
- },
- "value": "1609868678"
- }, {
- "system": "https://developer.cigna.com",
- "type": {
- "coding": [{
- "code": "provid",
- "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/IdentifierTypeCS"
- }]
- }
- }, {
- "system": "urn:oid:2.16.840.1.113883.4.4",
- "type": {
- "coding": [{
- "code": "TAX",
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203"
- }]
- }
- }],
- "name": "CIGNA MED GRP PHCY-SUN CITY WE",
- "resourceType": "Organization"
- },
- "search": {
- "mode": "match"
- }
- }, {
- "resource": {
- "issue": [{
- "code": "processing",
- "diagnostics": "Error code CLCOM-006; x-request-id: 1bcbd8d5-e4ae-42af-b6cb-a9babaa8a17e",
- "severity": "fatal"
- }],
- "resourceType": "OperationOutcome"
- }
- }, {
- "fullUrl": "https://p-hi2.digitaledge.cigna.com/Patient/A00000000000005",
- "resource": {
- "id": "A00000000000005",
- "link": [{
- "other": {
- "reference": "Patient/ifp-A00000000000005"
- },
- "type": "seealso"
- }, {
- "other": {
- "reference": "Patient/com-44a04ebb-7aba-4e66-99c7-12b99405f30d"
- },
- "type": "seealso"
- }],
- "resourceType": "Patient"
- }
- }
-
-
- ],
- "link": [{
- "relation": "self",
- "url": "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal/Patient/A00000000000005/$everything"
- }],
- "total": 11,
- "type": "searchset",
- "resourceType": "Bundle"
-}
diff --git a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Alesha810_Marks830_1e0a8bd3-3b82-4f17-b1d6-19043aa0db6b.json b/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Alesha810_Marks830_1e0a8bd3-3b82-4f17-b1d6-19043aa0db6b.json
deleted file mode 100644
index 64e2c9c7..00000000
--- a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Alesha810_Marks830_1e0a8bd3-3b82-4f17-b1d6-19043aa0db6b.json
+++ /dev/null
@@ -1,16695 +0,0 @@
-{
- "resourceType": "Bundle",
- "type": "transaction",
- "entry": [
- {
- "fullUrl": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "resource": {
- "resourceType": "Patient",
- "id": "c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "text": {
- "status": "generated",
- "div": "Generated by
Synthea.Version identifier: v2.4.0-404-ge7ce2295\n . Person seed: -2282623849526784568 Population seed: 0
"
- },
- "extension": [
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2106-3",
- "display": "White"
- }
- },
- {
- "url": "text",
- "valueString": "White"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
- }
- },
- {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
- "valueString": "Sandra485 Cormier289"
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
- "valueCode": "F"
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
- "valueAddress": {
- "city": "Tewksbury",
- "state": "Massachusetts",
- "country": "US"
- }
- },
- {
- "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
- "valueDecimal": 0.7742822202801629
- },
- {
- "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
- "valueDecimal": 52.22571777971984
- }
- ],
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "1e0a8bd3-3b82-4f17-b1d6-19043aa0db6b"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "MR",
- "display": "Medical Record Number"
- }
- ],
- "text": "Medical Record Number"
- },
- "system": "http://hospital.smarthealthit.org",
- "value": "1e0a8bd3-3b82-4f17-b1d6-19043aa0db6b"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "SS",
- "display": "Social Security Number"
- }
- ],
- "text": "Social Security Number"
- },
- "system": "http://hl7.org/fhir/sid/us-ssn",
- "value": "999-76-3236"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "DL",
- "display": "Driver's License"
- }
- ],
- "text": "Driver's License"
- },
- "system": "urn:oid:2.16.840.1.113883.4.3.25",
- "value": "S99995466"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PPN",
- "display": "Passport Number"
- }
- ],
- "text": "Passport Number"
- },
- "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber",
- "value": "X41129973X"
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "Marks830",
- "given": [
- "Alesha810"
- ],
- "prefix": [
- "Ms."
- ]
- }
- ],
- "telecom": [
- {
- "system": "phone",
- "value": "555-664-6121",
- "use": "home"
- }
- ],
- "gender": "female",
- "birthDate": "1965-11-04",
- "address": [
- {
- "extension": [
- {
- "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
- "extension": [
- {
- "url": "latitude",
- "valueDecimal": 42.60588776678466
- },
- {
- "url": "longitude",
- "valueDecimal": -71.0695322588603
- }
- ]
- }
- ],
- "line": [
- "165 Shanahan View"
- ],
- "city": "North Reading",
- "state": "Massachusetts",
- "country": "US"
- }
- ],
- "maritalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
- "code": "S",
- "display": "S"
- }
- ],
- "text": "S"
- },
- "multipleBirthBoolean": false,
- "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English"
- }
- ],
- "text": "English"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Patient"
- }
- },
- {
- "fullUrl": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "resource": {
- "resourceType": "Organization",
- "id": "f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "LAWRENCE GENERAL HOSPITAL",
- "telecom": [
- {
- "system": "phone",
- "value": "9786834000"
- }
- ],
- "address": [
- {
- "line": [
- "ONE GENERAL STREET"
- ],
- "city": "LAWRENCE",
- "state": "MA",
- "postalCode": "01842",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-00000000001e",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "30"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Lind531",
- "given": [
- "Cedrick207"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Cedrick207.Lind531@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "ONE GENERAL STREET"
- ],
- "city": "LAWRENCE",
- "state": "MA",
- "postalCode": "01842",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:3879ad6c-0839-48f3-8e17-30d5637f874b",
- "resource": {
- "resourceType": "Encounter",
- "id": "3879ad6c-0839-48f3-8e17-30d5637f874b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- }
- ],
- "period": {
- "start": "1967-11-11T00:24:38-05:00",
- "end": "1967-11-11T00:54:38-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "233678006",
- "display": "Childhood asthma"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b86ed58d-d67e-4616-b028-51d5a2dd0552",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "b86ed58d-d67e-4616-b028-51d5a2dd0552",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "895994",
- "display": "120 ACTUAT Fluticasone propionate 0.044 MG/ACTUAT Metered Dose Inhaler"
- }
- ],
- "text": "120 ACTUAT Fluticasone propionate 0.044 MG/ACTUAT Metered Dose Inhaler"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:3879ad6c-0839-48f3-8e17-30d5637f874b"
- },
- "authoredOn": "1967-11-11T00:24:38-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- },
- "dosageInstruction": [
- {
- "sequence": 1,
- "asNeededBoolean": true
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:ec24034c-62ae-4fa9-b53b-e5b3e14096fc",
- "resource": {
- "resourceType": "Claim",
- "id": "ec24034c-62ae-4fa9-b53b-e5b3e14096fc",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "1967-11-11T00:24:38-05:00",
- "end": "1967-11-11T00:54:38-05:00"
- },
- "created": "1967-11-11T00:54:38-05:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:b86ed58d-d67e-4616-b028-51d5a2dd0552"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3879ad6c-0839-48f3-8e17-30d5637f874b"
- }
- ]
- }
- ],
- "total": {
- "value": 21.1,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0d99e987-eaff-4cdb-8b60-853feb003c5d",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "0d99e987-eaff-4cdb-8b60-853feb003c5d",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "745679",
- "display": "200 ACTUAT Albuterol 0.09 MG/ACTUAT Metered Dose Inhaler"
- }
- ],
- "text": "200 ACTUAT Albuterol 0.09 MG/ACTUAT Metered Dose Inhaler"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:3879ad6c-0839-48f3-8e17-30d5637f874b"
- },
- "authoredOn": "1967-11-11T00:24:38-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- },
- "dosageInstruction": [
- {
- "sequence": 1,
- "asNeededBoolean": true
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:5df4777f-d82e-4815-bf56-dd1e647fdf13",
- "resource": {
- "resourceType": "Claim",
- "id": "5df4777f-d82e-4815-bf56-dd1e647fdf13",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "1967-11-11T00:24:38-05:00",
- "end": "1967-11-11T00:54:38-05:00"
- },
- "created": "1967-11-11T00:54:38-05:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:0d99e987-eaff-4cdb-8b60-853feb003c5d"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3879ad6c-0839-48f3-8e17-30d5637f874b"
- }
- ]
- }
- ],
- "total": {
- "value": 50.29,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:a55b85b0-5be8-47cb-b393-7b3d1b7e52e3",
- "resource": {
- "resourceType": "CareTeam",
- "id": "a55b85b0-5be8-47cb-b393-7b3d1b7e52e3",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:3879ad6c-0839-48f3-8e17-30d5637f874b"
- },
- "period": {
- "start": "1967-11-11T00:24:38-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "233678006",
- "display": "Childhood asthma"
- }
- ],
- "text": "Childhood asthma"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:4e5c4e96-96e8-4e4e-b3cb-35b25cdd2cf9",
- "resource": {
- "resourceType": "CarePlan",
- "id": "4e5c4e96-96e8-4e4e-b3cb-35b25cdd2cf9",
- "text": {
- "status": "generated",
- "div": "Care Plan for Asthma self management.
Activities:
- Asthma self management
- Asthma self management
- Asthma self management
Care plan is meant to treat Childhood asthma.
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "699728000",
- "display": "Asthma self management"
- }
- ],
- "text": "Asthma self management"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:3879ad6c-0839-48f3-8e17-30d5637f874b"
- },
- "period": {
- "start": "1967-11-11T00:24:38-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:a55b85b0-5be8-47cb-b393-7b3d1b7e52e3"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "710818004",
- "display": "Inhaled steroid therapy"
- }
- ],
- "text": "Inhaled steroid therapy"
- },
- "status": "in-progress",
- "location": {
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "708409001",
- "display": "Home nebulizer therapy"
- }
- ],
- "text": "Home nebulizer therapy"
- },
- "status": "in-progress",
- "location": {
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "229298005",
- "display": "Breathing control"
- }
- ],
- "text": "Breathing control"
- },
- "status": "in-progress",
- "location": {
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:8e08fd86-4a37-4b97-9636-1f9ac77b416d",
- "resource": {
- "resourceType": "Claim",
- "id": "8e08fd86-4a37-4b97-9636-1f9ac77b416d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "1967-11-11T00:24:38-05:00",
- "end": "1967-11-11T00:54:38-05:00"
- },
- "created": "1967-11-11T00:54:38-05:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3879ad6c-0839-48f3-8e17-30d5637f874b"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:721349f8-f463-4c61-b01d-b45684f5c877",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "721349f8-f463-4c61-b01d-b45684f5c877",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "8e08fd86-4a37-4b97-9636-1f9ac77b416d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "1967-11-11T00:54:38-05:00",
- "end": "1968-11-11T00:54:38-05:00"
- },
- "created": "1967-11-11T00:54:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:8e08fd86-4a37-4b97-9636-1f9ac77b416d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "1967-11-11T00:24:38-05:00",
- "end": "1967-11-11T00:54:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3879ad6c-0839-48f3-8e17-30d5637f874b"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:294bdfba-55a3-44f7-b208-cb5835a67424",
- "resource": {
- "resourceType": "Encounter",
- "id": "294bdfba-55a3-44f7-b208-cb5835a67424",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- }
- ],
- "period": {
- "start": "1968-11-10T00:24:38-05:00",
- "end": "1968-11-24T00:24:38-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "367498001",
- "display": "Seasonal allergic rhinitis"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:54c20754-d436-4f6b-a0a5-466fd36665a9",
- "resource": {
- "resourceType": "Condition",
- "id": "54c20754-d436-4f6b-a0a5-466fd36665a9",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "367498001",
- "display": "Seasonal allergic rhinitis"
- }
- ],
- "text": "Seasonal allergic rhinitis"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:294bdfba-55a3-44f7-b208-cb5835a67424"
- },
- "onsetDateTime": "1968-11-10T00:24:38-05:00",
- "recordedDate": "1968-11-10T00:24:38-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:1f14d2ae-a3bd-412b-9068-35efef091e2c",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "1f14d2ae-a3bd-412b-9068-35efef091e2c",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "477045",
- "display": "Chlorpheniramine Maleate 2 MG/ML Oral Solution"
- }
- ],
- "text": "Chlorpheniramine Maleate 2 MG/ML Oral Solution"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:294bdfba-55a3-44f7-b208-cb5835a67424"
- },
- "authoredOn": "1968-11-24T00:24:38-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- },
- "dosageInstruction": [
- {
- "sequence": 1,
- "asNeededBoolean": true
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:41cdd5a1-c2b4-4c21-8490-2eefb931c958",
- "resource": {
- "resourceType": "Claim",
- "id": "41cdd5a1-c2b4-4c21-8490-2eefb931c958",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "1968-11-10T00:24:38-05:00",
- "end": "1968-11-24T00:24:38-05:00"
- },
- "created": "1968-11-24T00:24:38-05:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:1f14d2ae-a3bd-412b-9068-35efef091e2c"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:294bdfba-55a3-44f7-b208-cb5835a67424"
- }
- ]
- }
- ],
- "total": {
- "value": 6.77,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:61cd342f-cd24-47d6-85d3-bf74746e5c36",
- "resource": {
- "resourceType": "Claim",
- "id": "61cd342f-cd24-47d6-85d3-bf74746e5c36",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "1968-11-10T00:24:38-05:00",
- "end": "1968-11-24T00:24:38-05:00"
- },
- "created": "1968-11-24T00:24:38-05:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:54c20754-d436-4f6b-a0a5-466fd36665a9"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:294bdfba-55a3-44f7-b208-cb5835a67424"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "367498001",
- "display": "Seasonal allergic rhinitis"
- }
- ],
- "text": "Seasonal allergic rhinitis"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3d193393-8532-47a2-b50f-43879ae73316",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3d193393-8532-47a2-b50f-43879ae73316",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "61cd342f-cd24-47d6-85d3-bf74746e5c36"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "1968-11-24T00:24:38-05:00",
- "end": "1969-11-24T00:24:38-05:00"
- },
- "created": "1968-11-24T00:24:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:61cd342f-cd24-47d6-85d3-bf74746e5c36"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:54c20754-d436-4f6b-a0a5-466fd36665a9"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "1968-11-10T00:24:38-05:00",
- "end": "1968-11-24T00:24:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:294bdfba-55a3-44f7-b208-cb5835a67424"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "367498001",
- "display": "Seasonal allergic rhinitis"
- }
- ],
- "text": "Seasonal allergic rhinitis"
- },
- "servicedPeriod": {
- "start": "1968-11-10T00:24:38-05:00",
- "end": "1968-11-24T00:24:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:81db737b-092f-469d-a898-03c15260e6a6",
- "resource": {
- "resourceType": "Encounter",
- "id": "81db737b-092f-469d-a898-03c15260e6a6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- }
- ],
- "period": {
- "start": "1968-11-29T00:24:38-05:00",
- "end": "1968-11-29T00:39:38-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2b48d92c-5f92-46ee-9777-b42112b35cb3",
- "resource": {
- "resourceType": "AllergyIntolerance",
- "id": "2b48d92c-5f92-46ee-9777-b42112b35cb3",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
- "code": "confirmed"
- }
- ]
- },
- "type": "allergy",
- "category": [
- "food"
- ],
- "criticality": "low",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "300916003",
- "display": "Latex allergy"
- }
- ],
- "text": "Latex allergy"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "recordedDate": "1968-11-29T00:24:38-05:00"
- },
- "request": {
- "method": "POST",
- "url": "AllergyIntolerance"
- }
- },
- {
- "fullUrl": "urn:uuid:2d6f8548-1344-4a6f-b2ea-af43b808439c",
- "resource": {
- "resourceType": "AllergyIntolerance",
- "id": "2d6f8548-1344-4a6f-b2ea-af43b808439c",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
- "code": "confirmed"
- }
- ]
- },
- "type": "allergy",
- "category": [
- "food"
- ],
- "criticality": "low",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "419474003",
- "display": "Allergy to mould"
- }
- ],
- "text": "Allergy to mould"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "recordedDate": "1968-11-29T00:24:38-05:00"
- },
- "request": {
- "method": "POST",
- "url": "AllergyIntolerance"
- }
- },
- {
- "fullUrl": "urn:uuid:6840b5f7-e097-4ba7-b35b-0c3b0770a2b1",
- "resource": {
- "resourceType": "AllergyIntolerance",
- "id": "6840b5f7-e097-4ba7-b35b-0c3b0770a2b1",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
- "code": "confirmed"
- }
- ]
- },
- "type": "allergy",
- "category": [
- "food"
- ],
- "criticality": "low",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "232350006",
- "display": "House dust mite allergy"
- }
- ],
- "text": "House dust mite allergy"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "recordedDate": "1968-11-29T00:24:38-05:00"
- },
- "request": {
- "method": "POST",
- "url": "AllergyIntolerance"
- }
- },
- {
- "fullUrl": "urn:uuid:72c5fe15-5835-4e6f-a645-fa8659faa1dd",
- "resource": {
- "resourceType": "AllergyIntolerance",
- "id": "72c5fe15-5835-4e6f-a645-fa8659faa1dd",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
- "code": "confirmed"
- }
- ]
- },
- "type": "allergy",
- "category": [
- "food"
- ],
- "criticality": "low",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "232347008",
- "display": "Dander (animal) allergy"
- }
- ],
- "text": "Dander (animal) allergy"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "recordedDate": "1968-11-29T00:24:38-05:00"
- },
- "request": {
- "method": "POST",
- "url": "AllergyIntolerance"
- }
- },
- {
- "fullUrl": "urn:uuid:a62570ee-1e8d-410b-b353-786a036b4ac8",
- "resource": {
- "resourceType": "AllergyIntolerance",
- "id": "a62570ee-1e8d-410b-b353-786a036b4ac8",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
- "code": "confirmed"
- }
- ]
- },
- "type": "allergy",
- "category": [
- "food"
- ],
- "criticality": "low",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "419263009",
- "display": "Allergy to tree pollen"
- }
- ],
- "text": "Allergy to tree pollen"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "recordedDate": "1968-11-29T00:24:38-05:00"
- },
- "request": {
- "method": "POST",
- "url": "AllergyIntolerance"
- }
- },
- {
- "fullUrl": "urn:uuid:5ffad690-a0b1-4756-a7e1-120cd880090a",
- "resource": {
- "resourceType": "CareTeam",
- "id": "5ffad690-a0b1-4756-a7e1-120cd880090a",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:81db737b-092f-469d-a898-03c15260e6a6"
- },
- "period": {
- "start": "1968-11-29T00:24:38-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:1154ba7a-df80-4753-aef8-61351cc1817c",
- "resource": {
- "resourceType": "CarePlan",
- "id": "1154ba7a-df80-4753-aef8-61351cc1817c",
- "text": {
- "status": "generated",
- "div": "Care Plan for Self care.
Activities:
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "326051000000105",
- "display": "Self care"
- }
- ],
- "text": "Self care"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:81db737b-092f-469d-a898-03c15260e6a6"
- },
- "period": {
- "start": "1968-11-29T00:24:38-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:5ffad690-a0b1-4756-a7e1-120cd880090a"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "58332002",
- "display": "Allergy education"
- }
- ],
- "text": "Allergy education"
- },
- "status": "in-progress",
- "location": {
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:6a0eef16-49a0-41a2-b3cb-322c14eaab8d",
- "resource": {
- "resourceType": "Claim",
- "id": "6a0eef16-49a0-41a2-b3cb-322c14eaab8d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "1968-11-29T00:24:38-05:00",
- "end": "1968-11-29T00:39:38-05:00"
- },
- "created": "1968-11-29T00:39:38-05:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:81db737b-092f-469d-a898-03c15260e6a6"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:aef924ce-6797-4c16-8882-9bea844e5e5b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "aef924ce-6797-4c16-8882-9bea844e5e5b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "6a0eef16-49a0-41a2-b3cb-322c14eaab8d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "1968-11-29T00:39:38-05:00",
- "end": "1969-11-29T00:39:38-05:00"
- },
- "created": "1968-11-29T00:39:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:6a0eef16-49a0-41a2-b3cb-322c14eaab8d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "servicedPeriod": {
- "start": "1968-11-29T00:24:38-05:00",
- "end": "1968-11-29T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:81db737b-092f-469d-a898-03c15260e6a6"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "resource": {
- "resourceType": "Organization",
- "id": "54f6fc59-7709-310f-9249-1e92d0464b00",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "54f6fc59-7709-310f-9249-1e92d0464b00"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "PCP145391",
- "address": [
- {
- "line": [
- "21 MAIN ST"
- ],
- "city": "NORTH READING",
- "state": "MA",
- "postalCode": "01864-2270",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-00000000c710",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "50960"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Cummerata161",
- "given": [
- "Shantae970"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Shantae970.Cummerata161@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "21 MAIN ST"
- ],
- "city": "NORTH READING",
- "state": "MA",
- "postalCode": "01864-2270",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:51142185-4752-442c-a9ed-bb8ea0b31dd4",
- "resource": {
- "resourceType": "Encounter",
- "id": "51142185-4752-442c-a9ed-bb8ea0b31dd4",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710",
- "display": "Dr. Shantae970 Cummerata161"
- }
- }
- ],
- "period": {
- "start": "1983-12-29T00:24:38-05:00",
- "end": "1983-12-29T00:54:38-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:52207d7f-0b29-4fbd-a8ed-4b3f73373ef6",
- "resource": {
- "resourceType": "Condition",
- "id": "52207d7f-0b29-4fbd-a8ed-4b3f73373ef6",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:51142185-4752-442c-a9ed-bb8ea0b31dd4"
- },
- "onsetDateTime": "1983-12-29T00:24:38-05:00",
- "recordedDate": "1983-12-29T00:24:38-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:d64f4b7d-0267-4476-a83c-57b52f1c7eab",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "d64f4b7d-0267-4476-a83c-57b52f1c7eab",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316049",
- "display": "Hydrochlorothiazide 25 MG"
- }
- ],
- "text": "Hydrochlorothiazide 25 MG"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:51142185-4752-442c-a9ed-bb8ea0b31dd4"
- },
- "authoredOn": "1983-12-29T00:24:38-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710",
- "display": "Dr. Shantae970 Cummerata161"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:52207d7f-0b29-4fbd-a8ed-4b3f73373ef6"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:244423ca-353d-4294-b3ab-37e92f6b8d61",
- "resource": {
- "resourceType": "Claim",
- "id": "244423ca-353d-4294-b3ab-37e92f6b8d61",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "1983-12-29T00:24:38-05:00",
- "end": "1983-12-29T00:54:38-05:00"
- },
- "created": "1983-12-29T00:54:38-05:00",
- "provider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:d64f4b7d-0267-4476-a83c-57b52f1c7eab"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:51142185-4752-442c-a9ed-bb8ea0b31dd4"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:ba4d5d85-c7ca-4c93-ab81-4a6bb23d6a7f",
- "resource": {
- "resourceType": "CareTeam",
- "id": "ba4d5d85-c7ca-4c93-ab81-4a6bb23d6a7f",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:51142185-4752-442c-a9ed-bb8ea0b31dd4"
- },
- "period": {
- "start": "1983-12-29T00:24:38-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710",
- "display": "Dr. Shantae970 Cummerata161"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:cf5a54a4-2ec8-4acd-871f-1a59bbe7d992",
- "resource": {
- "resourceType": "Goal",
- "id": "cf5a54a4-2ec8-4acd-871f-1a59bbe7d992",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Maintain blood pressure below 140/90 mm[Hg]"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:0271e0b9-1743-49f0-a414-84826fd63d50",
- "resource": {
- "resourceType": "Goal",
- "id": "0271e0b9-1743-49f0-a414-84826fd63d50",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Reduce sodium intake to no more than 2,400 mg/day"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:c7fc97e5-f9e4-4fec-9525-051ddd1c6262",
- "resource": {
- "resourceType": "CarePlan",
- "id": "c7fc97e5-f9e4-4fec-9525-051ddd1c6262",
- "text": {
- "status": "generated",
- "div": "Care Plan for Lifestyle education regarding hypertension.
Activities:
- Lifestyle education regarding hypertension
- Lifestyle education regarding hypertension
- Lifestyle education regarding hypertension
- Lifestyle education regarding hypertension
Care plan is meant to treat Hypertension.
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "443402002",
- "display": "Lifestyle education regarding hypertension"
- }
- ],
- "text": "Lifestyle education regarding hypertension"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:51142185-4752-442c-a9ed-bb8ea0b31dd4"
- },
- "period": {
- "start": "1983-12-29T00:24:38-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:ba4d5d85-c7ca-4c93-ab81-4a6bb23d6a7f"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:52207d7f-0b29-4fbd-a8ed-4b3f73373ef6"
- }
- ],
- "goal": [
- {
- "reference": "urn:uuid:cf5a54a4-2ec8-4acd-871f-1a59bbe7d992"
- },
- {
- "reference": "urn:uuid:0271e0b9-1743-49f0-a414-84826fd63d50"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "386463000",
- "display": "Prescribed activity/exercise education"
- }
- ],
- "text": "Prescribed activity/exercise education"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP145391"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "413473000",
- "display": "Counseling about alcohol consumption"
- }
- ],
- "text": "Counseling about alcohol consumption"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP145391"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "1151000175103",
- "display": "Dietary approaches to stop hypertension diet"
- }
- ],
- "text": "Dietary approaches to stop hypertension diet"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP145391"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225323000",
- "display": "Smoking cessation education"
- }
- ],
- "text": "Smoking cessation education"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP145391"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:92f51b68-9ec2-499b-a6ba-b374200d9766",
- "resource": {
- "resourceType": "Claim",
- "id": "92f51b68-9ec2-499b-a6ba-b374200d9766",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "1983-12-29T00:24:38-05:00",
- "end": "1983-12-29T00:54:38-05:00"
- },
- "created": "1983-12-29T00:54:38-05:00",
- "provider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:52207d7f-0b29-4fbd-a8ed-4b3f73373ef6"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:51142185-4752-442c-a9ed-bb8ea0b31dd4"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:54b88b5e-69b9-4d7e-ab6a-48b23e71004a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "54b88b5e-69b9-4d7e-ab6a-48b23e71004a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "92f51b68-9ec2-499b-a6ba-b374200d9766"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "1983-12-29T00:54:38-05:00",
- "end": "1984-12-29T00:54:38-05:00"
- },
- "created": "1983-12-29T00:54:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:92f51b68-9ec2-499b-a6ba-b374200d9766"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:52207d7f-0b29-4fbd-a8ed-4b3f73373ef6"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "1983-12-29T00:24:38-05:00",
- "end": "1983-12-29T00:54:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:51142185-4752-442c-a9ed-bb8ea0b31dd4"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- },
- "servicedPeriod": {
- "start": "1983-12-29T00:24:38-05:00",
- "end": "1983-12-29T00:54:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:6d846e9f-40c3-42b5-a952-4401164102f7",
- "resource": {
- "resourceType": "Encounter",
- "id": "6d846e9f-40c3-42b5-a952-4401164102f7",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710",
- "display": "Dr. Shantae970 Cummerata161"
- }
- }
- ],
- "period": {
- "start": "2009-11-19T00:24:38-05:00",
- "end": "2009-11-19T00:39:38-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:87e26906-c3d6-424b-a0b8-28f51e7e00de",
- "resource": {
- "resourceType": "Observation",
- "id": "87e26906-c3d6-424b-a0b8-28f51e7e00de",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:6d846e9f-40c3-42b5-a952-4401164102f7"
- },
- "effectiveDateTime": "2009-11-19T00:24:38-05:00",
- "issued": "2009-11-19T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 155.01680645430415,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2231ce31-cf31-4d96-80c6-93cedad1ab82",
- "resource": {
- "resourceType": "Observation",
- "id": "2231ce31-cf31-4d96-80c6-93cedad1ab82",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:6d846e9f-40c3-42b5-a952-4401164102f7"
- },
- "effectiveDateTime": "2009-11-19T00:24:38-05:00",
- "issued": "2009-11-19T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 3.3512054198931174,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b21bb015-9965-4aed-8928-8da75982cb90",
- "resource": {
- "resourceType": "Observation",
- "id": "b21bb015-9965-4aed-8928-8da75982cb90",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:6d846e9f-40c3-42b5-a952-4401164102f7"
- },
- "effectiveDateTime": "2009-11-19T00:24:38-05:00",
- "issued": "2009-11-19T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 65.79684973105927,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3580afa4-29dc-4706-8074-dc783b6da239",
- "resource": {
- "resourceType": "Observation",
- "id": "3580afa4-29dc-4706-8074-dc783b6da239",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:6d846e9f-40c3-42b5-a952-4401164102f7"
- },
- "effectiveDateTime": "2009-11-19T00:24:38-05:00",
- "issued": "2009-11-19T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 27.38088803859094,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3088c179-0ef9-4fe7-899e-8a941bdac6f7",
- "resource": {
- "resourceType": "Observation",
- "id": "3088c179-0ef9-4fe7-899e-8a941bdac6f7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:6d846e9f-40c3-42b5-a952-4401164102f7"
- },
- "effectiveDateTime": "2009-11-19T00:24:38-05:00",
- "issued": "2009-11-19T00:24:38.752-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 84.85191424756442,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 103.6779728677694,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a2bb184e-d641-4585-ae20-153e8047b476",
- "resource": {
- "resourceType": "Observation",
- "id": "a2bb184e-d641-4585-ae20-153e8047b476",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:6d846e9f-40c3-42b5-a952-4401164102f7"
- },
- "effectiveDateTime": "2009-11-19T00:24:38-05:00",
- "issued": "2009-11-19T00:24:38.752-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b0af72c9-4314-4e9b-80a4-4c5d15a16bef",
- "resource": {
- "resourceType": "Immunization",
- "id": "b0af72c9-4314-4e9b-80a4-4c5d15a16bef",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:6d846e9f-40c3-42b5-a952-4401164102f7"
- },
- "occurrenceDateTime": "2009-11-19T00:24:38-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:d11073f7-618e-4b5e-b92b-25e5ec16866d",
- "resource": {
- "resourceType": "Claim",
- "id": "d11073f7-618e-4b5e-b92b-25e5ec16866d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2009-11-19T00:24:38-05:00",
- "end": "2009-11-19T00:39:38-05:00"
- },
- "created": "2009-11-19T00:39:38-05:00",
- "provider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:b0af72c9-4314-4e9b-80a4-4c5d15a16bef"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:6d846e9f-40c3-42b5-a952-4401164102f7"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:00d3d0bd-6866-405e-a67e-45fed5c5c57d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "00d3d0bd-6866-405e-a67e-45fed5c5c57d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d11073f7-618e-4b5e-b92b-25e5ec16866d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2009-11-19T00:39:38-05:00",
- "end": "2010-11-19T00:39:38-05:00"
- },
- "created": "2009-11-19T00:39:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d11073f7-618e-4b5e-b92b-25e5ec16866d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2009-11-19T00:24:38-05:00",
- "end": "2009-11-19T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:6d846e9f-40c3-42b5-a952-4401164102f7"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2009-11-19T00:24:38-05:00",
- "end": "2009-11-19T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:4f761b91-7603-461e-aecd-d18f297f6632",
- "resource": {
- "resourceType": "Encounter",
- "id": "4f761b91-7603-461e-aecd-d18f297f6632",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "394701000",
- "display": "Asthma follow-up"
- }
- ],
- "text": "Asthma follow-up"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- }
- ],
- "period": {
- "start": "2010-03-15T01:24:38-04:00",
- "end": "2010-03-15T01:39:38-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195967001",
- "display": "Asthma"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:740d7f40-2418-44c8-91dc-1000eba4dc3b",
- "resource": {
- "resourceType": "Claim",
- "id": "740d7f40-2418-44c8-91dc-1000eba4dc3b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2010-03-15T01:24:38-04:00",
- "end": "2010-03-15T01:39:38-04:00"
- },
- "created": "2010-03-15T01:39:38-04:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "394701000",
- "display": "Asthma follow-up"
- }
- ],
- "text": "Asthma follow-up"
- },
- "encounter": [
- {
- "reference": "urn:uuid:4f761b91-7603-461e-aecd-d18f297f6632"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4bdb9df2-97fe-4faa-bee4-25f2d5df7547",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "4bdb9df2-97fe-4faa-bee4-25f2d5df7547",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "740d7f40-2418-44c8-91dc-1000eba4dc3b"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2010-03-15T01:39:38-04:00",
- "end": "2011-03-15T01:39:38-04:00"
- },
- "created": "2010-03-15T01:39:38-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:740d7f40-2418-44c8-91dc-1000eba4dc3b"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "394701000",
- "display": "Asthma follow-up"
- }
- ],
- "text": "Asthma follow-up"
- },
- "servicedPeriod": {
- "start": "2010-03-15T01:24:38-04:00",
- "end": "2010-03-15T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:4f761b91-7603-461e-aecd-d18f297f6632"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f0dfdfb3-d42d-428c-9314-d68283fcf087",
- "resource": {
- "resourceType": "Encounter",
- "id": "f0dfdfb3-d42d-428c-9314-d68283fcf087",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- }
- ],
- "period": {
- "start": "2010-03-22T01:24:38-04:00",
- "end": "2010-03-22T01:54:38-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:20ff4a63-ada1-44f4-bff7-d951b0de4a2a",
- "resource": {
- "resourceType": "Condition",
- "id": "20ff4a63-ada1-44f4-bff7-d951b0de4a2a",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f0dfdfb3-d42d-428c-9314-d68283fcf087"
- },
- "onsetDateTime": "2010-03-22T01:24:38-04:00",
- "abatementDateTime": "2010-03-30T01:24:38-04:00",
- "recordedDate": "2010-03-22T01:24:38-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:09f5c351-3462-4977-9e41-fcd493d08e18",
- "resource": {
- "resourceType": "Observation",
- "id": "09f5c351-3462-4977-9e41-fcd493d08e18",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8331-1",
- "display": "Oral temperature"
- }
- ],
- "text": "Oral temperature"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f0dfdfb3-d42d-428c-9314-d68283fcf087"
- },
- "effectiveDateTime": "2010-03-22T01:24:38-04:00",
- "issued": "2010-03-22T01:24:38.752-04:00",
- "valueQuantity": {
- "value": 37.165995943945376,
- "unit": "Cel",
- "system": "http://unitsofmeasure.org",
- "code": "Cel"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b491e8d4-248f-4069-8098-a02cf194fc41",
- "resource": {
- "resourceType": "Procedure",
- "id": "b491e8d4-248f-4069-8098-a02cf194fc41",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117015009",
- "display": "Throat culture (procedure)"
- }
- ],
- "text": "Throat culture (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f0dfdfb3-d42d-428c-9314-d68283fcf087"
- },
- "performedPeriod": {
- "start": "2010-03-22T01:24:38-04:00",
- "end": "2010-03-22T01:39:38-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:20ff4a63-ada1-44f4-bff7-d951b0de4a2a",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:5e6e954f-8767-4479-b2fd-908554450698",
- "resource": {
- "resourceType": "Claim",
- "id": "5e6e954f-8767-4479-b2fd-908554450698",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2010-03-22T01:24:38-04:00",
- "end": "2010-03-22T01:54:38-04:00"
- },
- "created": "2010-03-22T01:54:38-04:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:20ff4a63-ada1-44f4-bff7-d951b0de4a2a"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:b491e8d4-248f-4069-8098-a02cf194fc41"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f0dfdfb3-d42d-428c-9314-d68283fcf087"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117015009",
- "display": "Throat culture (procedure)"
- }
- ],
- "text": "Throat culture (procedure)"
- },
- "net": {
- "value": 1327.91,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:ce04e563-4435-4383-b2c1-536b9595f39e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "ce04e563-4435-4383-b2c1-536b9595f39e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5e6e954f-8767-4479-b2fd-908554450698"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2010-03-22T01:54:38-04:00",
- "end": "2011-03-22T01:54:38-04:00"
- },
- "created": "2010-03-22T01:54:38-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5e6e954f-8767-4479-b2fd-908554450698"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:20ff4a63-ada1-44f4-bff7-d951b0de4a2a"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2010-03-22T01:24:38-04:00",
- "end": "2010-03-22T01:54:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f0dfdfb3-d42d-428c-9314-d68283fcf087"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2010-03-22T01:24:38-04:00",
- "end": "2010-03-22T01:54:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117015009",
- "display": "Throat culture (procedure)"
- }
- ],
- "text": "Throat culture (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-03-22T01:24:38-04:00",
- "end": "2010-03-22T01:54:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1327.91,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 265.58200000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1062.3280000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1327.91,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1327.91,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1062.3280000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f1313c7d-3148-335b-adc3-337f15567b82",
- "resource": {
- "resourceType": "Organization",
- "id": "f1313c7d-3148-335b-adc3-337f15567b82",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "f1313c7d-3148-335b-adc3-337f15567b82"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "WINCHESTER HOSPITAL FAMILY MEDICAL CENTER",
- "telecom": [
- {
- "system": "phone",
- "value": "978-988-6105"
- }
- ],
- "address": [
- {
- "line": [
- "500 SALEM STREET"
- ],
- "city": "WILMINGTON",
- "state": "MA",
- "postalCode": "1887",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-000000016c9c",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-000000016c9c",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "93340"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Pouros728",
- "given": [
- "Jacquelyn628"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Jacquelyn628.Pouros728@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "500 SALEM STREET"
- ],
- "city": "WILMINGTON",
- "state": "MA",
- "postalCode": "1887",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:31c17645-917b-4a93-8351-f8082dc5ac4e",
- "resource": {
- "resourceType": "Encounter",
- "id": "31c17645-917b-4a93-8351-f8082dc5ac4e",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c9c",
- "display": "Dr. Jacquelyn628 Pouros728"
- }
- }
- ],
- "period": {
- "start": "2010-04-01T01:24:38-04:00",
- "end": "2010-04-01T01:39:38-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:f1313c7d-3148-335b-adc3-337f15567b82",
- "display": "WINCHESTER HOSPITAL FAMILY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:0005c0c0-7a46-417b-b856-fd3967e12425",
- "resource": {
- "resourceType": "Immunization",
- "id": "0005c0c0-7a46-417b-b856-fd3967e12425",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:31c17645-917b-4a93-8351-f8082dc5ac4e"
- },
- "occurrenceDateTime": "2010-04-01T01:24:38-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:bab12743-0520-479b-89d2-a1aca8c4715e",
- "resource": {
- "resourceType": "Claim",
- "id": "bab12743-0520-479b-89d2-a1aca8c4715e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2010-04-01T01:24:38-04:00",
- "end": "2010-04-01T01:39:38-04:00"
- },
- "created": "2010-04-01T01:39:38-04:00",
- "provider": {
- "reference": "urn:uuid:f1313c7d-3148-335b-adc3-337f15567b82",
- "display": "WINCHESTER HOSPITAL FAMILY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:0005c0c0-7a46-417b-b856-fd3967e12425"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:31c17645-917b-4a93-8351-f8082dc5ac4e"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d77fe71b-1ef3-4187-8b33-a264a09d9c4d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d77fe71b-1ef3-4187-8b33-a264a09d9c4d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c9c"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c9c"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "bab12743-0520-479b-89d2-a1aca8c4715e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2010-04-01T01:39:38-04:00",
- "end": "2011-04-01T01:39:38-04:00"
- },
- "created": "2010-04-01T01:39:38-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c9c"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:bab12743-0520-479b-89d2-a1aca8c4715e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c9c"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-04-01T01:24:38-04:00",
- "end": "2010-04-01T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:31c17645-917b-4a93-8351-f8082dc5ac4e"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2010-04-01T01:24:38-04:00",
- "end": "2010-04-01T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5",
- "resource": {
- "resourceType": "Encounter",
- "id": "b5dbf510-069c-4db5-aa4a-6f5cca4f62f5",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710",
- "display": "Dr. Shantae970 Cummerata161"
- }
- }
- ],
- "period": {
- "start": "2011-11-24T00:24:38-05:00",
- "end": "2011-11-24T00:39:38-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:06135771-d68c-49a3-a76c-bd67f244e9ba",
- "resource": {
- "resourceType": "Observation",
- "id": "06135771-d68c-49a3-a76c-bd67f244e9ba",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 155.01680645430415,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9afc08b7-cced-4256-92c2-3bc88820eff5",
- "resource": {
- "resourceType": "Observation",
- "id": "9afc08b7-cced-4256-92c2-3bc88820eff5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 2.5789023713849293,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f5bb1c0e-cc13-40ad-8ede-31298b5f2470",
- "resource": {
- "resourceType": "Observation",
- "id": "f5bb1c0e-cc13-40ad-8ede-31298b5f2470",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 65.79684973105927,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:47218695-6cf7-45f6-be1f-e9ef32f49b01",
- "resource": {
- "resourceType": "Observation",
- "id": "47218695-6cf7-45f6-be1f-e9ef32f49b01",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 27.38088803859094,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b30d3a05-767e-40ee-81a0-bceef6b07a34",
- "resource": {
- "resourceType": "Observation",
- "id": "b30d3a05-767e-40ee-81a0-bceef6b07a34",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 72.98831814031367,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 131.85005905322754,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:92d29bf9-7185-4bb8-845c-ff21daa0731c",
- "resource": {
- "resourceType": "Observation",
- "id": "92d29bf9-7185-4bb8-845c-ff21daa0731c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 189.12126181004368,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fed82905-ced9-4774-905b-2211d342dacf",
- "resource": {
- "resourceType": "Observation",
- "id": "fed82905-ced9-4774-905b-2211d342dacf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 110.93157888298342,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:03ccbed2-d2da-455b-8121-fb2974759051",
- "resource": {
- "resourceType": "Observation",
- "id": "03ccbed2-d2da-455b-8121-fb2974759051",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 89.15392652380663,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1e23261c-fa8b-4497-bcca-6110e490c0f4",
- "resource": {
- "resourceType": "Observation",
- "id": "1e23261c-fa8b-4497-bcca-6110e490c0f4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 77.78101950964036,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:31d999a0-f89a-4bfd-8cf5-c1fc6054784a",
- "resource": {
- "resourceType": "Observation",
- "id": "31d999a0-f89a-4bfd-8cf5-c1fc6054784a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 9.963408128633784,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3f22617b-498e-485d-9096-b195d90cbef2",
- "resource": {
- "resourceType": "Observation",
- "id": "3f22617b-498e-485d-9096-b195d90cbef2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 3.953323310741711,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1a16a45b-3f9e-43fc-91f8-85cbbb9674f1",
- "resource": {
- "resourceType": "Observation",
- "id": "1a16a45b-3f9e-43fc-91f8-85cbbb9674f1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 14.656768990520666,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c4c75eae-9b86-4642-b471-a24f72480c0b",
- "resource": {
- "resourceType": "Observation",
- "id": "c4c75eae-9b86-4642-b471-a24f72480c0b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 48.44143477628018,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8b533527-2970-44a9-9516-9c6b56eb3a53",
- "resource": {
- "resourceType": "Observation",
- "id": "8b533527-2970-44a9-9516-9c6b56eb3a53",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 89.23779935011983,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9c0e0441-a657-4372-ba1c-24a01ab0ffcd",
- "resource": {
- "resourceType": "Observation",
- "id": "9c0e0441-a657-4372-ba1c-24a01ab0ffcd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 27.43081477867061,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e7c1564e-e4a8-448a-9ba3-eae24e61514f",
- "resource": {
- "resourceType": "Observation",
- "id": "e7c1564e-e4a8-448a-9ba3-eae24e61514f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 33.15719128456441,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0b9da397-a08a-4181-bab2-144957ce2dc3",
- "resource": {
- "resourceType": "Observation",
- "id": "0b9da397-a08a-4181-bab2-144957ce2dc3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 44.015084388458064,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ce35a31f-e2af-4510-be31-6ecf5bcaba49",
- "resource": {
- "resourceType": "Observation",
- "id": "ce35a31f-e2af-4510-be31-6ecf5bcaba49",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 210.6273154244719,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:78fd90eb-a447-4ed8-a1c2-6335d9974d91",
- "resource": {
- "resourceType": "Observation",
- "id": "78fd90eb-a447-4ed8-a1c2-6335d9974d91",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 268.67951473420686,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cf37b6d7-243c-41bc-9ac1-50b62d0dbb91",
- "resource": {
- "resourceType": "Observation",
- "id": "cf37b6d7-243c-41bc-9ac1-50b62d0dbb91",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 11.230019304893485,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e96f044a-4cd5-4892-8c7d-aa004fdd18d2",
- "resource": {
- "resourceType": "Observation",
- "id": "e96f044a-4cd5-4892-8c7d-aa004fdd18d2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:91fb533f-942b-44af-8c67-5ea322a27ef6",
- "resource": {
- "resourceType": "Immunization",
- "id": "91fb533f-942b-44af-8c67-5ea322a27ef6",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "occurrenceDateTime": "2011-11-24T00:24:38-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:cce6f3b0-ebbf-4d01-8c33-667be472ccc9",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "cce6f3b0-ebbf-4d01-8c33-667be472ccc9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "result": [
- {
- "reference": "urn:uuid:92d29bf9-7185-4bb8-845c-ff21daa0731c",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:fed82905-ced9-4774-905b-2211d342dacf",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:03ccbed2-d2da-455b-8121-fb2974759051",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:1e23261c-fa8b-4497-bcca-6110e490c0f4",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:9f007049-35c6-4b31-8084-022d11181a05",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "9f007049-35c6-4b31-8084-022d11181a05",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- },
- "effectiveDateTime": "2011-11-24T00:24:38-05:00",
- "issued": "2011-11-24T00:24:38.752-05:00",
- "result": [
- {
- "reference": "urn:uuid:31d999a0-f89a-4bfd-8cf5-c1fc6054784a",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:3f22617b-498e-485d-9096-b195d90cbef2",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:1a16a45b-3f9e-43fc-91f8-85cbbb9674f1",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:c4c75eae-9b86-4642-b471-a24f72480c0b",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:8b533527-2970-44a9-9516-9c6b56eb3a53",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:9c0e0441-a657-4372-ba1c-24a01ab0ffcd",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:e7c1564e-e4a8-448a-9ba3-eae24e61514f",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:0b9da397-a08a-4181-bab2-144957ce2dc3",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:ce35a31f-e2af-4510-be31-6ecf5bcaba49",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:78fd90eb-a447-4ed8-a1c2-6335d9974d91",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:cf37b6d7-243c-41bc-9ac1-50b62d0dbb91",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:7e580db2-ee89-4bef-a510-12f2ac002519",
- "resource": {
- "resourceType": "Claim",
- "id": "7e580db2-ee89-4bef-a510-12f2ac002519",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2011-11-24T00:24:38-05:00",
- "end": "2011-11-24T00:39:38-05:00"
- },
- "created": "2011-11-24T00:39:38-05:00",
- "provider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:91fb533f-942b-44af-8c67-5ea322a27ef6"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:a34c786d-48aa-4f06-b6ea-f043b45176ba",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "a34c786d-48aa-4f06-b6ea-f043b45176ba",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "7e580db2-ee89-4bef-a510-12f2ac002519"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2011-11-24T00:39:38-05:00",
- "end": "2012-11-24T00:39:38-05:00"
- },
- "created": "2011-11-24T00:39:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:7e580db2-ee89-4bef-a510-12f2ac002519"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2011-11-24T00:24:38-05:00",
- "end": "2011-11-24T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:b5dbf510-069c-4db5-aa4a-6f5cca4f62f5"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2011-11-24T00:24:38-05:00",
- "end": "2011-11-24T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8c31170c-62fc-4eb6-88a9-c92cb1966350",
- "resource": {
- "resourceType": "Encounter",
- "id": "8c31170c-62fc-4eb6-88a9-c92cb1966350",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- }
- ],
- "period": {
- "start": "2012-05-10T01:24:38-04:00",
- "end": "2012-05-10T01:39:38-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:229dc440-7417-4bd3-902c-e626972aa508",
- "resource": {
- "resourceType": "Immunization",
- "id": "229dc440-7417-4bd3-902c-e626972aa508",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:8c31170c-62fc-4eb6-88a9-c92cb1966350"
- },
- "occurrenceDateTime": "2012-05-10T01:24:38-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:d088c2b8-6235-46cc-99fa-595a2099b302",
- "resource": {
- "resourceType": "Claim",
- "id": "d088c2b8-6235-46cc-99fa-595a2099b302",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2012-05-10T01:24:38-04:00",
- "end": "2012-05-10T01:39:38-04:00"
- },
- "created": "2012-05-10T01:39:38-04:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:229dc440-7417-4bd3-902c-e626972aa508"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8c31170c-62fc-4eb6-88a9-c92cb1966350"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1c1e10f9-aa1b-4b8f-8cda-fc941def3e69",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "1c1e10f9-aa1b-4b8f-8cda-fc941def3e69",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d088c2b8-6235-46cc-99fa-595a2099b302"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2012-05-10T01:39:38-04:00",
- "end": "2013-05-10T01:39:38-04:00"
- },
- "created": "2012-05-10T01:39:38-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d088c2b8-6235-46cc-99fa-595a2099b302"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-05-10T01:24:38-04:00",
- "end": "2012-05-10T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8c31170c-62fc-4eb6-88a9-c92cb1966350"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2012-05-10T01:24:38-04:00",
- "end": "2012-05-10T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:443b45e3-bac2-47f4-b169-c47a1844a91d",
- "resource": {
- "resourceType": "Encounter",
- "id": "443b45e3-bac2-47f4-b169-c47a1844a91d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- }
- ],
- "period": {
- "start": "2012-05-06T01:24:38-04:00",
- "end": "2012-05-06T01:39:38-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:df427f8b-43f3-48e6-8c0c-16c7a369cad4",
- "resource": {
- "resourceType": "Condition",
- "id": "df427f8b-43f3-48e6-8c0c-16c7a369cad4",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:443b45e3-bac2-47f4-b169-c47a1844a91d"
- },
- "onsetDateTime": "2012-05-06T01:24:38-04:00",
- "abatementDateTime": "2012-05-20T01:24:38-04:00",
- "recordedDate": "2012-05-06T01:24:38-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:b1637edf-bd6f-448a-b545-7f964cb05039",
- "resource": {
- "resourceType": "Observation",
- "id": "b1637edf-bd6f-448a-b545-7f964cb05039",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:443b45e3-bac2-47f4-b169-c47a1844a91d"
- },
- "effectiveDateTime": "2012-05-10T01:24:38-04:00",
- "issued": "2012-05-10T01:24:38.752-04:00",
- "valueQuantity": {
- "value": 155.01680645430415,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8972edca-cd45-444c-841f-e57e31bfc436",
- "resource": {
- "resourceType": "Observation",
- "id": "8972edca-cd45-444c-841f-e57e31bfc436",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:443b45e3-bac2-47f4-b169-c47a1844a91d"
- },
- "effectiveDateTime": "2012-05-10T01:24:38-04:00",
- "issued": "2012-05-10T01:24:38.752-04:00",
- "valueQuantity": {
- "value": 1.3611606013389705,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3b2b3fac-c1f4-4ef4-b924-ddea599ececb",
- "resource": {
- "resourceType": "Observation",
- "id": "3b2b3fac-c1f4-4ef4-b924-ddea599ececb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:443b45e3-bac2-47f4-b169-c47a1844a91d"
- },
- "effectiveDateTime": "2012-05-10T01:24:38-04:00",
- "issued": "2012-05-10T01:24:38.752-04:00",
- "valueQuantity": {
- "value": 65.79684973105927,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:24bbf580-0dda-4cae-b31a-7c090af87860",
- "resource": {
- "resourceType": "Observation",
- "id": "24bbf580-0dda-4cae-b31a-7c090af87860",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:443b45e3-bac2-47f4-b169-c47a1844a91d"
- },
- "effectiveDateTime": "2012-05-10T01:24:38-04:00",
- "issued": "2012-05-10T01:24:38.752-04:00",
- "valueQuantity": {
- "value": 27.38088803859094,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:53ed9ffd-5c35-4bfc-8076-e2fef2e3c47d",
- "resource": {
- "resourceType": "Observation",
- "id": "53ed9ffd-5c35-4bfc-8076-e2fef2e3c47d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:443b45e3-bac2-47f4-b169-c47a1844a91d"
- },
- "effectiveDateTime": "2012-05-10T01:24:38-04:00",
- "issued": "2012-05-10T01:24:38.752-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 73.43063713020616,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 124.97982289550339,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c797848a-46b5-43cd-89ca-b4551f1ac8e1",
- "resource": {
- "resourceType": "Observation",
- "id": "c797848a-46b5-43cd-89ca-b4551f1ac8e1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:443b45e3-bac2-47f4-b169-c47a1844a91d"
- },
- "effectiveDateTime": "2012-05-10T01:24:38-04:00",
- "issued": "2012-05-10T01:24:38.752-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6031e4eb-32ee-4cd4-86db-05ef0b14992f",
- "resource": {
- "resourceType": "Claim",
- "id": "6031e4eb-32ee-4cd4-86db-05ef0b14992f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2012-05-06T01:24:38-04:00",
- "end": "2012-05-06T01:39:38-04:00"
- },
- "created": "2012-05-06T01:39:38-04:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:df427f8b-43f3-48e6-8c0c-16c7a369cad4"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:443b45e3-bac2-47f4-b169-c47a1844a91d"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:059b2ec8-794c-4d39-ad71-5faf4b2f7d2f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "059b2ec8-794c-4d39-ad71-5faf4b2f7d2f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "6031e4eb-32ee-4cd4-86db-05ef0b14992f"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2012-05-06T01:39:38-04:00",
- "end": "2013-05-06T01:39:38-04:00"
- },
- "created": "2012-05-06T01:39:38-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:6031e4eb-32ee-4cd4-86db-05ef0b14992f"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:df427f8b-43f3-48e6-8c0c-16c7a369cad4"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2012-05-06T01:24:38-04:00",
- "end": "2012-05-06T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:443b45e3-bac2-47f4-b169-c47a1844a91d"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2012-05-06T01:24:38-04:00",
- "end": "2012-05-06T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:bbaa1361-3f33-4afe-83bb-5ed614b14dc5",
- "resource": {
- "resourceType": "Encounter",
- "id": "bbaa1361-3f33-4afe-83bb-5ed614b14dc5",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710",
- "display": "Dr. Shantae970 Cummerata161"
- }
- }
- ],
- "period": {
- "start": "2013-11-28T00:24:38-05:00",
- "end": "2013-11-28T00:39:38-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:ecd55c0b-fa06-472c-b30b-42d758f6b1bf",
- "resource": {
- "resourceType": "Observation",
- "id": "ecd55c0b-fa06-472c-b30b-42d758f6b1bf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:bbaa1361-3f33-4afe-83bb-5ed614b14dc5"
- },
- "effectiveDateTime": "2013-11-28T00:24:38-05:00",
- "issued": "2013-11-28T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 155.01680645430415,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:89656b69-eb88-4520-b251-5e7f7ac1d73b",
- "resource": {
- "resourceType": "Observation",
- "id": "89656b69-eb88-4520-b251-5e7f7ac1d73b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:bbaa1361-3f33-4afe-83bb-5ed614b14dc5"
- },
- "effectiveDateTime": "2013-11-28T00:24:38-05:00",
- "issued": "2013-11-28T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 3.542390063459913,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cde549fa-9827-470f-b942-d619d6c50b0f",
- "resource": {
- "resourceType": "Observation",
- "id": "cde549fa-9827-470f-b942-d619d6c50b0f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:bbaa1361-3f33-4afe-83bb-5ed614b14dc5"
- },
- "effectiveDateTime": "2013-11-28T00:24:38-05:00",
- "issued": "2013-11-28T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 65.79684973105927,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e439cc95-b372-40ea-95af-2e7b3734fbc3",
- "resource": {
- "resourceType": "Observation",
- "id": "e439cc95-b372-40ea-95af-2e7b3734fbc3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:bbaa1361-3f33-4afe-83bb-5ed614b14dc5"
- },
- "effectiveDateTime": "2013-11-28T00:24:38-05:00",
- "issued": "2013-11-28T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 27.38088803859094,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5a56ee21-6689-453e-b435-fcaaef055385",
- "resource": {
- "resourceType": "Observation",
- "id": "5a56ee21-6689-453e-b435-fcaaef055385",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:bbaa1361-3f33-4afe-83bb-5ed614b14dc5"
- },
- "effectiveDateTime": "2013-11-28T00:24:38-05:00",
- "issued": "2013-11-28T00:24:38.752-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 80.1030955878793,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 119.84972065684128,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c4973e7c-2f78-46e5-9287-745b2b9bb870",
- "resource": {
- "resourceType": "Observation",
- "id": "c4973e7c-2f78-46e5-9287-745b2b9bb870",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:bbaa1361-3f33-4afe-83bb-5ed614b14dc5"
- },
- "effectiveDateTime": "2013-11-28T00:24:38-05:00",
- "issued": "2013-11-28T00:24:38.752-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:533f0cdf-6c30-4eee-9785-1f9be49027ba",
- "resource": {
- "resourceType": "Immunization",
- "id": "533f0cdf-6c30-4eee-9785-1f9be49027ba",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:bbaa1361-3f33-4afe-83bb-5ed614b14dc5"
- },
- "occurrenceDateTime": "2013-11-28T00:24:38-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:3693fb32-090d-4897-8e2e-a1f66df31a89",
- "resource": {
- "resourceType": "Claim",
- "id": "3693fb32-090d-4897-8e2e-a1f66df31a89",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2013-11-28T00:24:38-05:00",
- "end": "2013-11-28T00:39:38-05:00"
- },
- "created": "2013-11-28T00:39:38-05:00",
- "provider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:533f0cdf-6c30-4eee-9785-1f9be49027ba"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:bbaa1361-3f33-4afe-83bb-5ed614b14dc5"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:182d280b-56bb-49b3-9d2f-0d7475811af3",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "182d280b-56bb-49b3-9d2f-0d7475811af3",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3693fb32-090d-4897-8e2e-a1f66df31a89"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2013-11-28T00:39:38-05:00",
- "end": "2014-11-28T00:39:38-05:00"
- },
- "created": "2013-11-28T00:39:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3693fb32-090d-4897-8e2e-a1f66df31a89"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2013-11-28T00:24:38-05:00",
- "end": "2013-11-28T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:bbaa1361-3f33-4afe-83bb-5ed614b14dc5"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2013-11-28T00:24:38-05:00",
- "end": "2013-11-28T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4",
- "resource": {
- "resourceType": "Encounter",
- "id": "1659ef44-7978-42b5-8414-4fc908f847e4",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710",
- "display": "Dr. Shantae970 Cummerata161"
- }
- }
- ],
- "period": {
- "start": "2015-11-05T00:24:38-05:00",
- "end": "2015-11-05T00:39:38-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b55d9784-444e-44a7-9e79-6bc11caad74e",
- "resource": {
- "resourceType": "Observation",
- "id": "b55d9784-444e-44a7-9e79-6bc11caad74e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "effectiveDateTime": "2015-11-05T00:24:38-05:00",
- "issued": "2015-11-05T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 155.01680645430415,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ca5491d9-d70b-4081-8dd2-e1ddc9990d8b",
- "resource": {
- "resourceType": "Observation",
- "id": "ca5491d9-d70b-4081-8dd2-e1ddc9990d8b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "effectiveDateTime": "2015-11-05T00:24:38-05:00",
- "issued": "2015-11-05T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 2.072250263933972,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2ca83951-ecfb-4219-bd43-ae90b456e40e",
- "resource": {
- "resourceType": "Observation",
- "id": "2ca83951-ecfb-4219-bd43-ae90b456e40e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "effectiveDateTime": "2015-11-05T00:24:38-05:00",
- "issued": "2015-11-05T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 65.79684973105927,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7219d461-04a0-4992-ac65-2b19444f906f",
- "resource": {
- "resourceType": "Observation",
- "id": "7219d461-04a0-4992-ac65-2b19444f906f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "effectiveDateTime": "2015-11-05T00:24:38-05:00",
- "issued": "2015-11-05T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 27.38088803859094,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ffce4c2f-a5eb-4455-9e1d-3ce884744fd4",
- "resource": {
- "resourceType": "Observation",
- "id": "ffce4c2f-a5eb-4455-9e1d-3ce884744fd4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "effectiveDateTime": "2015-11-05T00:24:38-05:00",
- "issued": "2015-11-05T00:24:38.752-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 72.84370330219258,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 116.58483903330045,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:800f8564-59a5-49c3-b2fe-f84e231b0e31",
- "resource": {
- "resourceType": "Observation",
- "id": "800f8564-59a5-49c3-b2fe-f84e231b0e31",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "effectiveDateTime": "2015-11-05T00:24:38-05:00",
- "issued": "2015-11-05T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 194.70322634025746,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0dae0e54-ddd1-49ba-900b-6c0eaef0c23e",
- "resource": {
- "resourceType": "Observation",
- "id": "0dae0e54-ddd1-49ba-900b-6c0eaef0c23e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "effectiveDateTime": "2015-11-05T00:24:38-05:00",
- "issued": "2015-11-05T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 116.72101146761173,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e2a74651-b2a1-4124-bd2c-047cae6b9c72",
- "resource": {
- "resourceType": "Observation",
- "id": "e2a74651-b2a1-4124-bd2c-047cae6b9c72",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "effectiveDateTime": "2015-11-05T00:24:38-05:00",
- "issued": "2015-11-05T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 107.52292666005265,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d0451c95-db66-464f-beb2-bf1a0b95323f",
- "resource": {
- "resourceType": "Observation",
- "id": "d0451c95-db66-464f-beb2-bf1a0b95323f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "effectiveDateTime": "2015-11-05T00:24:38-05:00",
- "issued": "2015-11-05T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 63.83609738668246,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:18f296a3-56db-417d-8cc3-b3ef9edb0adc",
- "resource": {
- "resourceType": "Observation",
- "id": "18f296a3-56db-417d-8cc3-b3ef9edb0adc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "effectiveDateTime": "2015-11-05T00:24:38-05:00",
- "issued": "2015-11-05T00:24:38.752-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e8237a76-c44f-4dfd-ac58-5d92d7dc5d3a",
- "resource": {
- "resourceType": "Immunization",
- "id": "e8237a76-c44f-4dfd-ac58-5d92d7dc5d3a",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "occurrenceDateTime": "2015-11-05T00:24:38-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:a33e2a40-fa20-4edc-bb07-a47ce42d89cf",
- "resource": {
- "resourceType": "Immunization",
- "id": "a33e2a40-fa20-4edc-bb07-a47ce42d89cf",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "occurrenceDateTime": "2015-11-05T00:24:38-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:39ca57f8-aa5c-4df4-8732-025f6808ad94",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "39ca57f8-aa5c-4df4-8732-025f6808ad94",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- },
- "effectiveDateTime": "2015-11-05T00:24:38-05:00",
- "issued": "2015-11-05T00:24:38.752-05:00",
- "result": [
- {
- "reference": "urn:uuid:800f8564-59a5-49c3-b2fe-f84e231b0e31",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:0dae0e54-ddd1-49ba-900b-6c0eaef0c23e",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:e2a74651-b2a1-4124-bd2c-047cae6b9c72",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:d0451c95-db66-464f-beb2-bf1a0b95323f",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:22a2e60b-39ad-4fad-8d5a-a158b7d162dc",
- "resource": {
- "resourceType": "Claim",
- "id": "22a2e60b-39ad-4fad-8d5a-a158b7d162dc",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2015-11-05T00:24:38-05:00",
- "end": "2015-11-05T00:39:38-05:00"
- },
- "created": "2015-11-05T00:39:38-05:00",
- "provider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:e8237a76-c44f-4dfd-ac58-5d92d7dc5d3a"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:a33e2a40-fa20-4edc-bb07-a47ce42d89cf"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e88abc17-9e44-41fe-8080-4167c143060c",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "e88abc17-9e44-41fe-8080-4167c143060c",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "22a2e60b-39ad-4fad-8d5a-a158b7d162dc"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2015-11-05T00:39:38-05:00",
- "end": "2016-11-05T00:39:38-04:00"
- },
- "created": "2015-11-05T00:39:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:22a2e60b-39ad-4fad-8d5a-a158b7d162dc"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-11-05T00:24:38-05:00",
- "end": "2015-11-05T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:1659ef44-7978-42b5-8414-4fc908f847e4"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "servicedPeriod": {
- "start": "2015-11-05T00:24:38-05:00",
- "end": "2015-11-05T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2015-11-05T00:24:38-05:00",
- "end": "2015-11-05T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 224.83200000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:ff36b67d-69de-4f37-8691-e8ceb607a5ec",
- "resource": {
- "resourceType": "Encounter",
- "id": "ff36b67d-69de-4f37-8691-e8ceb607a5ec",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183478001",
- "display": "Emergency hospital admission for asthma"
- }
- ],
- "text": "Emergency hospital admission for asthma"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- }
- ],
- "period": {
- "start": "2016-02-12T00:24:38-05:00",
- "end": "2016-02-12T01:24:38-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195967001",
- "display": "Asthma"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:713d6566-ffc3-4c2e-8aef-73456cb0da76",
- "resource": {
- "resourceType": "Claim",
- "id": "713d6566-ffc3-4c2e-8aef-73456cb0da76",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2016-02-12T00:24:38-05:00",
- "end": "2016-02-12T01:24:38-05:00"
- },
- "created": "2016-02-12T01:24:38-05:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183478001",
- "display": "Emergency hospital admission for asthma"
- }
- ],
- "text": "Emergency hospital admission for asthma"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ff36b67d-69de-4f37-8691-e8ceb607a5ec"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:81e5aae4-1689-4698-938d-382ec3204a98",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "81e5aae4-1689-4698-938d-382ec3204a98",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "713d6566-ffc3-4c2e-8aef-73456cb0da76"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2016-02-12T01:24:38-05:00",
- "end": "2017-02-12T01:24:38-05:00"
- },
- "created": "2016-02-12T01:24:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:713d6566-ffc3-4c2e-8aef-73456cb0da76"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183478001",
- "display": "Emergency hospital admission for asthma"
- }
- ],
- "text": "Emergency hospital admission for asthma"
- },
- "servicedPeriod": {
- "start": "2016-02-12T00:24:38-05:00",
- "end": "2016-02-12T01:24:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ff36b67d-69de-4f37-8691-e8ceb607a5ec"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:bc6f1a2e-44c9-488a-8034-68bac412bbe9",
- "resource": {
- "resourceType": "Encounter",
- "id": "bc6f1a2e-44c9-488a-8034-68bac412bbe9",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "394701000",
- "display": "Asthma follow-up"
- }
- ],
- "text": "Asthma follow-up"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- }
- ],
- "period": {
- "start": "2016-02-14T00:24:38-05:00",
- "end": "2016-02-14T00:39:38-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195967001",
- "display": "Asthma"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d51f5212-baba-42f3-b965-a6d6dc8cee6f",
- "resource": {
- "resourceType": "Claim",
- "id": "d51f5212-baba-42f3-b965-a6d6dc8cee6f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2016-02-14T00:24:38-05:00",
- "end": "2016-02-14T00:39:38-05:00"
- },
- "created": "2016-02-14T00:39:38-05:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "394701000",
- "display": "Asthma follow-up"
- }
- ],
- "text": "Asthma follow-up"
- },
- "encounter": [
- {
- "reference": "urn:uuid:bc6f1a2e-44c9-488a-8034-68bac412bbe9"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:a926aad6-9213-4fb4-aba5-7e2d8a22af1c",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "a926aad6-9213-4fb4-aba5-7e2d8a22af1c",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d51f5212-baba-42f3-b965-a6d6dc8cee6f"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2016-02-14T00:39:38-05:00",
- "end": "2017-02-14T00:39:38-05:00"
- },
- "created": "2016-02-14T00:39:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d51f5212-baba-42f3-b965-a6d6dc8cee6f"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "394701000",
- "display": "Asthma follow-up"
- }
- ],
- "text": "Asthma follow-up"
- },
- "servicedPeriod": {
- "start": "2016-02-14T00:24:38-05:00",
- "end": "2016-02-14T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:bc6f1a2e-44c9-488a-8034-68bac412bbe9"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:094603d6-cc36-4ba5-8c27-3604aff7a089",
- "resource": {
- "resourceType": "Encounter",
- "id": "094603d6-cc36-4ba5-8c27-3604aff7a089",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- }
- ],
- "period": {
- "start": "2016-03-29T01:24:38-04:00",
- "end": "2016-03-29T01:39:38-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f3a2e527-f76b-497f-bb87-a33d441936db",
- "resource": {
- "resourceType": "Condition",
- "id": "f3a2e527-f76b-497f-bb87-a33d441936db",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:094603d6-cc36-4ba5-8c27-3604aff7a089"
- },
- "onsetDateTime": "2016-03-29T01:24:38-04:00",
- "abatementDateTime": "2016-04-10T01:24:38-04:00",
- "recordedDate": "2016-03-29T01:24:38-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:97363fc2-301e-48c1-8745-b1a33ea7aca6",
- "resource": {
- "resourceType": "Observation",
- "id": "97363fc2-301e-48c1-8745-b1a33ea7aca6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8331-1",
- "display": "Oral temperature"
- }
- ],
- "text": "Oral temperature"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:094603d6-cc36-4ba5-8c27-3604aff7a089"
- },
- "effectiveDateTime": "2016-03-29T01:24:38-04:00",
- "issued": "2016-03-29T01:24:38.752-04:00",
- "valueQuantity": {
- "value": 37.25583508874942,
- "unit": "Cel",
- "system": "http://unitsofmeasure.org",
- "code": "Cel"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:245e62dc-91e5-4247-93cc-4c00092134ae",
- "resource": {
- "resourceType": "Claim",
- "id": "245e62dc-91e5-4247-93cc-4c00092134ae",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2016-03-29T01:24:38-04:00",
- "end": "2016-03-29T01:39:38-04:00"
- },
- "created": "2016-03-29T01:39:38-04:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:f3a2e527-f76b-497f-bb87-a33d441936db"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:094603d6-cc36-4ba5-8c27-3604aff7a089"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:bf97f5fd-8886-4587-bfa1-bda0ffd7072e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "bf97f5fd-8886-4587-bfa1-bda0ffd7072e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "245e62dc-91e5-4247-93cc-4c00092134ae"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2016-03-29T01:39:38-04:00",
- "end": "2017-03-29T01:39:38-04:00"
- },
- "created": "2016-03-29T01:39:38-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:245e62dc-91e5-4247-93cc-4c00092134ae"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:f3a2e527-f76b-497f-bb87-a33d441936db"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2016-03-29T01:24:38-04:00",
- "end": "2016-03-29T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:094603d6-cc36-4ba5-8c27-3604aff7a089"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2016-03-29T01:24:38-04:00",
- "end": "2016-03-29T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:e9e51b72-0f7c-4f19-96de-943b0bcf0ce0",
- "resource": {
- "resourceType": "Encounter",
- "id": "e9e51b72-0f7c-4f19-96de-943b0bcf0ce0",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c9c",
- "display": "Dr. Jacquelyn628 Pouros728"
- }
- }
- ],
- "period": {
- "start": "2016-04-07T01:24:38-04:00",
- "end": "2016-04-07T01:39:38-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:f1313c7d-3148-335b-adc3-337f15567b82",
- "display": "WINCHESTER HOSPITAL FAMILY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d9d54428-d2bd-4e6e-8489-6079bc8567f9",
- "resource": {
- "resourceType": "Immunization",
- "id": "d9d54428-d2bd-4e6e-8489-6079bc8567f9",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e9e51b72-0f7c-4f19-96de-943b0bcf0ce0"
- },
- "occurrenceDateTime": "2016-04-07T01:24:38-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:37231dc2-e734-4236-bd6b-40af79bd012d",
- "resource": {
- "resourceType": "Claim",
- "id": "37231dc2-e734-4236-bd6b-40af79bd012d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2016-04-07T01:24:38-04:00",
- "end": "2016-04-07T01:39:38-04:00"
- },
- "created": "2016-04-07T01:39:38-04:00",
- "provider": {
- "reference": "urn:uuid:f1313c7d-3148-335b-adc3-337f15567b82",
- "display": "WINCHESTER HOSPITAL FAMILY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:d9d54428-d2bd-4e6e-8489-6079bc8567f9"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e9e51b72-0f7c-4f19-96de-943b0bcf0ce0"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:667510c2-4aaf-408b-a8c5-bb1f6febd5a7",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "667510c2-4aaf-408b-a8c5-bb1f6febd5a7",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c9c"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c9c"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "37231dc2-e734-4236-bd6b-40af79bd012d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2016-04-07T01:39:38-04:00",
- "end": "2017-04-07T01:39:38-04:00"
- },
- "created": "2016-04-07T01:39:38-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c9c"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:37231dc2-e734-4236-bd6b-40af79bd012d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c9c"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-04-07T01:24:38-04:00",
- "end": "2016-04-07T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:e9e51b72-0f7c-4f19-96de-943b0bcf0ce0"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2016-04-07T01:24:38-04:00",
- "end": "2016-04-07T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8e8eed13-baa1-4060-9996-1970a3f26f43",
- "resource": {
- "resourceType": "Encounter",
- "id": "8e8eed13-baa1-4060-9996-1970a3f26f43",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e",
- "display": "Dr. Cedrick207 Lind531"
- }
- }
- ],
- "period": {
- "start": "2016-04-14T01:24:38-04:00",
- "end": "2016-04-14T01:39:38-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:8a950bf2-f0d6-4a63-a55e-23299ed6add6",
- "resource": {
- "resourceType": "Observation",
- "id": "8a950bf2-f0d6-4a63-a55e-23299ed6add6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:8e8eed13-baa1-4060-9996-1970a3f26f43"
- },
- "effectiveDateTime": "2016-04-14T01:24:38-04:00",
- "issued": "2016-04-14T01:24:38.752-04:00",
- "valueQuantity": {
- "value": 155.01680645430415,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:24fad327-95b7-40b7-b710-54d593746870",
- "resource": {
- "resourceType": "Observation",
- "id": "24fad327-95b7-40b7-b710-54d593746870",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:8e8eed13-baa1-4060-9996-1970a3f26f43"
- },
- "effectiveDateTime": "2016-04-14T01:24:38-04:00",
- "issued": "2016-04-14T01:24:38.752-04:00",
- "valueQuantity": {
- "value": 3.7099253661720883,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6d8b787f-3b14-4d7b-b39c-cb0d7bb5d6bf",
- "resource": {
- "resourceType": "Observation",
- "id": "6d8b787f-3b14-4d7b-b39c-cb0d7bb5d6bf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:8e8eed13-baa1-4060-9996-1970a3f26f43"
- },
- "effectiveDateTime": "2016-04-14T01:24:38-04:00",
- "issued": "2016-04-14T01:24:38.752-04:00",
- "valueQuantity": {
- "value": 65.79684973105927,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b8c136a2-4029-4ccc-a501-c80921d31493",
- "resource": {
- "resourceType": "Observation",
- "id": "b8c136a2-4029-4ccc-a501-c80921d31493",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:8e8eed13-baa1-4060-9996-1970a3f26f43"
- },
- "effectiveDateTime": "2016-04-14T01:24:38-04:00",
- "issued": "2016-04-14T01:24:38.752-04:00",
- "valueQuantity": {
- "value": 27.38088803859094,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a71ecd18-3f86-4ed3-b692-6ee552b2086d",
- "resource": {
- "resourceType": "Observation",
- "id": "a71ecd18-3f86-4ed3-b692-6ee552b2086d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:8e8eed13-baa1-4060-9996-1970a3f26f43"
- },
- "effectiveDateTime": "2016-04-14T01:24:38-04:00",
- "issued": "2016-04-14T01:24:38.752-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 82.22722074638124,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 104.96520788119946,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b10e8169-b19b-4fb0-92e4-cb8f546dcf1f",
- "resource": {
- "resourceType": "Observation",
- "id": "b10e8169-b19b-4fb0-92e4-cb8f546dcf1f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:8e8eed13-baa1-4060-9996-1970a3f26f43"
- },
- "effectiveDateTime": "2016-04-14T01:24:38-04:00",
- "issued": "2016-04-14T01:24:38.752-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:162816af-04f2-488e-b5e4-621e41f527b9",
- "resource": {
- "resourceType": "Claim",
- "id": "162816af-04f2-488e-b5e4-621e41f527b9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2016-04-14T01:24:38-04:00",
- "end": "2016-04-14T01:39:38-04:00"
- },
- "created": "2016-04-14T01:39:38-04:00",
- "provider": {
- "reference": "urn:uuid:f1fbcbfb-fcfa-3bd2-b7f4-df20f1b3c3a4",
- "display": "LAWRENCE GENERAL HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8e8eed13-baa1-4060-9996-1970a3f26f43"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:6feb342c-38e9-4398-b648-f0dc2c3be985",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "6feb342c-38e9-4398-b648-f0dc2c3be985",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "162816af-04f2-488e-b5e4-621e41f527b9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2016-04-14T01:39:38-04:00",
- "end": "2017-04-14T01:39:38-04:00"
- },
- "created": "2016-04-14T01:39:38-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:162816af-04f2-488e-b5e4-621e41f527b9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000001e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-04-14T01:24:38-04:00",
- "end": "2016-04-14T01:39:38-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8e8eed13-baa1-4060-9996-1970a3f26f43"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f",
- "resource": {
- "resourceType": "Encounter",
- "id": "f91eb13c-7f69-4d94-adf3-0b8739ab981f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710",
- "display": "Dr. Shantae970 Cummerata161"
- }
- }
- ],
- "period": {
- "start": "2016-11-10T00:24:38-05:00",
- "end": "2016-11-10T00:39:38-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a0437fb1-36f1-4631-8bc2-1af03c66f7e6",
- "resource": {
- "resourceType": "Observation",
- "id": "a0437fb1-36f1-4631-8bc2-1af03c66f7e6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f"
- },
- "effectiveDateTime": "2016-11-10T00:24:38-05:00",
- "issued": "2016-11-10T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 155.01680645430415,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a5dbb235-0be1-4a89-a7fe-1f47387b35b9",
- "resource": {
- "resourceType": "Observation",
- "id": "a5dbb235-0be1-4a89-a7fe-1f47387b35b9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f"
- },
- "effectiveDateTime": "2016-11-10T00:24:38-05:00",
- "issued": "2016-11-10T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 2.9070699112198977,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6b0457cc-3542-4640-9b47-dee818155d4c",
- "resource": {
- "resourceType": "Observation",
- "id": "6b0457cc-3542-4640-9b47-dee818155d4c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f"
- },
- "effectiveDateTime": "2016-11-10T00:24:38-05:00",
- "issued": "2016-11-10T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 65.79684973105927,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6db34aae-f20a-4321-92a3-98312cfb81f9",
- "resource": {
- "resourceType": "Observation",
- "id": "6db34aae-f20a-4321-92a3-98312cfb81f9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f"
- },
- "effectiveDateTime": "2016-11-10T00:24:38-05:00",
- "issued": "2016-11-10T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 27.38088803859094,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b3fff94c-541b-42a5-8990-44293b5b584a",
- "resource": {
- "resourceType": "Observation",
- "id": "b3fff94c-541b-42a5-8990-44293b5b584a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f"
- },
- "effectiveDateTime": "2016-11-10T00:24:38-05:00",
- "issued": "2016-11-10T00:24:38.752-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 75.42960548136595,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 122.12981598307161,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c06c907b-76ab-4739-bdee-08898e209f1f",
- "resource": {
- "resourceType": "Observation",
- "id": "c06c907b-76ab-4739-bdee-08898e209f1f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f"
- },
- "effectiveDateTime": "2016-11-10T00:24:38-05:00",
- "issued": "2016-11-10T00:24:38.752-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:202468e4-5a03-4a44-ba69-d943886c7b15",
- "resource": {
- "resourceType": "Immunization",
- "id": "202468e4-5a03-4a44-ba69-d943886c7b15",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f"
- },
- "occurrenceDateTime": "2016-11-10T00:24:38-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:23780537-c98c-401a-bfce-78f888e756c3",
- "resource": {
- "resourceType": "Immunization",
- "id": "23780537-c98c-401a-bfce-78f888e756c3",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f"
- },
- "occurrenceDateTime": "2016-11-10T00:24:38-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:a29c0494-706e-4a1e-b607-e190d1229de0",
- "resource": {
- "resourceType": "Immunization",
- "id": "a29c0494-706e-4a1e-b607-e190d1229de0",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f"
- },
- "occurrenceDateTime": "2016-11-10T00:24:38-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:76cdad55-7e37-4f8b-82fd-fabbe1b84d86",
- "resource": {
- "resourceType": "Claim",
- "id": "76cdad55-7e37-4f8b-82fd-fabbe1b84d86",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2016-11-10T00:24:38-05:00",
- "end": "2016-11-10T00:39:38-05:00"
- },
- "created": "2016-11-10T00:39:38-05:00",
- "provider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:202468e4-5a03-4a44-ba69-d943886c7b15"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:23780537-c98c-401a-bfce-78f888e756c3"
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:a29c0494-706e-4a1e-b607-e190d1229de0"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f3ece524-256a-453d-9fef-9d38421bc553",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f3ece524-256a-453d-9fef-9d38421bc553",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "76cdad55-7e37-4f8b-82fd-fabbe1b84d86"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2016-11-10T00:39:38-05:00",
- "end": "2017-11-10T00:39:38-05:00"
- },
- "created": "2016-11-10T00:39:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:76cdad55-7e37-4f8b-82fd-fabbe1b84d86"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-11-10T00:24:38-05:00",
- "end": "2016-11-10T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f91eb13c-7f69-4d94-adf3-0b8739ab981f"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "servicedPeriod": {
- "start": "2016-11-10T00:24:38-05:00",
- "end": "2016-11-10T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2016-11-10T00:24:38-05:00",
- "end": "2016-11-10T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "servicedPeriod": {
- "start": "2016-11-10T00:24:38-05:00",
- "end": "2016-11-10T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 337.24800000000005,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837",
- "resource": {
- "resourceType": "Encounter",
- "id": "e4e9898a-8b74-4140-b477-8833a119f837",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710",
- "display": "Dr. Shantae970 Cummerata161"
- }
- }
- ],
- "period": {
- "start": "2017-11-16T00:24:38-05:00",
- "end": "2017-11-16T00:54:38-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:301a8211-48d6-40b6-b353-dde369bdb61c",
- "resource": {
- "resourceType": "Observation",
- "id": "301a8211-48d6-40b6-b353-dde369bdb61c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 155.01680645430415,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5cbc32a6-2296-4fc9-9cc0-73edd0ab84de",
- "resource": {
- "resourceType": "Observation",
- "id": "5cbc32a6-2296-4fc9-9cc0-73edd0ab84de",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 2.481255645341747,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2dc94d37-acee-4de2-8bed-9cc290183679",
- "resource": {
- "resourceType": "Observation",
- "id": "2dc94d37-acee-4de2-8bed-9cc290183679",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 65.79684973105927,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c3b3d836-7fdf-40f6-a1f2-906485ca0840",
- "resource": {
- "resourceType": "Observation",
- "id": "c3b3d836-7fdf-40f6-a1f2-906485ca0840",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 27.38088803859094,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:42f61715-b8a6-4427-bb33-784d317aebc0",
- "resource": {
- "resourceType": "Observation",
- "id": "42f61715-b8a6-4427-bb33-784d317aebc0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 79.17286180026619,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 115.02102510870571,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:502adfed-d94e-487f-8e53-de1942d02a48",
- "resource": {
- "resourceType": "Observation",
- "id": "502adfed-d94e-487f-8e53-de1942d02a48",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 4.8536148008758175,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:25bae0ad-d855-417d-b139-a17de67820c1",
- "resource": {
- "resourceType": "Observation",
- "id": "25bae0ad-d855-417d-b139-a17de67820c1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 4.352730111870313,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:527a4ebf-88ce-4f9b-9c0d-7040d2e4cf88",
- "resource": {
- "resourceType": "Observation",
- "id": "527a4ebf-88ce-4f9b-9c0d-7040d2e4cf88",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 14.430972827914175,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:29a835b5-89e5-4347-8a1e-d25560644a36",
- "resource": {
- "resourceType": "Observation",
- "id": "29a835b5-89e5-4347-8a1e-d25560644a36",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 48.211447825793854,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:82d6ffac-0cd8-49d1-8ba2-29782f870cb2",
- "resource": {
- "resourceType": "Observation",
- "id": "82d6ffac-0cd8-49d1-8ba2-29782f870cb2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 92.14681288834502,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:978bb3ac-b3a8-45c7-8b36-45ec5b111d6b",
- "resource": {
- "resourceType": "Observation",
- "id": "978bb3ac-b3a8-45c7-8b36-45ec5b111d6b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 32.348447496902125,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:68f19561-ec1f-4f8c-b398-fc9d9bd36e0f",
- "resource": {
- "resourceType": "Observation",
- "id": "68f19561-ec1f-4f8c-b398-fc9d9bd36e0f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 35.287986999768975,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f276bb9b-35c3-470d-8984-c5a4bf5bbea7",
- "resource": {
- "resourceType": "Observation",
- "id": "f276bb9b-35c3-470d-8984-c5a4bf5bbea7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 39.44326306635944,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b5a8cfa8-bed5-46ae-9f9f-7d9c38da21e8",
- "resource": {
- "resourceType": "Observation",
- "id": "b5a8cfa8-bed5-46ae-9f9f-7d9c38da21e8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 418.0016492722819,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:619114d1-e141-4eee-b69a-47f4e54f7408",
- "resource": {
- "resourceType": "Observation",
- "id": "619114d1-e141-4eee-b69a-47f4e54f7408",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 318.2642148107422,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8254a7c0-7d2d-4f9c-9cd3-4a2d3a7aebaf",
- "resource": {
- "resourceType": "Observation",
- "id": "8254a7c0-7d2d-4f9c-9cd3-4a2d3a7aebaf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 10.58609485122474,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:95fb6e40-82bc-4a14-8a5f-b8983d47b828",
- "resource": {
- "resourceType": "Observation",
- "id": "95fb6e40-82bc-4a14-8a5f-b8983d47b828",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:74bbd7ed-5a74-4c5c-80b3-ab0bdf0c52e2",
- "resource": {
- "resourceType": "Procedure",
- "id": "74bbd7ed-5a74-4c5c-80b3-ab0bdf0c52e2",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "performedPeriod": {
- "start": "2017-11-16T00:24:38-05:00",
- "end": "2017-11-16T00:39:38-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:c5e95b03-3c3f-41f8-9b12-996b3c0b4bdf",
- "resource": {
- "resourceType": "Immunization",
- "id": "c5e95b03-3c3f-41f8-9b12-996b3c0b4bdf",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "occurrenceDateTime": "2017-11-16T00:24:38-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:1475ea5d-a585-43ce-a16e-530084063ee6",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "1475ea5d-a585-43ce-a16e-530084063ee6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- },
- "effectiveDateTime": "2017-11-16T00:24:38-05:00",
- "issued": "2017-11-16T00:24:38.752-05:00",
- "result": [
- {
- "reference": "urn:uuid:502adfed-d94e-487f-8e53-de1942d02a48",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:25bae0ad-d855-417d-b139-a17de67820c1",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:527a4ebf-88ce-4f9b-9c0d-7040d2e4cf88",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:29a835b5-89e5-4347-8a1e-d25560644a36",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:82d6ffac-0cd8-49d1-8ba2-29782f870cb2",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:978bb3ac-b3a8-45c7-8b36-45ec5b111d6b",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:68f19561-ec1f-4f8c-b398-fc9d9bd36e0f",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:f276bb9b-35c3-470d-8984-c5a4bf5bbea7",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:b5a8cfa8-bed5-46ae-9f9f-7d9c38da21e8",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:619114d1-e141-4eee-b69a-47f4e54f7408",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:8254a7c0-7d2d-4f9c-9cd3-4a2d3a7aebaf",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:e31bf98d-2e5d-4d5f-8585-c5d809e025e6",
- "resource": {
- "resourceType": "Claim",
- "id": "e31bf98d-2e5d-4d5f-8585-c5d809e025e6",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2017-11-16T00:24:38-05:00",
- "end": "2017-11-16T00:54:38-05:00"
- },
- "created": "2017-11-16T00:54:38-05:00",
- "provider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:c5e95b03-3c3f-41f8-9b12-996b3c0b4bdf"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:74bbd7ed-5a74-4c5c-80b3-ab0bdf0c52e2"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 511.82,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:c189c230-f45e-4855-9488-5ab17801322a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "c189c230-f45e-4855-9488-5ab17801322a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "e31bf98d-2e5d-4d5f-8585-c5d809e025e6"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2017-11-16T00:54:38-05:00",
- "end": "2018-11-16T00:54:38-05:00"
- },
- "created": "2017-11-16T00:54:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:e31bf98d-2e5d-4d5f-8585-c5d809e025e6"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-11-16T00:24:38-05:00",
- "end": "2017-11-16T00:54:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:e4e9898a-8b74-4140-b477-8833a119f837"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2017-11-16T00:24:38-05:00",
- "end": "2017-11-16T00:54:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-11-16T00:24:38-05:00",
- "end": "2017-11-16T00:54:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 511.82,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 102.364,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 409.456,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 511.82,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 511.82,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 521.8720000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2",
- "resource": {
- "resourceType": "Encounter",
- "id": "ddce7eb9-3b5e-484b-961e-f47914854bd2",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Ms. Alesha810 Marks830"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710",
- "display": "Dr. Shantae970 Cummerata161"
- }
- }
- ],
- "period": {
- "start": "2018-11-22T00:24:38-05:00",
- "end": "2018-11-22T00:39:38-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c0c77f66-bc64-460f-8d7e-bf6c7c8d044d",
- "resource": {
- "resourceType": "Observation",
- "id": "c0c77f66-bc64-460f-8d7e-bf6c7c8d044d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "effectiveDateTime": "2018-11-22T00:24:38-05:00",
- "issued": "2018-11-22T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 155.01680645430415,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:66daa3de-187c-4c78-a1d0-262f65afea48",
- "resource": {
- "resourceType": "Observation",
- "id": "66daa3de-187c-4c78-a1d0-262f65afea48",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "effectiveDateTime": "2018-11-22T00:24:38-05:00",
- "issued": "2018-11-22T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 0.43073343370131845,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ded6f5a5-6079-4d7e-9b6d-2098853be4c6",
- "resource": {
- "resourceType": "Observation",
- "id": "ded6f5a5-6079-4d7e-9b6d-2098853be4c6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "effectiveDateTime": "2018-11-22T00:24:38-05:00",
- "issued": "2018-11-22T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 65.79684973105927,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c245c731-c53d-43d3-85a2-7999ab359899",
- "resource": {
- "resourceType": "Observation",
- "id": "c245c731-c53d-43d3-85a2-7999ab359899",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "effectiveDateTime": "2018-11-22T00:24:38-05:00",
- "issued": "2018-11-22T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 27.38088803859094,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:475b8086-234d-4d13-b1cc-b56001514008",
- "resource": {
- "resourceType": "Observation",
- "id": "475b8086-234d-4d13-b1cc-b56001514008",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "effectiveDateTime": "2018-11-22T00:24:38-05:00",
- "issued": "2018-11-22T00:24:38.752-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 76.15928475258472,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 109.29940925015008,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b779ba4a-353b-48ac-934b-70b27835b1ad",
- "resource": {
- "resourceType": "Observation",
- "id": "b779ba4a-353b-48ac-934b-70b27835b1ad",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "effectiveDateTime": "2018-11-22T00:24:38-05:00",
- "issued": "2018-11-22T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 189.5461446255375,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c2955df2-1363-40e2-a6a9-7ed6bb5a07e3",
- "resource": {
- "resourceType": "Observation",
- "id": "c2955df2-1363-40e2-a6a9-7ed6bb5a07e3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "effectiveDateTime": "2018-11-22T00:24:38-05:00",
- "issued": "2018-11-22T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 147.2569551323221,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:419d6cfc-0652-4f5b-ace0-ce7e29245ea1",
- "resource": {
- "resourceType": "Observation",
- "id": "419d6cfc-0652-4f5b-ace0-ce7e29245ea1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "effectiveDateTime": "2018-11-22T00:24:38-05:00",
- "issued": "2018-11-22T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 99.45316057404943,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7fb19f5c-fcc5-452d-9bec-10ea25352db4",
- "resource": {
- "resourceType": "Observation",
- "id": "7fb19f5c-fcc5-452d-9bec-10ea25352db4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "effectiveDateTime": "2018-11-22T00:24:38-05:00",
- "issued": "2018-11-22T00:24:38.752-05:00",
- "valueQuantity": {
- "value": 60.64159302502363,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:952d932f-2cc7-4853-9634-27c01dc2f13f",
- "resource": {
- "resourceType": "Observation",
- "id": "952d932f-2cc7-4853-9634-27c01dc2f13f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "effectiveDateTime": "2018-11-22T00:24:38-05:00",
- "issued": "2018-11-22T00:24:38.752-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4b1647ec-57a3-4a4f-aaf7-7e90d4185ccd",
- "resource": {
- "resourceType": "Immunization",
- "id": "4b1647ec-57a3-4a4f-aaf7-7e90d4185ccd",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "occurrenceDateTime": "2018-11-22T00:24:38-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:b461dc4f-c53b-4c18-b916-575f98cd2ad5",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "b461dc4f-c53b-4c18-b916-575f98cd2ad5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "encounter": {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- },
- "effectiveDateTime": "2018-11-22T00:24:38-05:00",
- "issued": "2018-11-22T00:24:38.752-05:00",
- "result": [
- {
- "reference": "urn:uuid:b779ba4a-353b-48ac-934b-70b27835b1ad",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:c2955df2-1363-40e2-a6a9-7ed6bb5a07e3",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:419d6cfc-0652-4f5b-ace0-ce7e29245ea1",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:7fb19f5c-fcc5-452d-9bec-10ea25352db4",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:110639e9-7b4b-4e05-a7b2-26077c348977",
- "resource": {
- "resourceType": "Claim",
- "id": "110639e9-7b4b-4e05-a7b2-26077c348977",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9",
- "display": "Alesha810 Marks830"
- },
- "billablePeriod": {
- "start": "2018-11-22T00:24:38-05:00",
- "end": "2018-11-22T00:39:38-05:00"
- },
- "created": "2018-11-22T00:39:38-05:00",
- "provider": {
- "reference": "urn:uuid:54f6fc59-7709-310f-9249-1e92d0464b00",
- "display": "PCP145391"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:4b1647ec-57a3-4a4f-aaf7-7e90d4185ccd"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d00feb8d-243d-4636-9e21-fe47c398db8a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d00feb8d-243d-4636-9e21-fe47c398db8a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "110639e9-7b4b-4e05-a7b2-26077c348977"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:c088b7af-fc41-43cc-ab80-4a9ab8d47cd9"
- },
- "billablePeriod": {
- "start": "2018-11-22T00:39:38-05:00",
- "end": "2019-11-22T00:39:38-05:00"
- },
- "created": "2018-11-22T00:39:38-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:110639e9-7b4b-4e05-a7b2-26077c348977"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000c710"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-11-22T00:24:38-05:00",
- "end": "2018-11-22T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ddce7eb9-3b5e-484b-961e-f47914854bd2"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2018-11-22T00:24:38-05:00",
- "end": "2018-11-22T00:39:38-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- }
- ]
-}
diff --git a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Blair400_Grady603_51978986-f824-43da-b69a-d2d17f49df70.json b/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Blair400_Grady603_51978986-f824-43da-b69a-d2d17f49df70.json
deleted file mode 100644
index 3e4c7bdb..00000000
--- a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Blair400_Grady603_51978986-f824-43da-b69a-d2d17f49df70.json
+++ /dev/null
@@ -1,12872 +0,0 @@
-{
- "resourceType": "Bundle",
- "type": "transaction",
- "entry": [
- {
- "fullUrl": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "resource": {
- "resourceType": "Patient",
- "id": "d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "text": {
- "status": "generated",
- "div": "Generated by
Synthea.Version identifier: v2.4.0-404-ge7ce2295\n . Person seed: 6854428927621892691 Population seed: 0
"
- },
- "extension": [
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2106-3",
- "display": "White"
- }
- },
- {
- "url": "text",
- "valueString": "White"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
- }
- },
- {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
- "valueString": "Roxane435 Lesch175"
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
- "valueCode": "M"
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
- "valueAddress": {
- "city": "Rome",
- "state": "Lazio",
- "country": "IT"
- }
- },
- {
- "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
- "valueDecimal": 0.38741462478185473
- },
- {
- "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
- "valueDecimal": 46.612585375218146
- }
- ],
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "51978986-f824-43da-b69a-d2d17f49df70"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "MR",
- "display": "Medical Record Number"
- }
- ],
- "text": "Medical Record Number"
- },
- "system": "http://hospital.smarthealthit.org",
- "value": "51978986-f824-43da-b69a-d2d17f49df70"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "SS",
- "display": "Social Security Number"
- }
- ],
- "text": "Social Security Number"
- },
- "system": "http://hl7.org/fhir/sid/us-ssn",
- "value": "999-53-7253"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "DL",
- "display": "Driver's License"
- }
- ],
- "text": "Driver's License"
- },
- "system": "urn:oid:2.16.840.1.113883.4.3.25",
- "value": "S99971395"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PPN",
- "display": "Passport Number"
- }
- ],
- "text": "Passport Number"
- },
- "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber",
- "value": "X5903319X"
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "Grady603",
- "given": [
- "Blair400"
- ],
- "prefix": [
- "Mr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "phone",
- "value": "555-222-7035",
- "use": "home"
- }
- ],
- "gender": "male",
- "birthDate": "1971-08-04",
- "address": [
- {
- "extension": [
- {
- "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
- "extension": [
- {
- "url": "latitude",
- "valueDecimal": 42.20684095661692
- },
- {
- "url": "longitude",
- "valueDecimal": -72.62738153515339
- }
- ]
- }
- ],
- "line": [
- "349 Murazik Fork"
- ],
- "city": "West Springfield",
- "state": "Massachusetts",
- "postalCode": "01089",
- "country": "US"
- }
- ],
- "maritalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
- "code": "M",
- "display": "M"
- }
- ],
- "text": "M"
- },
- "multipleBirthBoolean": false,
- "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "it",
- "display": "Italian"
- }
- ],
- "text": "Italian"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Patient"
- }
- },
- {
- "fullUrl": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "resource": {
- "resourceType": "Organization",
- "id": "a0123c36-2436-3609-a5eb-3c3857ed711d",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "a0123c36-2436-3609-a5eb-3c3857ed711d"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "PCP8367",
- "telecom": [
- {
- "system": "phone",
- "value": "413-887-7827"
- }
- ],
- "address": [
- {
- "line": [
- "12 CORSER ST"
- ],
- "city": "HOLYOKE",
- "state": "MA",
- "postalCode": "01040-2275",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-0000000016d0",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "5840"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Marrero674",
- "given": [
- "MarÃa Soledad68"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "MarÃa Soledad68.Marrero674@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "12 CORSER ST"
- ],
- "city": "HOLYOKE",
- "state": "MA",
- "postalCode": "01040-2275",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267",
- "resource": {
- "resourceType": "Encounter",
- "id": "3476a881-bb6b-4670-b0d9-aa3eb12be267",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0",
- "display": "Dr. MarÃa Soledad68 Marrero674"
- }
- }
- ],
- "period": {
- "start": "2011-08-10T08:19:16-04:00",
- "end": "2011-08-10T08:34:16-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:835f2dc7-a925-4d8f-a178-33419c68a093",
- "resource": {
- "resourceType": "Observation",
- "id": "835f2dc7-a925-4d8f-a178-33419c68a093",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 184.19824041576453,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ef8327bb-ad17-4a8e-9f25-8ae244fa0f38",
- "resource": {
- "resourceType": "Observation",
- "id": "ef8327bb-ad17-4a8e-9f25-8ae244fa0f38",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 1.5065784709044383,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:dc1a02b2-612a-4ae7-98c3-3c2882ae4d62",
- "resource": {
- "resourceType": "Observation",
- "id": "dc1a02b2-612a-4ae7-98c3-3c2882ae4d62",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 96.68747333013887,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:568e8177-502f-440e-9c7e-e035959aa351",
- "resource": {
- "resourceType": "Observation",
- "id": "568e8177-502f-440e-9c7e-e035959aa351",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 28.497007508834603,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7dad9728-b7d1-430d-826d-5c630101f2d5",
- "resource": {
- "resourceType": "Observation",
- "id": "7dad9728-b7d1-430d-826d-5c630101f2d5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 77.24254012464843,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 129.13590149138756,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:679afb15-0568-49df-822f-f300e5aa91ea",
- "resource": {
- "resourceType": "Observation",
- "id": "679afb15-0568-49df-822f-f300e5aa91ea",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 4.736436517952608,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b824ce17-cf8d-4009-b906-3b6e72ad769b",
- "resource": {
- "resourceType": "Observation",
- "id": "b824ce17-cf8d-4009-b906-3b6e72ad769b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 3.9272361173689454,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4a7722c0-d649-4dc1-984c-3c09b602fce8",
- "resource": {
- "resourceType": "Observation",
- "id": "4a7722c0-d649-4dc1-984c-3c09b602fce8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 13.206135582757698,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8059acea-9693-440c-903c-823fcf4fe909",
- "resource": {
- "resourceType": "Observation",
- "id": "8059acea-9693-440c-903c-823fcf4fe909",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 36.64901180757413,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7c682352-e135-4bd9-bb1e-a2f1073e85bc",
- "resource": {
- "resourceType": "Observation",
- "id": "7c682352-e135-4bd9-bb1e-a2f1073e85bc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 85.08011541030622,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f2da47e4-c10e-4e30-b63c-ea09234ff7dd",
- "resource": {
- "resourceType": "Observation",
- "id": "f2da47e4-c10e-4e30-b63c-ea09234ff7dd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 29.84661473910589,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cb0d55ce-1244-4ac0-86c8-0ad4e7ef5bf5",
- "resource": {
- "resourceType": "Observation",
- "id": "cb0d55ce-1244-4ac0-86c8-0ad4e7ef5bf5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 33.49534711668482,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:87645ff1-ffb4-4339-9780-98b0fbb0c4b9",
- "resource": {
- "resourceType": "Observation",
- "id": "87645ff1-ffb4-4339-9780-98b0fbb0c4b9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 41.471059448694916,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a62f6d53-4b5b-46e4-8d14-805df5801124",
- "resource": {
- "resourceType": "Observation",
- "id": "a62f6d53-4b5b-46e4-8d14-805df5801124",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 429.36574948869963,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a701e1b3-9695-47a3-abe3-211c733a1fe6",
- "resource": {
- "resourceType": "Observation",
- "id": "a701e1b3-9695-47a3-abe3-211c733a1fe6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 354.6031366859678,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f83f7d0f-af1f-4620-8a17-65a11bd96794",
- "resource": {
- "resourceType": "Observation",
- "id": "f83f7d0f-af1f-4620-8a17-65a11bd96794",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 12.200517337506788,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:03d24299-ffed-4d2f-8ead-03b7c5f2a7eb",
- "resource": {
- "resourceType": "Observation",
- "id": "03d24299-ffed-4d2f-8ead-03b7c5f2a7eb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4d73d1c0-58b6-4ccd-9f46-5e04cd8a9deb",
- "resource": {
- "resourceType": "Immunization",
- "id": "4d73d1c0-58b6-4ccd-9f46-5e04cd8a9deb",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "occurrenceDateTime": "2011-08-10T08:19:16-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:6225f033-a3c8-4467-ae29-3fc2efdd7cd9",
- "resource": {
- "resourceType": "Immunization",
- "id": "6225f033-a3c8-4467-ae29-3fc2efdd7cd9",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "52",
- "display": "Hep A, adult"
- }
- ],
- "text": "Hep A, adult"
- },
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "occurrenceDateTime": "2011-08-10T08:19:16-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:429a00c4-5597-476c-9a6b-ec63cb89a492",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "429a00c4-5597-476c-9a6b-ec63cb89a492",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- },
- "effectiveDateTime": "2011-08-10T08:19:16-04:00",
- "issued": "2011-08-10T08:19:16.615-04:00",
- "result": [
- {
- "reference": "urn:uuid:679afb15-0568-49df-822f-f300e5aa91ea",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:b824ce17-cf8d-4009-b906-3b6e72ad769b",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:4a7722c0-d649-4dc1-984c-3c09b602fce8",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:8059acea-9693-440c-903c-823fcf4fe909",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:7c682352-e135-4bd9-bb1e-a2f1073e85bc",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:f2da47e4-c10e-4e30-b63c-ea09234ff7dd",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:cb0d55ce-1244-4ac0-86c8-0ad4e7ef5bf5",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:87645ff1-ffb4-4339-9780-98b0fbb0c4b9",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:a62f6d53-4b5b-46e4-8d14-805df5801124",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:a701e1b3-9695-47a3-abe3-211c733a1fe6",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:f83f7d0f-af1f-4620-8a17-65a11bd96794",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:61865f1c-fa9c-4ae9-946e-3a78cc922c22",
- "resource": {
- "resourceType": "Claim",
- "id": "61865f1c-fa9c-4ae9-946e-3a78cc922c22",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Blair400 Grady603"
- },
- "billablePeriod": {
- "start": "2011-08-10T08:19:16-04:00",
- "end": "2011-08-10T08:34:16-04:00"
- },
- "created": "2011-08-10T08:34:16-04:00",
- "provider": {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:4d73d1c0-58b6-4ccd-9f46-5e04cd8a9deb"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:6225f033-a3c8-4467-ae29-3fc2efdd7cd9"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "52",
- "display": "Hep A, adult"
- }
- ],
- "text": "Hep A, adult"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1eea128c-2637-4843-9374-b316cc1a7c07",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "1eea128c-2637-4843-9374-b316cc1a7c07",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "61865f1c-fa9c-4ae9-946e-3a78cc922c22"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2011-08-10T08:34:16-04:00",
- "end": "2012-08-10T08:34:16-04:00"
- },
- "created": "2011-08-10T08:34:16-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:61865f1c-fa9c-4ae9-946e-3a78cc922c22"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2011-08-10T08:19:16-04:00",
- "end": "2011-08-10T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3476a881-bb6b-4670-b0d9-aa3eb12be267"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2011-08-10T08:19:16-04:00",
- "end": "2011-08-10T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "52",
- "display": "Hep A, adult"
- }
- ],
- "text": "Hep A, adult"
- },
- "servicedPeriod": {
- "start": "2011-08-10T08:19:16-04:00",
- "end": "2011-08-10T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 224.83200000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22",
- "resource": {
- "resourceType": "Encounter",
- "id": "6b4b3327-13f4-4091-9b76-05d84697cf22",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0",
- "display": "Dr. MarÃa Soledad68 Marrero674"
- }
- }
- ],
- "period": {
- "start": "2013-08-14T08:19:16-04:00",
- "end": "2013-08-14T08:34:16-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:04577412-9f0d-4d81-888c-9b609d626431",
- "resource": {
- "resourceType": "Observation",
- "id": "04577412-9f0d-4d81-888c-9b609d626431",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "effectiveDateTime": "2013-08-14T08:19:16-04:00",
- "issued": "2013-08-14T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 184.19824041576453,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b0702a2e-18d4-45d8-8746-700caea56fc9",
- "resource": {
- "resourceType": "Observation",
- "id": "b0702a2e-18d4-45d8-8746-700caea56fc9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "effectiveDateTime": "2013-08-14T08:19:16-04:00",
- "issued": "2013-08-14T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 0.06825445971288646,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:54b36177-748b-4275-991b-54022dca4a6c",
- "resource": {
- "resourceType": "Observation",
- "id": "54b36177-748b-4275-991b-54022dca4a6c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "effectiveDateTime": "2013-08-14T08:19:16-04:00",
- "issued": "2013-08-14T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 99.58575790113498,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7e4b1e38-8cac-4f6b-89c1-fe89c1ad4b11",
- "resource": {
- "resourceType": "Observation",
- "id": "7e4b1e38-8cac-4f6b-89c1-fe89c1ad4b11",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "effectiveDateTime": "2013-08-14T08:19:16-04:00",
- "issued": "2013-08-14T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 29.35122816780667,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:dfcc61bd-a617-48e5-81ff-70e572c3e159",
- "resource": {
- "resourceType": "Observation",
- "id": "dfcc61bd-a617-48e5-81ff-70e572c3e159",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "effectiveDateTime": "2013-08-14T08:19:16-04:00",
- "issued": "2013-08-14T08:19:16.615-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 78.90315262960605,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 134.4188812619417,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f7a70363-2898-4816-909d-df17b704d010",
- "resource": {
- "resourceType": "Observation",
- "id": "f7a70363-2898-4816-909d-df17b704d010",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "effectiveDateTime": "2013-08-14T08:19:16-04:00",
- "issued": "2013-08-14T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 198.70696978388412,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6167f867-b27a-479c-a56d-14d1cee9c993",
- "resource": {
- "resourceType": "Observation",
- "id": "6167f867-b27a-479c-a56d-14d1cee9c993",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "effectiveDateTime": "2013-08-14T08:19:16-04:00",
- "issued": "2013-08-14T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 102.5007216039867,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:017b3cbd-4c92-4848-ab7c-f9489975392f",
- "resource": {
- "resourceType": "Observation",
- "id": "017b3cbd-4c92-4848-ab7c-f9489975392f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "effectiveDateTime": "2013-08-14T08:19:16-04:00",
- "issued": "2013-08-14T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 106.82433230514651,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0dc5d2f6-6880-4d3b-bdcf-8ca50eb9a557",
- "resource": {
- "resourceType": "Observation",
- "id": "0dc5d2f6-6880-4d3b-bdcf-8ca50eb9a557",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "effectiveDateTime": "2013-08-14T08:19:16-04:00",
- "issued": "2013-08-14T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 71.38249315794026,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2a452e01-c41f-4f47-b09a-0f97e0d232f2",
- "resource": {
- "resourceType": "Observation",
- "id": "2a452e01-c41f-4f47-b09a-0f97e0d232f2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "effectiveDateTime": "2013-08-14T08:19:16-04:00",
- "issued": "2013-08-14T08:19:16.615-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:62b92aa4-88ac-4d8f-af8b-c4c039ebb90b",
- "resource": {
- "resourceType": "Immunization",
- "id": "62b92aa4-88ac-4d8f-af8b-c4c039ebb90b",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "occurrenceDateTime": "2013-08-14T08:19:16-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:958e2800-a1ba-4229-8139-971f705d678a",
- "resource": {
- "resourceType": "Immunization",
- "id": "958e2800-a1ba-4229-8139-971f705d678a",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "occurrenceDateTime": "2013-08-14T08:19:16-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:e232c739-af34-4865-821f-27f904b98899",
- "resource": {
- "resourceType": "Immunization",
- "id": "e232c739-af34-4865-821f-27f904b98899",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "52",
- "display": "Hep A, adult"
- }
- ],
- "text": "Hep A, adult"
- },
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "occurrenceDateTime": "2013-08-14T08:19:16-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:dfba8fca-8f8f-494f-bd01-53568604eec3",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "dfba8fca-8f8f-494f-bd01-53568604eec3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- },
- "effectiveDateTime": "2013-08-14T08:19:16-04:00",
- "issued": "2013-08-14T08:19:16.615-04:00",
- "result": [
- {
- "reference": "urn:uuid:f7a70363-2898-4816-909d-df17b704d010",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:6167f867-b27a-479c-a56d-14d1cee9c993",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:017b3cbd-4c92-4848-ab7c-f9489975392f",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:0dc5d2f6-6880-4d3b-bdcf-8ca50eb9a557",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:c4df12fc-1282-4a34-84f0-cebbe2ce77f1",
- "resource": {
- "resourceType": "Claim",
- "id": "c4df12fc-1282-4a34-84f0-cebbe2ce77f1",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Blair400 Grady603"
- },
- "billablePeriod": {
- "start": "2013-08-14T08:19:16-04:00",
- "end": "2013-08-14T08:34:16-04:00"
- },
- "created": "2013-08-14T08:34:16-04:00",
- "provider": {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:62b92aa4-88ac-4d8f-af8b-c4c039ebb90b"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:958e2800-a1ba-4229-8139-971f705d678a"
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:e232c739-af34-4865-821f-27f904b98899"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "52",
- "display": "Hep A, adult"
- }
- ],
- "text": "Hep A, adult"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:2a0baf7e-5df8-4075-9857-642e70e178da",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "2a0baf7e-5df8-4075-9857-642e70e178da",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c4df12fc-1282-4a34-84f0-cebbe2ce77f1"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2013-08-14T08:34:16-04:00",
- "end": "2014-08-14T08:34:16-04:00"
- },
- "created": "2013-08-14T08:34:16-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c4df12fc-1282-4a34-84f0-cebbe2ce77f1"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2013-08-14T08:19:16-04:00",
- "end": "2013-08-14T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:6b4b3327-13f4-4091-9b76-05d84697cf22"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2013-08-14T08:19:16-04:00",
- "end": "2013-08-14T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "servicedPeriod": {
- "start": "2013-08-14T08:19:16-04:00",
- "end": "2013-08-14T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "52",
- "display": "Hep A, adult"
- }
- ],
- "text": "Hep A, adult"
- },
- "servicedPeriod": {
- "start": "2013-08-14T08:19:16-04:00",
- "end": "2013-08-14T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 337.24800000000005,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245",
- "resource": {
- "resourceType": "Encounter",
- "id": "27f17631-4c6c-4707-beba-1192bb5c4245",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0",
- "display": "Dr. MarÃa Soledad68 Marrero674"
- }
- }
- ],
- "period": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:49:16-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:95494878-d430-459c-a0f8-0aa89518b45a",
- "resource": {
- "resourceType": "Condition",
- "id": "95494878-d430-459c-a0f8-0aa89518b45a",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "onsetDateTime": "2015-08-19T08:19:16-04:00",
- "recordedDate": "2015-08-19T08:19:16-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:53bab6ff-f844-4076-9957-8f5700358f4f",
- "resource": {
- "resourceType": "Condition",
- "id": "53bab6ff-f844-4076-9957-8f5700358f4f",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271737000",
- "display": "Anemia (disorder)"
- }
- ],
- "text": "Anemia (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "onsetDateTime": "2015-08-19T08:19:16-04:00",
- "recordedDate": "2015-08-19T08:19:16-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:449ded6e-f7e2-4784-8eda-a586ed6ced66",
- "resource": {
- "resourceType": "Observation",
- "id": "449ded6e-f7e2-4784-8eda-a586ed6ced66",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 184.19824041576453,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1c070576-e231-4cd0-a38e-b0eac621c5e2",
- "resource": {
- "resourceType": "Observation",
- "id": "1c070576-e231-4cd0-a38e-b0eac621c5e2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 2.988445596810991,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a4c4838c-b2e4-4a59-b424-46c623db48fa",
- "resource": {
- "resourceType": "Observation",
- "id": "a4c4838c-b2e4-4a59-b424-46c623db48fa",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 102.94148677380862,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b42dcf33-d00d-4bc6-baf1-4f1d5d514933",
- "resource": {
- "resourceType": "Observation",
- "id": "b42dcf33-d00d-4bc6-baf1-4f1d5d514933",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 30.34027284534904,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:00d2804f-bb37-4638-a298-9ddffdf8275b",
- "resource": {
- "resourceType": "Observation",
- "id": "00d2804f-bb37-4638-a298-9ddffdf8275b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 77.94848364820051,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 121.34933981160937,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:746cf080-c17d-4d96-bb3b-131a8996326f",
- "resource": {
- "resourceType": "Observation",
- "id": "746cf080-c17d-4d96-bb3b-131a8996326f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8a342ad7-932e-49c1-a006-9768397f1cd7",
- "resource": {
- "resourceType": "Observation",
- "id": "8a342ad7-932e-49c1-a006-9768397f1cd7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 6.0096467218205785,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:36bd7195-fefd-4a93-9add-ed45931db28e",
- "resource": {
- "resourceType": "Procedure",
- "id": "36bd7195-fefd-4a93-9add-ed45931db28e",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "performedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:34:16-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:91755e1c-3e70-468f-bfca-3a4c2e7712c1",
- "resource": {
- "resourceType": "Immunization",
- "id": "91755e1c-3e70-468f-bfca-3a4c2e7712c1",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "occurrenceDateTime": "2015-08-19T08:19:16-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:61a793ae-7b80-452f-aca4-4fafdd14b603",
- "resource": {
- "resourceType": "CareTeam",
- "id": "61a793ae-7b80-452f-aca4-4fafdd14b603",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "period": {
- "start": "2015-08-19T08:19:16-04:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0",
- "display": "Dr. MarÃa Soledad68 Marrero674"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:a9d985dd-a132-4408-801f-33f24e28ee0a",
- "resource": {
- "resourceType": "Goal",
- "id": "a9d985dd-a132-4408-801f-33f24e28ee0a",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Hemoglobin A1c total in Blood < 7.0"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:6aacb1d7-e2be-473b-b3da-3e2ef1193620",
- "resource": {
- "resourceType": "Goal",
- "id": "6aacb1d7-e2be-473b-b3da-3e2ef1193620",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Glucose [Mass/volume] in Blood < 108"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:3a850027-87ac-4f93-af66-ff04f1f336cf",
- "resource": {
- "resourceType": "Goal",
- "id": "3a850027-87ac-4f93-af66-ff04f1f336cf",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Maintain blood pressure below 140/90 mmHg"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:208cbcb6-d430-40d3-a86f-94deb7fa1f22",
- "resource": {
- "resourceType": "Goal",
- "id": "208cbcb6-d430-40d3-a86f-94deb7fa1f22",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Improve and maintenance of optimal foot health: aim at early detection of peripheral vascular problems and neuropathy presumed due to diabetes; and prevention of diabetic foot ulcer, gangrene"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:0e6d8587-3f2e-4056-9713-67b828726396",
- "resource": {
- "resourceType": "Goal",
- "id": "0e6d8587-3f2e-4056-9713-67b828726396",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Address patient knowledge deficit on diabetic self-care"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:67506d87-684d-4dfe-8aaa-764f0db51b1d",
- "resource": {
- "resourceType": "CarePlan",
- "id": "67506d87-684d-4dfe-8aaa-764f0db51b1d",
- "text": {
- "status": "generated",
- "div": "Care Plan for Diabetes self management plan.
Activities:
- Diabetes self management plan
- Diabetes self management plan
Care plan is meant to treat Prediabetes.
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698360004",
- "display": "Diabetes self management plan"
- }
- ],
- "text": "Diabetes self management plan"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- },
- "period": {
- "start": "2015-08-19T08:19:16-04:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:61a793ae-7b80-452f-aca4-4fafdd14b603"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:95494878-d430-459c-a0f8-0aa89518b45a"
- }
- ],
- "goal": [
- {
- "reference": "urn:uuid:a9d985dd-a132-4408-801f-33f24e28ee0a"
- },
- {
- "reference": "urn:uuid:6aacb1d7-e2be-473b-b3da-3e2ef1193620"
- },
- {
- "reference": "urn:uuid:3a850027-87ac-4f93-af66-ff04f1f336cf"
- },
- {
- "reference": "urn:uuid:208cbcb6-d430-40d3-a86f-94deb7fa1f22"
- },
- {
- "reference": "urn:uuid:0e6d8587-3f2e-4056-9713-67b828726396"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "160670007",
- "display": "Diabetic diet"
- }
- ],
- "text": "Diabetic diet"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP8367"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "229065009",
- "display": "Exercise therapy"
- }
- ],
- "text": "Exercise therapy"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP8367"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:721ecc56-bba4-4311-a381-eb4939215f9b",
- "resource": {
- "resourceType": "Claim",
- "id": "721ecc56-bba4-4311-a381-eb4939215f9b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Blair400 Grady603"
- },
- "billablePeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:49:16-04:00"
- },
- "created": "2015-08-19T08:49:16-04:00",
- "provider": {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:91755e1c-3e70-468f-bfca-3a4c2e7712c1"
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:95494878-d430-459c-a0f8-0aa89518b45a"
- }
- },
- {
- "sequence": 2,
- "diagnosisReference": {
- "reference": "urn:uuid:53bab6ff-f844-4076-9957-8f5700358f4f"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:36bd7195-fefd-4a93-9add-ed45931db28e"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 432.56,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- }
- },
- {
- "sequence": 5,
- "diagnosisSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271737000",
- "display": "Anemia (disorder)"
- }
- ],
- "text": "Anemia (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:ddc34693-8578-4ddf-960d-33982fb1ab2f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "ddc34693-8578-4ddf-960d-33982fb1ab2f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "721ecc56-bba4-4311-a381-eb4939215f9b"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2015-08-19T08:49:16-04:00",
- "end": "2016-08-19T08:49:16-04:00"
- },
- "created": "2015-08-19T08:49:16-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:721ecc56-bba4-4311-a381-eb4939215f9b"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:95494878-d430-459c-a0f8-0aa89518b45a"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisReference": {
- "reference": "urn:uuid:53bab6ff-f844-4076-9957-8f5700358f4f"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:49:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:27f17631-4c6c-4707-beba-1192bb5c4245"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:49:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:49:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 432.56,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 86.512,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 346.048,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 432.56,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 432.56,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- },
- "servicedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:49:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 5,
- "diagnosisSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271737000",
- "display": "Anemia (disorder)"
- }
- ],
- "text": "Anemia (disorder)"
- },
- "servicedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:49:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 458.464,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "resource": {
- "resourceType": "Organization",
- "id": "5d4b9df1-93ae-3bc9-b680-03249990e558",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "5d4b9df1-93ae-3bc9-b680-03249990e558"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "HOLYOKE MEDICAL CENTER",
- "telecom": [
- {
- "system": "phone",
- "value": "4135342500"
- }
- ],
- "address": [
- {
- "line": [
- "575 BEECH STREET"
- ],
- "city": "HOLYOKE",
- "state": "MA",
- "postalCode": "01040",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-00000000006e",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "110"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Jakubowski832",
- "given": [
- "Isiah14"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Isiah14.Jakubowski832@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "575 BEECH STREET"
- ],
- "city": "HOLYOKE",
- "state": "MA",
- "postalCode": "01040",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f",
- "resource": {
- "resourceType": "Encounter",
- "id": "ebe289be-d299-4508-bb7d-9dfc1a0c6c9f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e",
- "display": "Dr. Isiah14 Jakubowski832"
- }
- }
- ],
- "period": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T09:43:16-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271737000",
- "display": "Anemia (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b8a4b99b-70e4-44d6-80d3-1324d820b112",
- "resource": {
- "resourceType": "Observation",
- "id": "b8a4b99b-70e4-44d6-80d3-1324d820b112",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 10.504096909208222,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b1e73f48-6cf4-4cf2-8e9b-7cb03f65f603",
- "resource": {
- "resourceType": "Observation",
- "id": "b1e73f48-6cf4-4cf2-8e9b-7cb03f65f603",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20570-8",
- "display": "Hematocrit [Volume Fraction] of Blood"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 30.227830273663262,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ffa6a633-c9c0-4dc1-a57f-a424dee09707",
- "resource": {
- "resourceType": "Observation",
- "id": "ffa6a633-c9c0-4dc1-a57f-a424dee09707",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "WBC Auto (Bld) [#/Vol]"
- }
- ],
- "text": "WBC Auto (Bld) [#/Vol]"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 8.137274149677289,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:915a309e-69bb-4206-963d-5ff574162672",
- "resource": {
- "resourceType": "Observation",
- "id": "915a309e-69bb-4206-963d-5ff574162672",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "RBC Auto (Bld) [#/Vol]"
- }
- ],
- "text": "RBC Auto (Bld) [#/Vol]"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 5.215136591706999,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:230f81bc-daf9-4391-a4e0-6846ccc66a6d",
- "resource": {
- "resourceType": "Observation",
- "id": "230f81bc-daf9-4391-a4e0-6846ccc66a6d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 87.38579237032674,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:056ea839-bec5-4d0a-be23-daa7d3829919",
- "resource": {
- "resourceType": "Observation",
- "id": "056ea839-bec5-4d0a-be23-daa7d3829919",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 30.46278651685548,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:07537f98-6583-474b-894d-ff4a06a7b97d",
- "resource": {
- "resourceType": "Observation",
- "id": "07537f98-6583-474b-894d-ff4a06a7b97d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 33.03256632597813,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:986455e7-8145-4575-ad78-da05177fbed8",
- "resource": {
- "resourceType": "Observation",
- "id": "986455e7-8145-4575-ad78-da05177fbed8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "RDW - Erythrocyte distribution width Auto (RBC) [Entitic vol]"
- }
- ],
- "text": "RDW - Erythrocyte distribution width Auto (RBC) [Entitic vol]"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 45.95891626260909,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:06ff3f2e-02e9-4cc3-a5f2-ccd4bdda8e65",
- "resource": {
- "resourceType": "Observation",
- "id": "06ff3f2e-02e9-4cc3-a5f2-ccd4bdda8e65",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 435.8719703877942,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c73b2902-7dd1-472c-b756-5b2ecdd814c3",
- "resource": {
- "resourceType": "Observation",
- "id": "c73b2902-7dd1-472c-b756-5b2ecdd814c3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 481.8344646889234,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:57adfb4b-60a7-4b93-a697-8e3b7e3f1d37",
- "resource": {
- "resourceType": "Observation",
- "id": "57adfb4b-60a7-4b93-a697-8e3b7e3f1d37",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 9.915239907093735,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:aa809149-0cbe-477a-af6d-bb271de6a97a",
- "resource": {
- "resourceType": "Procedure",
- "id": "aa809149-0cbe-477a-af6d-bb271de6a97a",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "14768001",
- "display": "Peripheral blood smear interpretation"
- }
- ],
- "text": "Peripheral blood smear interpretation"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "performedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:49:16-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:1c12ce45-b076-463b-b06e-230b163e28bb",
- "resource": {
- "resourceType": "Procedure",
- "id": "1c12ce45-b076-463b-b06e-230b163e28bb",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "415300000",
- "display": "Review of systems (procedure)"
- }
- ],
- "text": "Review of systems (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "performedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:36:16-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d622f420-9179-4f0c-b872-6c99e38ca76d",
- "resource": {
- "resourceType": "Procedure",
- "id": "d622f420-9179-4f0c-b872-6c99e38ca76d",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "performedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:31:16-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:ad0b60ff-4094-4bc5-8609-45db600c1820",
- "resource": {
- "resourceType": "Procedure",
- "id": "ad0b60ff-4094-4bc5-8609-45db600c1820",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162676008",
- "display": "Brief general examination (procedure)"
- }
- ],
- "text": "Brief general examination (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "performedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T08:29:16-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:fa76b78d-e3a2-403c-8c27-7c27ac384433",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "fa76b78d-e3a2-403c-8c27-7c27ac384433",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- },
- "effectiveDateTime": "2015-08-19T08:19:16-04:00",
- "issued": "2015-08-19T08:19:16.615-04:00",
- "result": [
- {
- "reference": "urn:uuid:b8a4b99b-70e4-44d6-80d3-1324d820b112",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:b1e73f48-6cf4-4cf2-8e9b-7cb03f65f603",
- "display": "Hematocrit [Volume Fraction] of Blood"
- },
- {
- "reference": "urn:uuid:ffa6a633-c9c0-4dc1-a57f-a424dee09707",
- "display": "WBC Auto (Bld) [#/Vol]"
- },
- {
- "reference": "urn:uuid:915a309e-69bb-4206-963d-5ff574162672",
- "display": "RBC Auto (Bld) [#/Vol]"
- },
- {
- "reference": "urn:uuid:230f81bc-daf9-4391-a4e0-6846ccc66a6d",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:056ea839-bec5-4d0a-be23-daa7d3829919",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:07537f98-6583-474b-894d-ff4a06a7b97d",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:986455e7-8145-4575-ad78-da05177fbed8",
- "display": "RDW - Erythrocyte distribution width Auto (RBC) [Entitic vol]"
- },
- {
- "reference": "urn:uuid:06ff3f2e-02e9-4cc3-a5f2-ccd4bdda8e65",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:c73b2902-7dd1-472c-b756-5b2ecdd814c3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:57adfb4b-60a7-4b93-a697-8e3b7e3f1d37",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:64035345-07a2-4d36-9f63-a6dfd41c4771",
- "resource": {
- "resourceType": "Claim",
- "id": "64035345-07a2-4d36-9f63-a6dfd41c4771",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Blair400 Grady603"
- },
- "billablePeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T09:43:16-04:00"
- },
- "created": "2015-08-19T09:43:16-04:00",
- "provider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:aa809149-0cbe-477a-af6d-bb271de6a97a"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:1c12ce45-b076-463b-b06e-230b163e28bb"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:d622f420-9179-4f0c-b872-6c99e38ca76d"
- }
- },
- {
- "sequence": 4,
- "procedureReference": {
- "reference": "urn:uuid:ad0b60ff-4094-4bc5-8609-45db600c1820"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "14768001",
- "display": "Peripheral blood smear interpretation"
- }
- ],
- "text": "Peripheral blood smear interpretation"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "415300000",
- "display": "Review of systems (procedure)"
- }
- ],
- "text": "Review of systems (procedure)"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 915.40,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "procedureSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162676008",
- "display": "Brief general examination (procedure)"
- }
- ],
- "text": "Brief general examination (procedure)"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:2e7e2b65-2794-4074-8c9b-6b91dc9431c6",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "2e7e2b65-2794-4074-8c9b-6b91dc9431c6",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "64035345-07a2-4d36-9f63-a6dfd41c4771"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2015-08-19T09:43:16-04:00",
- "end": "2016-08-19T09:43:16-04:00"
- },
- "created": "2015-08-19T09:43:16-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:64035345-07a2-4d36-9f63-a6dfd41c4771"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "servicedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T09:43:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ebe289be-d299-4508-bb7d-9dfc1a0c6c9f"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "14768001",
- "display": "Peripheral blood smear interpretation"
- }
- ],
- "text": "Peripheral blood smear interpretation"
- },
- "servicedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T09:43:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "415300000",
- "display": "Review of systems (procedure)"
- }
- ],
- "text": "Review of systems (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T09:43:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T09:43:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 915.40,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 183.08,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 732.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 915.40,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 915.40,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162676008",
- "display": "Brief general examination (procedure)"
- }
- ],
- "text": "Brief general examination (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-08-19T08:19:16-04:00",
- "end": "2015-08-19T09:43:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1972.28,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c558740f-d2f7-4740-a308-852ee62c9c4a",
- "resource": {
- "resourceType": "Encounter",
- "id": "c558740f-d2f7-4740-a308-852ee62c9c4a",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e",
- "display": "Dr. Isiah14 Jakubowski832"
- }
- }
- ],
- "period": {
- "start": "2016-04-06T08:19:16-04:00",
- "end": "2016-04-06T08:34:16-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:0931116f-8db7-4802-8d64-97a3e2eef197",
- "resource": {
- "resourceType": "Condition",
- "id": "0931116f-8db7-4802-8d64-97a3e2eef197",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ],
- "text": "Sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:c558740f-d2f7-4740-a308-852ee62c9c4a"
- },
- "onsetDateTime": "2016-04-06T08:19:16-04:00",
- "abatementDateTime": "2016-07-20T08:19:16-04:00",
- "recordedDate": "2016-04-06T08:19:16-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:5e210694-dd09-4344-a86a-9f5eed839729",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "5e210694-dd09-4344-a86a-9f5eed839729",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "562251",
- "display": "Amoxicillin 250 MG / Clavulanate 125 MG Oral Tablet"
- }
- ],
- "text": "Amoxicillin 250 MG / Clavulanate 125 MG Oral Tablet"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:c558740f-d2f7-4740-a308-852ee62c9c4a"
- },
- "authoredOn": "2016-04-06T08:19:16-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e",
- "display": "Dr. Isiah14 Jakubowski832"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:0931116f-8db7-4802-8d64-97a3e2eef197"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:efc5aaa4-83c0-434e-b58f-5344cd2e5afb",
- "resource": {
- "resourceType": "Claim",
- "id": "efc5aaa4-83c0-434e-b58f-5344cd2e5afb",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2016-04-06T08:19:16-04:00",
- "end": "2016-04-06T08:34:16-04:00"
- },
- "created": "2016-04-06T08:34:16-04:00",
- "provider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:5e210694-dd09-4344-a86a-9f5eed839729"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c558740f-d2f7-4740-a308-852ee62c9c4a"
- }
- ]
- }
- ],
- "total": {
- "value": 17.71,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:cab230f4-3eb3-4b53-909d-f420639fdaa9",
- "resource": {
- "resourceType": "Claim",
- "id": "cab230f4-3eb3-4b53-909d-f420639fdaa9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Blair400 Grady603"
- },
- "billablePeriod": {
- "start": "2016-04-06T08:19:16-04:00",
- "end": "2016-04-06T08:34:16-04:00"
- },
- "created": "2016-04-06T08:34:16-04:00",
- "provider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:0931116f-8db7-4802-8d64-97a3e2eef197"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c558740f-d2f7-4740-a308-852ee62c9c4a"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ],
- "text": "Sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:2aa81c02-79ca-45d7-893a-96022a66b16f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "2aa81c02-79ca-45d7-893a-96022a66b16f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "cab230f4-3eb3-4b53-909d-f420639fdaa9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2016-04-06T08:34:16-04:00",
- "end": "2017-04-06T08:34:16-04:00"
- },
- "created": "2016-04-06T08:34:16-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:cab230f4-3eb3-4b53-909d-f420639fdaa9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:0931116f-8db7-4802-8d64-97a3e2eef197"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2016-04-06T08:19:16-04:00",
- "end": "2016-04-06T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c558740f-d2f7-4740-a308-852ee62c9c4a"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ],
- "text": "Sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2016-04-06T08:19:16-04:00",
- "end": "2016-04-06T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:b1aef9a9-b10c-4135-94a1-48957e9f1448",
- "resource": {
- "resourceType": "Encounter",
- "id": "b1aef9a9-b10c-4135-94a1-48957e9f1448",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e",
- "display": "Dr. Isiah14 Jakubowski832"
- }
- }
- ],
- "period": {
- "start": "2016-05-18T08:19:16-04:00",
- "end": "2016-05-18T08:34:16-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:207a24c9-68ac-4a3d-b881-01225d7b587e",
- "resource": {
- "resourceType": "Condition",
- "id": "207a24c9-68ac-4a3d-b881-01225d7b587e",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:b1aef9a9-b10c-4135-94a1-48957e9f1448"
- },
- "onsetDateTime": "2016-05-18T08:19:16-04:00",
- "recordedDate": "2016-05-18T08:19:16-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:f02569a3-d38e-44ef-b026-999c605a155f",
- "resource": {
- "resourceType": "Claim",
- "id": "f02569a3-d38e-44ef-b026-999c605a155f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Blair400 Grady603"
- },
- "billablePeriod": {
- "start": "2016-05-18T08:19:16-04:00",
- "end": "2016-05-18T08:34:16-04:00"
- },
- "created": "2016-05-18T08:34:16-04:00",
- "provider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:207a24c9-68ac-4a3d-b881-01225d7b587e"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:b1aef9a9-b10c-4135-94a1-48957e9f1448"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:30d672ac-4c08-4c95-8e7d-ab8437de78c1",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "30d672ac-4c08-4c95-8e7d-ab8437de78c1",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f02569a3-d38e-44ef-b026-999c605a155f"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2016-05-18T08:34:16-04:00",
- "end": "2017-05-18T08:34:16-04:00"
- },
- "created": "2016-05-18T08:34:16-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f02569a3-d38e-44ef-b026-999c605a155f"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:207a24c9-68ac-4a3d-b881-01225d7b587e"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2016-05-18T08:19:16-04:00",
- "end": "2016-05-18T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:b1aef9a9-b10c-4135-94a1-48957e9f1448"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2016-05-18T08:19:16-04:00",
- "end": "2016-05-18T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:e338af4a-11f9-4efb-b626-c5d7e0c97889",
- "resource": {
- "resourceType": "Encounter",
- "id": "e338af4a-11f9-4efb-b626-c5d7e0c97889",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e",
- "display": "Dr. Isiah14 Jakubowski832"
- }
- }
- ],
- "period": {
- "start": "2016-06-01T08:19:16-04:00",
- "end": "2016-06-01T08:34:16-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b884036e-07f9-43a9-b7c3-fa1eba8302e5",
- "resource": {
- "resourceType": "Claim",
- "id": "b884036e-07f9-43a9-b7c3-fa1eba8302e5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Blair400 Grady603"
- },
- "billablePeriod": {
- "start": "2016-06-01T08:19:16-04:00",
- "end": "2016-06-01T08:34:16-04:00"
- },
- "created": "2016-06-01T08:34:16-04:00",
- "provider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e338af4a-11f9-4efb-b626-c5d7e0c97889"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b4eb1524-447c-4a5d-a4d0-a5a2ea80e109",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "b4eb1524-447c-4a5d-a4d0-a5a2ea80e109",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b884036e-07f9-43a9-b7c3-fa1eba8302e5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2016-06-01T08:34:16-04:00",
- "end": "2017-06-01T08:34:16-04:00"
- },
- "created": "2016-06-01T08:34:16-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b884036e-07f9-43a9-b7c3-fa1eba8302e5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2016-06-01T08:19:16-04:00",
- "end": "2016-06-01T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:e338af4a-11f9-4efb-b626-c5d7e0c97889"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130",
- "resource": {
- "resourceType": "Encounter",
- "id": "9d0fd54c-7cc0-4d1d-a9cf-724382c2d130",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0",
- "display": "Dr. MarÃa Soledad68 Marrero674"
- }
- }
- ],
- "period": {
- "start": "2017-08-23T08:19:16-04:00",
- "end": "2017-08-23T08:34:16-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f2d5dccf-f01f-4e1b-93f1-82555b62eaa3",
- "resource": {
- "resourceType": "Observation",
- "id": "f2d5dccf-f01f-4e1b-93f1-82555b62eaa3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 184.19824041576453,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:971fb545-2d4f-435d-867c-307983279874",
- "resource": {
- "resourceType": "Observation",
- "id": "971fb545-2d4f-435d-867c-307983279874",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 2.5559368104693707,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7e12f44c-5061-49fc-884c-ec4456a4d7b6",
- "resource": {
- "resourceType": "Observation",
- "id": "7e12f44c-5061-49fc-884c-ec4456a4d7b6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 102.94148677380862,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e3f727ae-dbb8-4994-ab53-9b02f074ebd1",
- "resource": {
- "resourceType": "Observation",
- "id": "e3f727ae-dbb8-4994-ab53-9b02f074ebd1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 30.34027284534904,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:260ed6a1-8577-468d-81d7-963d626d28d4",
- "resource": {
- "resourceType": "Observation",
- "id": "260ed6a1-8577-468d-81d7-963d626d28d4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 81.86694714119541,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 117.59106616693077,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c825f4e5-e6a7-4db0-b7c8-ebf663be2b50",
- "resource": {
- "resourceType": "Observation",
- "id": "c825f4e5-e6a7-4db0-b7c8-ebf663be2b50",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 71.55592804666117,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3d329dc2-0dbb-4119-8646-193c99528f73",
- "resource": {
- "resourceType": "Observation",
- "id": "3d329dc2-0dbb-4119-8646-193c99528f73",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 10.457971184703093,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5fea7e79-a2b2-46d8-9ca1-9a4e3cadb3a6",
- "resource": {
- "resourceType": "Observation",
- "id": "5fea7e79-a2b2-46d8-9ca1-9a4e3cadb3a6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 1.3717082648972216,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1942dfa1-b6f6-4149-aeaa-3e8901ac9b0b",
- "resource": {
- "resourceType": "Observation",
- "id": "1942dfa1-b6f6-4149-aeaa-3e8901ac9b0b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 8.867139812704826,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1c66d5ba-5a5a-4f43-890e-a4daacdd81bd",
- "resource": {
- "resourceType": "Observation",
- "id": "1c66d5ba-5a5a-4f43-890e-a4daacdd81bd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 136.06881862547888,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6a92b713-56f6-4498-8969-e32d40c9d3f9",
- "resource": {
- "resourceType": "Observation",
- "id": "6a92b713-56f6-4498-8969-e32d40c9d3f9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 4.662454962379492,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6ae5b9ed-2190-48ce-9583-4baf8f97f2ea",
- "resource": {
- "resourceType": "Observation",
- "id": "6ae5b9ed-2190-48ce-9583-4baf8f97f2ea",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 108.8240098317223,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6a3efcc6-fe72-4000-b126-93ec1f48ecfd",
- "resource": {
- "resourceType": "Observation",
- "id": "6a3efcc6-fe72-4000-b126-93ec1f48ecfd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 27.553598728698354,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ccf498ae-a926-4f28-8880-57b62ae6c680",
- "resource": {
- "resourceType": "Observation",
- "id": "ccf498ae-a926-4f28-8880-57b62ae6c680",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 166.32124246624306,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c51d4dc4-11c8-451e-8ac4-61a286400d86",
- "resource": {
- "resourceType": "Observation",
- "id": "c51d4dc4-11c8-451e-8ac4-61a286400d86",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 133.6769035145033,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3af3ce8b-6179-4539-89f8-03b2d552dea1",
- "resource": {
- "resourceType": "Observation",
- "id": "3af3ce8b-6179-4539-89f8-03b2d552dea1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 77.35547276775215,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7a6cf7e1-59ed-4be0-98ca-38aa1b7363d2",
- "resource": {
- "resourceType": "Observation",
- "id": "7a6cf7e1-59ed-4be0-98ca-38aa1b7363d2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 62.23038899559027,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:39ffda6e-8b97-4d5e-a3c4-48321020f830",
- "resource": {
- "resourceType": "Observation",
- "id": "39ffda6e-8b97-4d5e-a3c4-48321020f830",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 9.696658552459928,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:83f39b44-1996-46d7-aac8-0fb42176af0d",
- "resource": {
- "resourceType": "Observation",
- "id": "83f39b44-1996-46d7-aac8-0fb42176af0d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 5.2272440819358845,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b771c4c1-2322-4c7d-aa96-41ffea6c9b3e",
- "resource": {
- "resourceType": "Observation",
- "id": "b771c4c1-2322-4c7d-aa96-41ffea6c9b3e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 16.8981033432917,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:407d7435-bdaf-4ba5-bdd2-b6a34bce790b",
- "resource": {
- "resourceType": "Observation",
- "id": "407d7435-bdaf-4ba5-bdd2-b6a34bce790b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 49.35807975332694,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0d361de3-f11d-4128-b3af-22dfc0468ef2",
- "resource": {
- "resourceType": "Observation",
- "id": "0d361de3-f11d-4128-b3af-22dfc0468ef2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 81.76769727331039,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:96f72c62-c120-4a6f-9d2b-670d5b90ea99",
- "resource": {
- "resourceType": "Observation",
- "id": "96f72c62-c120-4a6f-9d2b-670d5b90ea99",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 32.49944623601083,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:689bdb54-b10d-432f-95e0-1d74a225e9a7",
- "resource": {
- "resourceType": "Observation",
- "id": "689bdb54-b10d-432f-95e0-1d74a225e9a7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 33.73876709478082,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:767c23e3-7150-4f07-8033-8949648c9324",
- "resource": {
- "resourceType": "Observation",
- "id": "767c23e3-7150-4f07-8033-8949648c9324",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 40.76700572955036,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:89982d56-e285-4536-a45b-3f9b4d1e57cb",
- "resource": {
- "resourceType": "Observation",
- "id": "89982d56-e285-4536-a45b-3f9b4d1e57cb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 278.76710619942867,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1d07c869-d36f-4db1-b4de-1825058ca984",
- "resource": {
- "resourceType": "Observation",
- "id": "1d07c869-d36f-4db1-b4de-1825058ca984",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 300.50161830990476,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9a53e86c-ed6b-4698-86b7-88c37a42ff5c",
- "resource": {
- "resourceType": "Observation",
- "id": "9a53e86c-ed6b-4698-86b7-88c37a42ff5c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 10.878346224266046,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:27ab760b-474e-407d-a191-9c3f8e8335bd",
- "resource": {
- "resourceType": "Observation",
- "id": "27ab760b-474e-407d-a191-9c3f8e8335bd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:03a04e23-a927-4867-8e4d-0a4225ecd10a",
- "resource": {
- "resourceType": "Observation",
- "id": "03a04e23-a927-4867-8e4d-0a4225ecd10a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 6.189573024052843,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:809bbd41-9462-4388-89a1-a5d087a1e48b",
- "resource": {
- "resourceType": "Immunization",
- "id": "809bbd41-9462-4388-89a1-a5d087a1e48b",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "occurrenceDateTime": "2017-08-23T08:19:16-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:60f6aa8c-949f-40b0-960d-b9547925da7f",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "60f6aa8c-949f-40b0-960d-b9547925da7f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "result": [
- {
- "reference": "urn:uuid:c825f4e5-e6a7-4db0-b7c8-ebf663be2b50",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:3d329dc2-0dbb-4119-8646-193c99528f73",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:5fea7e79-a2b2-46d8-9ca1-9a4e3cadb3a6",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:1942dfa1-b6f6-4149-aeaa-3e8901ac9b0b",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:1c66d5ba-5a5a-4f43-890e-a4daacdd81bd",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:6a92b713-56f6-4498-8969-e32d40c9d3f9",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:6ae5b9ed-2190-48ce-9583-4baf8f97f2ea",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:6a3efcc6-fe72-4000-b126-93ec1f48ecfd",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:d9411dec-44c1-4954-9581-fe55b4a2a112",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "d9411dec-44c1-4954-9581-fe55b4a2a112",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "result": [
- {
- "reference": "urn:uuid:ccf498ae-a926-4f28-8880-57b62ae6c680",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:c51d4dc4-11c8-451e-8ac4-61a286400d86",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:3af3ce8b-6179-4539-89f8-03b2d552dea1",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:7a6cf7e1-59ed-4be0-98ca-38aa1b7363d2",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:90b5a863-5eb8-42e4-aca0-d113176f13d0",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "90b5a863-5eb8-42e4-aca0-d113176f13d0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- },
- "effectiveDateTime": "2017-08-23T08:19:16-04:00",
- "issued": "2017-08-23T08:19:16.615-04:00",
- "result": [
- {
- "reference": "urn:uuid:39ffda6e-8b97-4d5e-a3c4-48321020f830",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:83f39b44-1996-46d7-aac8-0fb42176af0d",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:b771c4c1-2322-4c7d-aa96-41ffea6c9b3e",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:407d7435-bdaf-4ba5-bdd2-b6a34bce790b",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:0d361de3-f11d-4128-b3af-22dfc0468ef2",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:96f72c62-c120-4a6f-9d2b-670d5b90ea99",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:689bdb54-b10d-432f-95e0-1d74a225e9a7",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:767c23e3-7150-4f07-8033-8949648c9324",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:89982d56-e285-4536-a45b-3f9b4d1e57cb",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:1d07c869-d36f-4db1-b4de-1825058ca984",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:9a53e86c-ed6b-4698-86b7-88c37a42ff5c",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:356035e6-8283-4f1c-b1ae-a40d245eed2b",
- "resource": {
- "resourceType": "Claim",
- "id": "356035e6-8283-4f1c-b1ae-a40d245eed2b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Blair400 Grady603"
- },
- "billablePeriod": {
- "start": "2017-08-23T08:19:16-04:00",
- "end": "2017-08-23T08:34:16-04:00"
- },
- "created": "2017-08-23T08:34:16-04:00",
- "provider": {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:809bbd41-9462-4388-89a1-a5d087a1e48b"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f7c20e58-a836-4534-b0bb-b3922f216328",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f7c20e58-a836-4534-b0bb-b3922f216328",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "356035e6-8283-4f1c-b1ae-a40d245eed2b"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2017-08-23T08:34:16-04:00",
- "end": "2018-08-23T08:34:16-04:00"
- },
- "created": "2017-08-23T08:34:16-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:356035e6-8283-4f1c-b1ae-a40d245eed2b"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-08-23T08:19:16-04:00",
- "end": "2017-08-23T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:9d0fd54c-7cc0-4d1d-a9cf-724382c2d130"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2017-08-23T08:19:16-04:00",
- "end": "2017-08-23T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:84a3dde6-7949-4fcf-9ae9-c6a51f209a33",
- "resource": {
- "resourceType": "Encounter",
- "id": "84a3dde6-7949-4fcf-9ae9-c6a51f209a33",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e",
- "display": "Dr. Isiah14 Jakubowski832"
- }
- }
- ],
- "period": {
- "start": "2019-03-26T08:19:16-04:00",
- "end": "2019-03-26T08:34:16-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f74c0c49-e90c-4350-ae84-f2518e9d98c9",
- "resource": {
- "resourceType": "Condition",
- "id": "f74c0c49-e90c-4350-ae84-f2518e9d98c9",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:84a3dde6-7949-4fcf-9ae9-c6a51f209a33"
- },
- "onsetDateTime": "2019-03-26T08:19:16-04:00",
- "abatementDateTime": "2019-04-02T08:19:16-04:00",
- "recordedDate": "2019-03-26T08:19:16-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:6a549b88-d04a-47c6-a60a-0520c452ddaa",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "6a549b88-d04a-47c6-a60a-0520c452ddaa",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "1043400",
- "display": "Acetaminophen 21.7 MG/ML / Dextromethorphan Hydrobromide 1 MG/ML / doxylamine succinate 0.417 MG/ML Oral Solution"
- }
- ],
- "text": "Acetaminophen 21.7 MG/ML / Dextromethorphan Hydrobromide 1 MG/ML / doxylamine succinate 0.417 MG/ML Oral Solution"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:84a3dde6-7949-4fcf-9ae9-c6a51f209a33"
- },
- "authoredOn": "2019-03-26T08:19:16-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e",
- "display": "Dr. Isiah14 Jakubowski832"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:f74c0c49-e90c-4350-ae84-f2518e9d98c9"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:4e0a23c7-6a1f-4312-91c8-ac73a6950029",
- "resource": {
- "resourceType": "Claim",
- "id": "4e0a23c7-6a1f-4312-91c8-ac73a6950029",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2019-03-26T08:19:16-04:00",
- "end": "2019-03-26T08:34:16-04:00"
- },
- "created": "2019-03-26T08:34:16-04:00",
- "provider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:6a549b88-d04a-47c6-a60a-0520c452ddaa"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:84a3dde6-7949-4fcf-9ae9-c6a51f209a33"
- }
- ]
- }
- ],
- "total": {
- "value": 8.86,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0996a8b8-b473-4d33-8897-2029083f51f6",
- "resource": {
- "resourceType": "CareTeam",
- "id": "0996a8b8-b473-4d33-8897-2029083f51f6",
- "status": "inactive",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:84a3dde6-7949-4fcf-9ae9-c6a51f209a33"
- },
- "period": {
- "start": "2019-03-26T08:19:16-04:00",
- "end": "2019-08-28T08:19:16-04:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e",
- "display": "Dr. Isiah14 Jakubowski832"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:9f85c6e6-51fb-4aaf-be44-4af8e0a4bd67",
- "resource": {
- "resourceType": "CarePlan",
- "id": "9f85c6e6-51fb-4aaf-be44-4af8e0a4bd67",
- "text": {
- "status": "generated",
- "div": "Care Plan for Respiratory therapy.
Activities:
- Respiratory therapy
- Respiratory therapy
Care plan is meant to treat Acute bronchitis (disorder).
"
- },
- "status": "completed",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "53950000",
- "display": "Respiratory therapy"
- }
- ],
- "text": "Respiratory therapy"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:84a3dde6-7949-4fcf-9ae9-c6a51f209a33"
- },
- "period": {
- "start": "2019-03-26T08:19:16-04:00",
- "end": "2019-08-28T08:19:16-04:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:0996a8b8-b473-4d33-8897-2029083f51f6"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:f74c0c49-e90c-4350-ae84-f2518e9d98c9"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "304510005",
- "display": "Recommendation to avoid exercise"
- }
- ],
- "text": "Recommendation to avoid exercise"
- },
- "status": "completed",
- "location": {
- "display": "HOLYOKE MEDICAL CENTER"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "371605008",
- "display": "Deep breathing and coughing exercises"
- }
- ],
- "text": "Deep breathing and coughing exercises"
- },
- "status": "completed",
- "location": {
- "display": "HOLYOKE MEDICAL CENTER"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:ce295903-7f83-44d8-95cd-7b392a9d9dbf",
- "resource": {
- "resourceType": "Claim",
- "id": "ce295903-7f83-44d8-95cd-7b392a9d9dbf",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Blair400 Grady603"
- },
- "billablePeriod": {
- "start": "2019-03-26T08:19:16-04:00",
- "end": "2019-03-26T08:34:16-04:00"
- },
- "created": "2019-03-26T08:34:16-04:00",
- "provider": {
- "reference": "urn:uuid:5d4b9df1-93ae-3bc9-b680-03249990e558",
- "display": "HOLYOKE MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:f74c0c49-e90c-4350-ae84-f2518e9d98c9"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:84a3dde6-7949-4fcf-9ae9-c6a51f209a33"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b1db3e3c-fcb0-4c53-8e57-4543b73a279d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "b1db3e3c-fcb0-4c53-8e57-4543b73a279d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ce295903-7f83-44d8-95cd-7b392a9d9dbf"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2019-03-26T08:34:16-04:00",
- "end": "2020-03-26T08:34:16-04:00"
- },
- "created": "2019-03-26T08:34:16-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ce295903-7f83-44d8-95cd-7b392a9d9dbf"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000006e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:f74c0c49-e90c-4350-ae84-f2518e9d98c9"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2019-03-26T08:19:16-04:00",
- "end": "2019-03-26T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:84a3dde6-7949-4fcf-9ae9-c6a51f209a33"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2019-03-26T08:19:16-04:00",
- "end": "2019-03-26T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a9afd4c9-8443-3b5a-a486-07c3bb109b3f",
- "resource": {
- "resourceType": "Organization",
- "id": "a9afd4c9-8443-3b5a-a486-07c3bb109b3f",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "a9afd4c9-8443-3b5a-a486-07c3bb109b3f"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "RIVER BEND MEDICAL GROUP - CHICOPEE OFFICE - URGENT CARE",
- "telecom": [
- {
- "system": "phone",
- "value": "413-594-3111"
- }
- ],
- "address": [
- {
- "line": [
- "444 MONTGOMERY STREET"
- ],
- "city": "CHICOPEE",
- "state": "MA",
- "postalCode": "1020",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-000000016d3c",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-000000016d3c",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "93500"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Haag279",
- "given": [
- "Roberto515"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Roberto515.Haag279@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "444 MONTGOMERY STREET"
- ],
- "city": "CHICOPEE",
- "state": "MA",
- "postalCode": "1020",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:044b27b5-f847-49ee-a090-8794894b23fa",
- "resource": {
- "resourceType": "Encounter",
- "id": "044b27b5-f847-49ee-a090-8794894b23fa",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d3c",
- "display": "Dr. Roberto515 Haag279"
- }
- }
- ],
- "period": {
- "start": "2019-04-03T08:19:16-04:00",
- "end": "2019-04-03T08:34:16-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a9afd4c9-8443-3b5a-a486-07c3bb109b3f",
- "display": "RIVER BEND MEDICAL GROUP - CHICOPEE OFFICE - URGENT CARE"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:7729eda4-5426-45be-a214-0fba78e5278e",
- "resource": {
- "resourceType": "Immunization",
- "id": "7729eda4-5426-45be-a214-0fba78e5278e",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:044b27b5-f847-49ee-a090-8794894b23fa"
- },
- "occurrenceDateTime": "2019-04-03T08:19:16-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:693dde53-3f5a-4fc6-a35a-c2b62573767e",
- "resource": {
- "resourceType": "Claim",
- "id": "693dde53-3f5a-4fc6-a35a-c2b62573767e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Blair400 Grady603"
- },
- "billablePeriod": {
- "start": "2019-04-03T08:19:16-04:00",
- "end": "2019-04-03T08:34:16-04:00"
- },
- "created": "2019-04-03T08:34:16-04:00",
- "provider": {
- "reference": "urn:uuid:a9afd4c9-8443-3b5a-a486-07c3bb109b3f",
- "display": "RIVER BEND MEDICAL GROUP - CHICOPEE OFFICE - URGENT CARE"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:7729eda4-5426-45be-a214-0fba78e5278e"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:044b27b5-f847-49ee-a090-8794894b23fa"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:ca174b5a-4f0b-46fb-a0f7-056baea83b1f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "ca174b5a-4f0b-46fb-a0f7-056baea83b1f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d3c"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d3c"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "693dde53-3f5a-4fc6-a35a-c2b62573767e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2019-04-03T08:34:16-04:00",
- "end": "2020-04-03T08:34:16-04:00"
- },
- "created": "2019-04-03T08:34:16-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d3c"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:693dde53-3f5a-4fc6-a35a-c2b62573767e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d3c"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "servicedPeriod": {
- "start": "2019-04-03T08:19:16-04:00",
- "end": "2019-04-03T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:044b27b5-f847-49ee-a090-8794894b23fa"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2019-04-03T08:19:16-04:00",
- "end": "2019-04-03T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113",
- "resource": {
- "resourceType": "Encounter",
- "id": "3e587649-e9ad-44d7-b515-6257b69c4113",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Mr. Blair400 Grady603"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0",
- "display": "Dr. MarÃa Soledad68 Marrero674"
- }
- }
- ],
- "period": {
- "start": "2019-08-28T08:19:16-04:00",
- "end": "2019-08-28T08:34:16-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:6114cc20-a7e5-43fb-a363-1fc548d9867a",
- "resource": {
- "resourceType": "Observation",
- "id": "6114cc20-a7e5-43fb-a363-1fc548d9867a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 184.19824041576453,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d0e0beec-70db-4d08-b531-4e0ab0ab7581",
- "resource": {
- "resourceType": "Observation",
- "id": "d0e0beec-70db-4d08-b531-4e0ab0ab7581",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 1.4272659948837734,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:76d46e69-3dc3-4a82-960f-8d869c95969e",
- "resource": {
- "resourceType": "Observation",
- "id": "76d46e69-3dc3-4a82-960f-8d869c95969e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 102.94148677380862,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b1d938f0-d6cd-4f98-ae21-1bca29b925e8",
- "resource": {
- "resourceType": "Observation",
- "id": "b1d938f0-d6cd-4f98-ae21-1bca29b925e8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 30.34027284534904,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4bdf551a-b054-480d-97d2-435ea2ac3f9e",
- "resource": {
- "resourceType": "Observation",
- "id": "4bdf551a-b054-480d-97d2-435ea2ac3f9e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 84.30438518642936,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 124.190123814726,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7bedb213-511b-4a41-b050-d245d2b49924",
- "resource": {
- "resourceType": "Observation",
- "id": "7bedb213-511b-4a41-b050-d245d2b49924",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 70.41404255178506,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:54591c13-fd71-4bdd-9dd6-6a0a266d3ef3",
- "resource": {
- "resourceType": "Observation",
- "id": "54591c13-fd71-4bdd-9dd6-6a0a266d3ef3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 13.795568654308054,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fb587c44-f1fc-4af5-be42-66c8ae872cf9",
- "resource": {
- "resourceType": "Observation",
- "id": "fb587c44-f1fc-4af5-be42-66c8ae872cf9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 1.3153634421097768,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2115d09b-2512-429f-98d4-55b1d744ec9d",
- "resource": {
- "resourceType": "Observation",
- "id": "2115d09b-2512-429f-98d4-55b1d744ec9d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 9.108020113333076,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:51accda8-1661-4d0a-aaa6-9f933933777e",
- "resource": {
- "resourceType": "Observation",
- "id": "51accda8-1661-4d0a-aaa6-9f933933777e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 137.61700162320133,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:14edc6dc-fa83-441c-9716-62f3834356ed",
- "resource": {
- "resourceType": "Observation",
- "id": "14edc6dc-fa83-441c-9716-62f3834356ed",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 3.7609382874495667,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1e543180-01e3-461c-86d0-27e142334577",
- "resource": {
- "resourceType": "Observation",
- "id": "1e543180-01e3-461c-86d0-27e142334577",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 106.11698345865386,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5b282f14-9696-4202-b4bc-24a9754fa852",
- "resource": {
- "resourceType": "Observation",
- "id": "5b282f14-9696-4202-b4bc-24a9754fa852",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 27.565184290424938,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:84d5f946-4d25-4d38-bf21-f1f798257720",
- "resource": {
- "resourceType": "Observation",
- "id": "84d5f946-4d25-4d38-bf21-f1f798257720",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ab88c442-3df2-48bd-bdc7-9cfdb5235f2b",
- "resource": {
- "resourceType": "Observation",
- "id": "ab88c442-3df2-48bd-bdc7-9cfdb5235f2b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "valueQuantity": {
- "value": 6.085952962227345,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b23ca884-ca46-4db2-8137-31165de959e1",
- "resource": {
- "resourceType": "Immunization",
- "id": "b23ca884-ca46-4db2-8137-31165de959e1",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "occurrenceDateTime": "2019-08-28T08:19:16-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:7241bdd4-9151-40e2-9606-c310d40f16bc",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "7241bdd4-9151-40e2-9606-c310d40f16bc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "encounter": {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- },
- "effectiveDateTime": "2019-08-28T08:19:16-04:00",
- "issued": "2019-08-28T08:19:16.615-04:00",
- "result": [
- {
- "reference": "urn:uuid:7bedb213-511b-4a41-b050-d245d2b49924",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:54591c13-fd71-4bdd-9dd6-6a0a266d3ef3",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:fb587c44-f1fc-4af5-be42-66c8ae872cf9",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:2115d09b-2512-429f-98d4-55b1d744ec9d",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:51accda8-1661-4d0a-aaa6-9f933933777e",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:14edc6dc-fa83-441c-9716-62f3834356ed",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:1e543180-01e3-461c-86d0-27e142334577",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:5b282f14-9696-4202-b4bc-24a9754fa852",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:3d6defeb-9443-478d-b6c8-67bd41c659f4",
- "resource": {
- "resourceType": "Claim",
- "id": "3d6defeb-9443-478d-b6c8-67bd41c659f4",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf",
- "display": "Blair400 Grady603"
- },
- "billablePeriod": {
- "start": "2019-08-28T08:19:16-04:00",
- "end": "2019-08-28T08:34:16-04:00"
- },
- "created": "2019-08-28T08:34:16-04:00",
- "provider": {
- "reference": "urn:uuid:a0123c36-2436-3609-a5eb-3c3857ed711d",
- "display": "PCP8367"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:b23ca884-ca46-4db2-8137-31165de959e1"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:6a11ea85-df0c-4bd3-ac74-12c4fc1d023b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "6a11ea85-df0c-4bd3-ac74-12c4fc1d023b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3d6defeb-9443-478d-b6c8-67bd41c659f4"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:d7714835-c7e2-408f-9652-c8c2bdd9d2bf"
- },
- "billablePeriod": {
- "start": "2019-08-28T08:34:16-04:00",
- "end": "2020-08-28T08:34:16-04:00"
- },
- "created": "2019-08-28T08:34:16-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3d6defeb-9443-478d-b6c8-67bd41c659f4"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000016d0"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2019-08-28T08:19:16-04:00",
- "end": "2019-08-28T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3e587649-e9ad-44d7-b515-6257b69c4113"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2019-08-28T08:19:16-04:00",
- "end": "2019-08-28T08:34:16-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- }
- ]
-}
diff --git a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Carl856_Powlowski563_49e4037a-b643-4acf-bbfe-e29ca79b97a1.json b/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Carl856_Powlowski563_49e4037a-b643-4acf-bbfe-e29ca79b97a1.json
deleted file mode 100644
index 0c6ba92c..00000000
--- a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Carl856_Powlowski563_49e4037a-b643-4acf-bbfe-e29ca79b97a1.json
+++ /dev/null
@@ -1,9929 +0,0 @@
-{
- "resourceType": "Bundle",
- "type": "transaction",
- "entry": [
- {
- "fullUrl": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "resource": {
- "resourceType": "Patient",
- "id": "10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "text": {
- "status": "generated",
- "div": "Generated by
Synthea.Version identifier: v2.4.0-404-ge7ce2295\n . Person seed: 1176089665387826969 Population seed: 0
"
- },
- "extension": [
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2106-3",
- "display": "White"
- }
- },
- {
- "url": "text",
- "valueString": "White"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
- }
- },
- {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
- "valueString": "Mabelle762 Schamberger479"
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
- "valueCode": "M"
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
- "valueAddress": {
- "city": "Worcester",
- "state": "Massachusetts",
- "country": "US"
- }
- },
- {
- "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
- "valueDecimal": 2.204054020908369
- },
- {
- "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
- "valueDecimal": 35.795945979091634
- }
- ],
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "49e4037a-b643-4acf-bbfe-e29ca79b97a1"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "MR",
- "display": "Medical Record Number"
- }
- ],
- "text": "Medical Record Number"
- },
- "system": "http://hospital.smarthealthit.org",
- "value": "49e4037a-b643-4acf-bbfe-e29ca79b97a1"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "SS",
- "display": "Social Security Number"
- }
- ],
- "text": "Social Security Number"
- },
- "system": "http://hl7.org/fhir/sid/us-ssn",
- "value": "999-99-3293"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "DL",
- "display": "Driver's License"
- }
- ],
- "text": "Driver's License"
- },
- "system": "urn:oid:2.16.840.1.113883.4.3.25",
- "value": "S99910425"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PPN",
- "display": "Passport Number"
- }
- ],
- "text": "Passport Number"
- },
- "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber",
- "value": "X909994X"
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "Powlowski563",
- "given": [
- "Carl856"
- ],
- "prefix": [
- "Mr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "phone",
- "value": "555-365-3426",
- "use": "home"
- }
- ],
- "gender": "male",
- "birthDate": "1980-02-16",
- "address": [
- {
- "extension": [
- {
- "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
- "extension": [
- {
- "url": "latitude",
- "valueDecimal": 41.81313720090747
- },
- {
- "url": "longitude",
- "valueDecimal": -71.01426895740737
- }
- ]
- }
- ],
- "line": [
- "367 Farrell Lock Suite 49"
- ],
- "city": "Fall River",
- "state": "Massachusetts",
- "postalCode": "02720",
- "country": "US"
- }
- ],
- "maritalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
- "code": "M",
- "display": "M"
- }
- ],
- "text": "M"
- },
- "multipleBirthBoolean": false,
- "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English"
- }
- ],
- "text": "English"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Patient"
- }
- },
- {
- "fullUrl": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "resource": {
- "resourceType": "Organization",
- "id": "7a0b9372-1373-333a-9846-0e6c0030ba45",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "7a0b9372-1373-333a-9846-0e6c0030ba45"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "PCP17971",
- "telecom": [
- {
- "system": "phone",
- "value": "508-947-0747"
- }
- ],
- "address": [
- {
- "line": [
- "66 MAIN ST"
- ],
- "city": "LAKEVILLE",
- "state": "MA",
- "postalCode": "02347-1608",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-00000000302a",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "12330"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Barton704",
- "given": [
- "Oliver401"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Oliver401.Barton704@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "66 MAIN ST"
- ],
- "city": "LAKEVILLE",
- "state": "MA",
- "postalCode": "02347-1608",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:a1c9d9e5-a867-4d05-b003-609931321c90",
- "resource": {
- "resourceType": "Encounter",
- "id": "a1c9d9e5-a867-4d05-b003-609931321c90",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Mr. Carl856 Powlowski563"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a",
- "display": "Dr. Oliver401 Barton704"
- }
- }
- ],
- "period": {
- "start": "2002-04-20T16:57:25-04:00",
- "end": "2002-04-20T17:12:25-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f0ace865-8a12-453c-b9dc-4f1a73cd2fd0",
- "resource": {
- "resourceType": "Condition",
- "id": "f0ace865-8a12-453c-b9dc-4f1a73cd2fd0",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:a1c9d9e5-a867-4d05-b003-609931321c90"
- },
- "onsetDateTime": "2002-04-20T16:57:25-04:00",
- "recordedDate": "2002-04-20T16:57:25-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:36ced40e-e299-46a5-8f3f-b64584ab7840",
- "resource": {
- "resourceType": "CareTeam",
- "id": "36ced40e-e299-46a5-8f3f-b64584ab7840",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:a1c9d9e5-a867-4d05-b003-609931321c90"
- },
- "period": {
- "start": "2002-04-20T16:57:25-04:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Mr. Carl856 Powlowski563"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a",
- "display": "Dr. Oliver401 Barton704"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:c7ce64c4-2ab4-4420-a52f-36c106a74910",
- "resource": {
- "resourceType": "Goal",
- "id": "c7ce64c4-2ab4-4420-a52f-36c106a74910",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Hemoglobin A1c total in Blood < 7.0"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:affa2e19-4db7-4869-969d-09f152effa15",
- "resource": {
- "resourceType": "Goal",
- "id": "affa2e19-4db7-4869-969d-09f152effa15",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Glucose [Mass/volume] in Blood < 108"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:46ea4161-1eae-437b-85c7-ee2d6c9f1fee",
- "resource": {
- "resourceType": "Goal",
- "id": "46ea4161-1eae-437b-85c7-ee2d6c9f1fee",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Maintain blood pressure below 140/90 mmHg"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:9bcadd12-da80-4790-9cd6-0829db31d241",
- "resource": {
- "resourceType": "Goal",
- "id": "9bcadd12-da80-4790-9cd6-0829db31d241",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Improve and maintenance of optimal foot health: aim at early detection of peripheral vascular problems and neuropathy presumed due to diabetes; and prevention of diabetic foot ulcer, gangrene"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:89d54050-0f3a-4e6a-8b36-ab5157ce9ac5",
- "resource": {
- "resourceType": "Goal",
- "id": "89d54050-0f3a-4e6a-8b36-ab5157ce9ac5",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Address patient knowledge deficit on diabetic self-care"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:e3c9cdd3-e6b3-403c-9301-7f3d2ee5ccf4",
- "resource": {
- "resourceType": "CarePlan",
- "id": "e3c9cdd3-e6b3-403c-9301-7f3d2ee5ccf4",
- "text": {
- "status": "generated",
- "div": "Care Plan for Diabetes self management plan.
Activities:
- Diabetes self management plan
- Diabetes self management plan
Care plan is meant to treat Prediabetes.
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698360004",
- "display": "Diabetes self management plan"
- }
- ],
- "text": "Diabetes self management plan"
- }
- ],
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:a1c9d9e5-a867-4d05-b003-609931321c90"
- },
- "period": {
- "start": "2002-04-20T16:57:25-04:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:36ced40e-e299-46a5-8f3f-b64584ab7840"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:f0ace865-8a12-453c-b9dc-4f1a73cd2fd0"
- }
- ],
- "goal": [
- {
- "reference": "urn:uuid:c7ce64c4-2ab4-4420-a52f-36c106a74910"
- },
- {
- "reference": "urn:uuid:affa2e19-4db7-4869-969d-09f152effa15"
- },
- {
- "reference": "urn:uuid:46ea4161-1eae-437b-85c7-ee2d6c9f1fee"
- },
- {
- "reference": "urn:uuid:9bcadd12-da80-4790-9cd6-0829db31d241"
- },
- {
- "reference": "urn:uuid:89d54050-0f3a-4e6a-8b36-ab5157ce9ac5"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "160670007",
- "display": "Diabetic diet"
- }
- ],
- "text": "Diabetic diet"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP17971"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "229065009",
- "display": "Exercise therapy"
- }
- ],
- "text": "Exercise therapy"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP17971"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:3028ee8c-4ec1-4647-b023-552b56e76f4c",
- "resource": {
- "resourceType": "Claim",
- "id": "3028ee8c-4ec1-4647-b023-552b56e76f4c",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Carl856 Powlowski563"
- },
- "billablePeriod": {
- "start": "2002-04-20T16:57:25-04:00",
- "end": "2002-04-20T17:12:25-04:00"
- },
- "created": "2002-04-20T17:12:25-04:00",
- "provider": {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:f0ace865-8a12-453c-b9dc-4f1a73cd2fd0"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a1c9d9e5-a867-4d05-b003-609931321c90"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0727c2cc-47ce-4b12-a2e4-d80c7ff8965b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0727c2cc-47ce-4b12-a2e4-d80c7ff8965b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Cigna Health"
- },
- "beneficiary": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "payor": [
- {
- "display": "Cigna Health"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3028ee8c-4ec1-4647-b023-552b56e76f4c"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "billablePeriod": {
- "start": "2002-04-20T17:12:25-04:00",
- "end": "2003-04-20T17:12:25-04:00"
- },
- "created": "2002-04-20T17:12:25-04:00",
- "insurer": {
- "display": "Cigna Health"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3028ee8c-4ec1-4647-b023-552b56e76f4c"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:f0ace865-8a12-453c-b9dc-4f1a73cd2fd0"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2002-04-20T16:57:25-04:00",
- "end": "2002-04-20T17:12:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:a1c9d9e5-a867-4d05-b003-609931321c90"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- },
- "servicedPeriod": {
- "start": "2002-04-20T16:57:25-04:00",
- "end": "2002-04-20T17:12:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:edbf01c4-eb8d-4ef8-941e-d5edd5ae3da3",
- "resource": {
- "resourceType": "Encounter",
- "id": "edbf01c4-eb8d-4ef8-941e-d5edd5ae3da3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Mr. Carl856 Powlowski563"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a",
- "display": "Dr. Oliver401 Barton704"
- }
- }
- ],
- "period": {
- "start": "2005-04-23T16:57:25-04:00",
- "end": "2005-04-23T17:27:25-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a7ade362-e633-473e-bf02-05d04e6b740b",
- "resource": {
- "resourceType": "Condition",
- "id": "a7ade362-e633-473e-bf02-05d04e6b740b",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271737000",
- "display": "Anemia (disorder)"
- }
- ],
- "text": "Anemia (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:edbf01c4-eb8d-4ef8-941e-d5edd5ae3da3"
- },
- "onsetDateTime": "2005-04-23T16:57:25-04:00",
- "recordedDate": "2005-04-23T16:57:25-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:b67b66a9-e15a-4608-8e4f-20e31b666d91",
- "resource": {
- "resourceType": "Claim",
- "id": "b67b66a9-e15a-4608-8e4f-20e31b666d91",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Carl856 Powlowski563"
- },
- "billablePeriod": {
- "start": "2005-04-23T16:57:25-04:00",
- "end": "2005-04-23T17:27:25-04:00"
- },
- "created": "2005-04-23T17:27:25-04:00",
- "provider": {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:a7ade362-e633-473e-bf02-05d04e6b740b"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:edbf01c4-eb8d-4ef8-941e-d5edd5ae3da3"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271737000",
- "display": "Anemia (disorder)"
- }
- ],
- "text": "Anemia (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9f293671-e79e-44f1-8a88-12b3184041b5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9f293671-e79e-44f1-8a88-12b3184041b5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Cigna Health"
- },
- "beneficiary": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "payor": [
- {
- "display": "Cigna Health"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b67b66a9-e15a-4608-8e4f-20e31b666d91"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "billablePeriod": {
- "start": "2005-04-23T17:27:25-04:00",
- "end": "2006-04-23T17:27:25-04:00"
- },
- "created": "2005-04-23T17:27:25-04:00",
- "insurer": {
- "display": "Cigna Health"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b67b66a9-e15a-4608-8e4f-20e31b666d91"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:a7ade362-e633-473e-bf02-05d04e6b740b"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2005-04-23T16:57:25-04:00",
- "end": "2005-04-23T17:27:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:edbf01c4-eb8d-4ef8-941e-d5edd5ae3da3"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271737000",
- "display": "Anemia (disorder)"
- }
- ],
- "text": "Anemia (disorder)"
- },
- "servicedPeriod": {
- "start": "2005-04-23T16:57:25-04:00",
- "end": "2005-04-23T17:27:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:23834663-ed53-3da9-b330-d6e1ecb8428e",
- "resource": {
- "resourceType": "Organization",
- "id": "23834663-ed53-3da9-b330-d6e1ecb8428e",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "23834663-ed53-3da9-b330-d6e1ecb8428e"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "SOUTHCOAST HOSPITAL GROUP, INC",
- "telecom": [
- {
- "system": "phone",
- "value": "5086793131"
- }
- ],
- "address": [
- {
- "line": [
- "363 HIGHLAND AVENUE"
- ],
- "city": "FALL RIVER",
- "state": "MA",
- "postalCode": "02720",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-00000000012c",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "300"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Ruecker817",
- "given": [
- "Cara845"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Cara845.Ruecker817@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "363 HIGHLAND AVENUE"
- ],
- "city": "FALL RIVER",
- "state": "MA",
- "postalCode": "02720",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:4e7a5a02-f1ee-451d-901f-5a03f8eaaddc",
- "resource": {
- "resourceType": "Encounter",
- "id": "4e7a5a02-f1ee-451d-901f-5a03f8eaaddc",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Mr. Carl856 Powlowski563"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c",
- "display": "Dr. Cara845 Ruecker817"
- }
- }
- ],
- "period": {
- "start": "2010-11-12T15:57:25-05:00",
- "end": "2010-11-12T16:12:25-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "75498004",
- "display": "Acute bacterial sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:23834663-ed53-3da9-b330-d6e1ecb8428e",
- "display": "SOUTHCOAST HOSPITAL GROUP, INC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:fed9416f-142f-4d38-b1dd-7502217547f6",
- "resource": {
- "resourceType": "Condition",
- "id": "fed9416f-142f-4d38-b1dd-7502217547f6",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "75498004",
- "display": "Acute bacterial sinusitis (disorder)"
- }
- ],
- "text": "Acute bacterial sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:4e7a5a02-f1ee-451d-901f-5a03f8eaaddc"
- },
- "onsetDateTime": "2010-11-12T15:57:25-05:00",
- "abatementDateTime": "2011-01-28T15:57:25-05:00",
- "recordedDate": "2010-11-12T15:57:25-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:02df3949-24af-44cf-9f0d-2ccbc29e19cb",
- "resource": {
- "resourceType": "Claim",
- "id": "02df3949-24af-44cf-9f0d-2ccbc29e19cb",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Carl856 Powlowski563"
- },
- "billablePeriod": {
- "start": "2010-11-12T15:57:25-05:00",
- "end": "2010-11-12T16:12:25-05:00"
- },
- "created": "2010-11-12T16:12:25-05:00",
- "provider": {
- "reference": "urn:uuid:23834663-ed53-3da9-b330-d6e1ecb8428e",
- "display": "SOUTHCOAST HOSPITAL GROUP, INC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:fed9416f-142f-4d38-b1dd-7502217547f6"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:4e7a5a02-f1ee-451d-901f-5a03f8eaaddc"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "75498004",
- "display": "Acute bacterial sinusitis (disorder)"
- }
- ],
- "text": "Acute bacterial sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b69bc144-4da3-4a26-ae73-33e0d6b8dbfa",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "b69bc144-4da3-4a26-ae73-33e0d6b8dbfa",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Cigna Health"
- },
- "beneficiary": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "payor": [
- {
- "display": "Cigna Health"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "02df3949-24af-44cf-9f0d-2ccbc29e19cb"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "billablePeriod": {
- "start": "2010-11-12T16:12:25-05:00",
- "end": "2011-11-12T16:12:25-05:00"
- },
- "created": "2010-11-12T16:12:25-05:00",
- "insurer": {
- "display": "Cigna Health"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:02df3949-24af-44cf-9f0d-2ccbc29e19cb"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:fed9416f-142f-4d38-b1dd-7502217547f6"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2010-11-12T15:57:25-05:00",
- "end": "2010-11-12T16:12:25-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:4e7a5a02-f1ee-451d-901f-5a03f8eaaddc"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "75498004",
- "display": "Acute bacterial sinusitis (disorder)"
- }
- ],
- "text": "Acute bacterial sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2010-11-12T15:57:25-05:00",
- "end": "2010-11-12T16:12:25-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c8f96f59-4472-4a1f-bec6-2189dc07a25c",
- "resource": {
- "resourceType": "Encounter",
- "id": "c8f96f59-4472-4a1f-bec6-2189dc07a25c",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Mr. Carl856 Powlowski563"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c",
- "display": "Dr. Cara845 Ruecker817"
- }
- }
- ],
- "period": {
- "start": "2010-12-10T15:57:25-05:00",
- "end": "2010-12-10T16:12:25-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "75498004",
- "display": "Acute bacterial sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:23834663-ed53-3da9-b330-d6e1ecb8428e",
- "display": "SOUTHCOAST HOSPITAL GROUP, INC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c516bf53-9b89-4f7b-aca4-75cf8db6e458",
- "resource": {
- "resourceType": "Condition",
- "id": "c516bf53-9b89-4f7b-aca4-75cf8db6e458",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:c8f96f59-4472-4a1f-bec6-2189dc07a25c"
- },
- "onsetDateTime": "2010-12-10T15:57:25-05:00",
- "recordedDate": "2010-12-10T15:57:25-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:31052e7c-18c6-46b6-b809-da2277379e8f",
- "resource": {
- "resourceType": "Claim",
- "id": "31052e7c-18c6-46b6-b809-da2277379e8f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Carl856 Powlowski563"
- },
- "billablePeriod": {
- "start": "2010-12-10T15:57:25-05:00",
- "end": "2010-12-10T16:12:25-05:00"
- },
- "created": "2010-12-10T16:12:25-05:00",
- "provider": {
- "reference": "urn:uuid:23834663-ed53-3da9-b330-d6e1ecb8428e",
- "display": "SOUTHCOAST HOSPITAL GROUP, INC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:c516bf53-9b89-4f7b-aca4-75cf8db6e458"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c8f96f59-4472-4a1f-bec6-2189dc07a25c"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5d0192db-f48b-4927-ab29-59fde940f94d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5d0192db-f48b-4927-ab29-59fde940f94d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Cigna Health"
- },
- "beneficiary": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "payor": [
- {
- "display": "Cigna Health"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "31052e7c-18c6-46b6-b809-da2277379e8f"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "billablePeriod": {
- "start": "2010-12-10T16:12:25-05:00",
- "end": "2011-12-10T16:12:25-05:00"
- },
- "created": "2010-12-10T16:12:25-05:00",
- "insurer": {
- "display": "Cigna Health"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:31052e7c-18c6-46b6-b809-da2277379e8f"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:c516bf53-9b89-4f7b-aca4-75cf8db6e458"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2010-12-10T15:57:25-05:00",
- "end": "2010-12-10T16:12:25-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c8f96f59-4472-4a1f-bec6-2189dc07a25c"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2010-12-10T15:57:25-05:00",
- "end": "2010-12-10T16:12:25-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5",
- "resource": {
- "resourceType": "Encounter",
- "id": "f3f6efef-5362-45b9-bbe6-a31816d96cf5",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Mr. Carl856 Powlowski563"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a",
- "display": "Dr. Oliver401 Barton704"
- }
- }
- ],
- "period": {
- "start": "2011-04-30T16:57:25-04:00",
- "end": "2011-04-30T17:12:25-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c500242c-6fdf-410a-ae93-6ab4c26b55b4",
- "resource": {
- "resourceType": "Observation",
- "id": "c500242c-6fdf-410a-ae93-6ab4c26b55b4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 178.7353143290962,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:af1f20b6-4f0c-4a9e-8b23-d14ef5eee9a0",
- "resource": {
- "resourceType": "Observation",
- "id": "af1f20b6-4f0c-4a9e-8b23-d14ef5eee9a0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 2.581053622061007,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e6655c4c-251a-407d-be1e-bf76a471d096",
- "resource": {
- "resourceType": "Observation",
- "id": "e6655c4c-251a-407d-be1e-bf76a471d096",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 86.1319420593103,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:763c17b5-7d2b-4d06-8e5d-ad59e625168c",
- "resource": {
- "resourceType": "Observation",
- "id": "763c17b5-7d2b-4d06-8e5d-ad59e625168c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 26.9614659974244,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e2aa2da5-3e21-4f41-80ab-0396b0e4b881",
- "resource": {
- "resourceType": "Observation",
- "id": "e2aa2da5-3e21-4f41-80ab-0396b0e4b881",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 78.5885928711685,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 116.78909203624536,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:348482a5-79e2-4458-81c3-883de399d4b4",
- "resource": {
- "resourceType": "Observation",
- "id": "348482a5-79e2-4458-81c3-883de399d4b4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 78.24649293930932,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:89be2862-9a30-42d8-9a1c-ac2c5d7889e5",
- "resource": {
- "resourceType": "Observation",
- "id": "89be2862-9a30-42d8-9a1c-ac2c5d7889e5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 19.78751111894038,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f64e4380-1d6a-4c9e-8fc0-76ac3fc03224",
- "resource": {
- "resourceType": "Observation",
- "id": "f64e4380-1d6a-4c9e-8fc0-76ac3fc03224",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 1.3433151858567585,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3594d2ff-85ad-4f29-8543-a27790341b13",
- "resource": {
- "resourceType": "Observation",
- "id": "3594d2ff-85ad-4f29-8543-a27790341b13",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 9.429578847356677,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:202cdd0c-c87e-41ac-8595-ce236df10eab",
- "resource": {
- "resourceType": "Observation",
- "id": "202cdd0c-c87e-41ac-8595-ce236df10eab",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 138.78922222780986,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:38c77c05-20b8-4163-b2a7-6407035d6afd",
- "resource": {
- "resourceType": "Observation",
- "id": "38c77c05-20b8-4163-b2a7-6407035d6afd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 3.727563056421804,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a9012515-a5a9-4212-bfec-cb5e17701844",
- "resource": {
- "resourceType": "Observation",
- "id": "a9012515-a5a9-4212-bfec-cb5e17701844",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 109.00060586999754,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0d0851b1-2cb4-4906-9f58-e8c9892c5118",
- "resource": {
- "resourceType": "Observation",
- "id": "0d0851b1-2cb4-4906-9f58-e8c9892c5118",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 23.015613307620388,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6d5c7dfc-e88e-4c15-aec0-74b8622d6b04",
- "resource": {
- "resourceType": "Observation",
- "id": "6d5c7dfc-e88e-4c15-aec0-74b8622d6b04",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 181.95554988053402,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a83cbcc7-1820-4552-b1e8-78c724066136",
- "resource": {
- "resourceType": "Observation",
- "id": "a83cbcc7-1820-4552-b1e8-78c724066136",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 149.83019054841952,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:41f5079c-ea92-44b2-958e-42444261fba9",
- "resource": {
- "resourceType": "Observation",
- "id": "41f5079c-ea92-44b2-958e-42444261fba9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 79.37679398478608,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:35572cbb-90aa-43a4-bd33-3c6fb85d97dc",
- "resource": {
- "resourceType": "Observation",
- "id": "35572cbb-90aa-43a4-bd33-3c6fb85d97dc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 72.61271778606404,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:da4141b2-0c1d-4e2e-83c6-32ba328680c2",
- "resource": {
- "resourceType": "Observation",
- "id": "da4141b2-0c1d-4e2e-83c6-32ba328680c2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d6a28ea2-827e-4036-b19b-6097e955a417",
- "resource": {
- "resourceType": "Observation",
- "id": "d6a28ea2-827e-4036-b19b-6097e955a417",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 6.345930554142416,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3eedef26-7215-45e8-bf58-3d70ad68ac6d",
- "resource": {
- "resourceType": "Immunization",
- "id": "3eedef26-7215-45e8-bf58-3d70ad68ac6d",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "occurrenceDateTime": "2011-04-30T16:57:25-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:72d3a37f-c231-4ff3-bb4d-b2ee4eef0ae3",
- "resource": {
- "resourceType": "Immunization",
- "id": "72d3a37f-c231-4ff3-bb4d-b2ee4eef0ae3",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "occurrenceDateTime": "2011-04-30T16:57:25-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:bb0fffc4-2a02-4439-899c-65da235bdead",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "bb0fffc4-2a02-4439-899c-65da235bdead",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "result": [
- {
- "reference": "urn:uuid:348482a5-79e2-4458-81c3-883de399d4b4",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:89be2862-9a30-42d8-9a1c-ac2c5d7889e5",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:f64e4380-1d6a-4c9e-8fc0-76ac3fc03224",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:3594d2ff-85ad-4f29-8543-a27790341b13",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:202cdd0c-c87e-41ac-8595-ce236df10eab",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:38c77c05-20b8-4163-b2a7-6407035d6afd",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:a9012515-a5a9-4212-bfec-cb5e17701844",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:0d0851b1-2cb4-4906-9f58-e8c9892c5118",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:6d03a50c-4923-48ab-a94c-41e7b7a026b2",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "6d03a50c-4923-48ab-a94c-41e7b7a026b2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- },
- "effectiveDateTime": "2011-04-30T16:57:25-04:00",
- "issued": "2011-04-30T16:57:25.993-04:00",
- "result": [
- {
- "reference": "urn:uuid:6d5c7dfc-e88e-4c15-aec0-74b8622d6b04",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:a83cbcc7-1820-4552-b1e8-78c724066136",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:41f5079c-ea92-44b2-958e-42444261fba9",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:35572cbb-90aa-43a4-bd33-3c6fb85d97dc",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:bff7500b-2598-43e6-9462-1549cbdec817",
- "resource": {
- "resourceType": "Claim",
- "id": "bff7500b-2598-43e6-9462-1549cbdec817",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Carl856 Powlowski563"
- },
- "billablePeriod": {
- "start": "2011-04-30T16:57:25-04:00",
- "end": "2011-04-30T17:12:25-04:00"
- },
- "created": "2011-04-30T17:12:25-04:00",
- "provider": {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:3eedef26-7215-45e8-bf58-3d70ad68ac6d"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:72d3a37f-c231-4ff3-bb4d-b2ee4eef0ae3"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1e76c147-7e4e-46f9-91ff-998579587c79",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "1e76c147-7e4e-46f9-91ff-998579587c79",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Cigna Health"
- },
- "beneficiary": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "payor": [
- {
- "display": "Cigna Health"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "bff7500b-2598-43e6-9462-1549cbdec817"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "billablePeriod": {
- "start": "2011-04-30T17:12:25-04:00",
- "end": "2012-04-30T17:12:25-04:00"
- },
- "created": "2011-04-30T17:12:25-04:00",
- "insurer": {
- "display": "Cigna Health"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:bff7500b-2598-43e6-9462-1549cbdec817"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2011-04-30T16:57:25-04:00",
- "end": "2011-04-30T17:12:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f3f6efef-5362-45b9-bbe6-a31816d96cf5"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2011-04-30T16:57:25-04:00",
- "end": "2011-04-30T17:12:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "servicedPeriod": {
- "start": "2011-04-30T16:57:25-04:00",
- "end": "2011-04-30T17:12:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 224.83200000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:de217019-8869-4153-b3c6-49f081f44d37",
- "resource": {
- "resourceType": "Encounter",
- "id": "de217019-8869-4153-b3c6-49f081f44d37",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Mr. Carl856 Powlowski563"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c",
- "display": "Dr. Cara845 Ruecker817"
- }
- }
- ],
- "period": {
- "start": "2013-08-20T16:57:25-04:00",
- "end": "2013-08-20T17:12:25-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:23834663-ed53-3da9-b330-d6e1ecb8428e",
- "display": "SOUTHCOAST HOSPITAL GROUP, INC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:9b372323-4807-45d1-ab43-abbf720fb34e",
- "resource": {
- "resourceType": "Condition",
- "id": "9b372323-4807-45d1-ab43-abbf720fb34e",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:de217019-8869-4153-b3c6-49f081f44d37"
- },
- "onsetDateTime": "2013-08-20T16:57:25-04:00",
- "abatementDateTime": "2013-08-28T16:57:25-04:00",
- "recordedDate": "2013-08-20T16:57:25-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:eb04e742-f926-47d1-b891-12d274ca6c54",
- "resource": {
- "resourceType": "Observation",
- "id": "eb04e742-f926-47d1-b891-12d274ca6c54",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8331-1",
- "display": "Oral temperature"
- }
- ],
- "text": "Oral temperature"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:de217019-8869-4153-b3c6-49f081f44d37"
- },
- "effectiveDateTime": "2013-08-20T16:57:25-04:00",
- "issued": "2013-08-20T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 37.47973170388161,
- "unit": "Cel",
- "system": "http://unitsofmeasure.org",
- "code": "Cel"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ea96fc03-a226-4c7e-8a6a-01703df374d9",
- "resource": {
- "resourceType": "Claim",
- "id": "ea96fc03-a226-4c7e-8a6a-01703df374d9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Carl856 Powlowski563"
- },
- "billablePeriod": {
- "start": "2013-08-20T16:57:25-04:00",
- "end": "2013-08-20T17:12:25-04:00"
- },
- "created": "2013-08-20T17:12:25-04:00",
- "provider": {
- "reference": "urn:uuid:23834663-ed53-3da9-b330-d6e1ecb8428e",
- "display": "SOUTHCOAST HOSPITAL GROUP, INC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:9b372323-4807-45d1-ab43-abbf720fb34e"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:de217019-8869-4153-b3c6-49f081f44d37"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:cb3ae9ca-69c6-4c09-be33-0870fb0bd928",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "cb3ae9ca-69c6-4c09-be33-0870fb0bd928",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Cigna Health"
- },
- "beneficiary": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "payor": [
- {
- "display": "Cigna Health"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ea96fc03-a226-4c7e-8a6a-01703df374d9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "billablePeriod": {
- "start": "2013-08-20T17:12:25-04:00",
- "end": "2014-08-20T17:12:25-04:00"
- },
- "created": "2013-08-20T17:12:25-04:00",
- "insurer": {
- "display": "Cigna Health"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ea96fc03-a226-4c7e-8a6a-01703df374d9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:9b372323-4807-45d1-ab43-abbf720fb34e"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2013-08-20T16:57:25-04:00",
- "end": "2013-08-20T17:12:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:de217019-8869-4153-b3c6-49f081f44d37"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2013-08-20T16:57:25-04:00",
- "end": "2013-08-20T17:12:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:75a03b6e-a813-4db5-a2ec-ae89934784c0",
- "resource": {
- "resourceType": "Encounter",
- "id": "75a03b6e-a813-4db5-a2ec-ae89934784c0",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Mr. Carl856 Powlowski563"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c",
- "display": "Dr. Cara845 Ruecker817"
- }
- }
- ],
- "period": {
- "start": "2014-03-29T16:57:25-04:00",
- "end": "2014-03-29T17:27:25-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:23834663-ed53-3da9-b330-d6e1ecb8428e",
- "display": "SOUTHCOAST HOSPITAL GROUP, INC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:76c76867-8296-4a32-8641-feff9444916b",
- "resource": {
- "resourceType": "Condition",
- "id": "76c76867-8296-4a32-8641-feff9444916b",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:75a03b6e-a813-4db5-a2ec-ae89934784c0"
- },
- "onsetDateTime": "2014-03-29T16:57:25-04:00",
- "abatementDateTime": "2014-04-05T16:57:25-04:00",
- "recordedDate": "2014-03-29T16:57:25-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:1a299201-1bec-4c0f-a8b4-4932e9f52164",
- "resource": {
- "resourceType": "Observation",
- "id": "1a299201-1bec-4c0f-a8b4-4932e9f52164",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8331-1",
- "display": "Oral temperature"
- }
- ],
- "text": "Oral temperature"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:75a03b6e-a813-4db5-a2ec-ae89934784c0"
- },
- "effectiveDateTime": "2014-03-29T16:57:25-04:00",
- "issued": "2014-03-29T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 37.6779672286669,
- "unit": "Cel",
- "system": "http://unitsofmeasure.org",
- "code": "Cel"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:23c2cfac-024d-4319-893f-4689b7270cd4",
- "resource": {
- "resourceType": "Procedure",
- "id": "23c2cfac-024d-4319-893f-4689b7270cd4",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117015009",
- "display": "Throat culture (procedure)"
- }
- ],
- "text": "Throat culture (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:75a03b6e-a813-4db5-a2ec-ae89934784c0"
- },
- "performedPeriod": {
- "start": "2014-03-29T16:57:25-04:00",
- "end": "2014-03-29T17:12:25-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:9b372323-4807-45d1-ab43-abbf720fb34e",
- "display": "Acute viral pharyngitis (disorder)"
- },
- {
- "reference": "urn:uuid:76c76867-8296-4a32-8641-feff9444916b",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:ce4dc224-9499-40fe-a8d3-eb5fc7ccdbe6",
- "resource": {
- "resourceType": "Claim",
- "id": "ce4dc224-9499-40fe-a8d3-eb5fc7ccdbe6",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Carl856 Powlowski563"
- },
- "billablePeriod": {
- "start": "2014-03-29T16:57:25-04:00",
- "end": "2014-03-29T17:27:25-04:00"
- },
- "created": "2014-03-29T17:27:25-04:00",
- "provider": {
- "reference": "urn:uuid:23834663-ed53-3da9-b330-d6e1ecb8428e",
- "display": "SOUTHCOAST HOSPITAL GROUP, INC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:76c76867-8296-4a32-8641-feff9444916b"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:23c2cfac-024d-4319-893f-4689b7270cd4"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:75a03b6e-a813-4db5-a2ec-ae89934784c0"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117015009",
- "display": "Throat culture (procedure)"
- }
- ],
- "text": "Throat culture (procedure)"
- },
- "net": {
- "value": 2694.66,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:87338bb3-db3b-4805-abf9-a64468cc077e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "87338bb3-db3b-4805-abf9-a64468cc077e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Cigna Health"
- },
- "beneficiary": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "payor": [
- {
- "display": "Cigna Health"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ce4dc224-9499-40fe-a8d3-eb5fc7ccdbe6"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "billablePeriod": {
- "start": "2014-03-29T17:27:25-04:00",
- "end": "2015-03-29T17:27:25-04:00"
- },
- "created": "2014-03-29T17:27:25-04:00",
- "insurer": {
- "display": "Cigna Health"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ce4dc224-9499-40fe-a8d3-eb5fc7ccdbe6"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:76c76867-8296-4a32-8641-feff9444916b"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2014-03-29T16:57:25-04:00",
- "end": "2014-03-29T17:27:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:75a03b6e-a813-4db5-a2ec-ae89934784c0"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "195662009",
- "display": "Acute viral pharyngitis (disorder)"
- }
- ],
- "text": "Acute viral pharyngitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2014-03-29T16:57:25-04:00",
- "end": "2014-03-29T17:27:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117015009",
- "display": "Throat culture (procedure)"
- }
- ],
- "text": "Throat culture (procedure)"
- },
- "servicedPeriod": {
- "start": "2014-03-29T16:57:25-04:00",
- "end": "2014-03-29T17:27:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2694.66,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 538.932,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2155.728,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2694.66,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2694.66,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2155.728,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d",
- "resource": {
- "resourceType": "Encounter",
- "id": "2a5677b4-8fe2-4260-8a60-58027023570d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Mr. Carl856 Powlowski563"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a",
- "display": "Dr. Oliver401 Barton704"
- }
- }
- ],
- "period": {
- "start": "2014-05-03T16:57:25-04:00",
- "end": "2014-05-03T17:27:25-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:56cec282-a85e-48b5-87b3-48541f2ce6ec",
- "resource": {
- "resourceType": "Observation",
- "id": "56cec282-a85e-48b5-87b3-48541f2ce6ec",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 178.7353143290962,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3dde9eed-3314-4878-bba9-829cbda0443d",
- "resource": {
- "resourceType": "Observation",
- "id": "3dde9eed-3314-4878-bba9-829cbda0443d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 0.9871231343920694,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d76adc7e-903b-47a7-9bfb-c1fb16f7341a",
- "resource": {
- "resourceType": "Observation",
- "id": "d76adc7e-903b-47a7-9bfb-c1fb16f7341a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 91.52922065304352,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6a6afda1-6167-43e4-b86a-03313c7c9f13",
- "resource": {
- "resourceType": "Observation",
- "id": "6a6afda1-6167-43e4-b86a-03313c7c9f13",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 28.650950058788776,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c0a373af-8eff-42a8-a6c6-926ee43c08f1",
- "resource": {
- "resourceType": "Observation",
- "id": "c0a373af-8eff-42a8-a6c6-926ee43c08f1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 73.93147612737685,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 110.6395063316007,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6025eee2-da58-4ac6-83bb-4c909550dda9",
- "resource": {
- "resourceType": "Observation",
- "id": "6025eee2-da58-4ac6-83bb-4c909550dda9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 92.16264636306471,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:468c05e0-df0e-435c-8649-c7fdbdd4073c",
- "resource": {
- "resourceType": "Observation",
- "id": "468c05e0-df0e-435c-8649-c7fdbdd4073c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 10.485218149105586,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2b9e88ba-9b31-4e7e-abaf-5d94d24d9f7f",
- "resource": {
- "resourceType": "Observation",
- "id": "2b9e88ba-9b31-4e7e-abaf-5d94d24d9f7f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 1.3475135262809186,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6449c90e-e9a0-42a3-bc52-791289d22d3e",
- "resource": {
- "resourceType": "Observation",
- "id": "6449c90e-e9a0-42a3-bc52-791289d22d3e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 9.532408751351873,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5464b932-76e8-4f74-bb06-2553afbc430f",
- "resource": {
- "resourceType": "Observation",
- "id": "5464b932-76e8-4f74-bb06-2553afbc430f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 143.19646007262028,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:da07715b-1fe1-464a-8092-e98857926aca",
- "resource": {
- "resourceType": "Observation",
- "id": "da07715b-1fe1-464a-8092-e98857926aca",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 4.2363601125600825,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d1c23664-ffd4-4ae9-802a-fbf427545689",
- "resource": {
- "resourceType": "Observation",
- "id": "d1c23664-ffd4-4ae9-802a-fbf427545689",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 105.70243507320433,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:96777197-ad09-432d-823e-65836db298de",
- "resource": {
- "resourceType": "Observation",
- "id": "96777197-ad09-432d-823e-65836db298de",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 25.497893372230624,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:728cd7f0-f008-4cd3-831c-13e9a52c658e",
- "resource": {
- "resourceType": "Observation",
- "id": "728cd7f0-f008-4cd3-831c-13e9a52c658e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 165.75470467310424,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9c9a1ba7-1bb8-4800-8875-4f48e1deca06",
- "resource": {
- "resourceType": "Observation",
- "id": "9c9a1ba7-1bb8-4800-8875-4f48e1deca06",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 104.75515951927771,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fd7380df-c07f-4d4d-a8ee-9940cfae5fa9",
- "resource": {
- "resourceType": "Observation",
- "id": "fd7380df-c07f-4d4d-a8ee-9940cfae5fa9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 80.11431028403805,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9b7282c3-e1ec-43d7-aacf-a814912b05ce",
- "resource": {
- "resourceType": "Observation",
- "id": "9b7282c3-e1ec-43d7-aacf-a814912b05ce",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 64.68936248521064,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0ee0dcba-34fd-448d-889b-85371ab6a469",
- "resource": {
- "resourceType": "Observation",
- "id": "0ee0dcba-34fd-448d-889b-85371ab6a469",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 10.08057596443777,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cf1a451a-148e-4a13-99fd-f1ef935eed20",
- "resource": {
- "resourceType": "Observation",
- "id": "cf1a451a-148e-4a13-99fd-f1ef935eed20",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 4.707292398238766,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5a5d46e4-59aa-440b-8ff0-135b32346742",
- "resource": {
- "resourceType": "Observation",
- "id": "5a5d46e4-59aa-440b-8ff0-135b32346742",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 12.09958879230927,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e38eac47-3958-4604-9752-2a7ca9068806",
- "resource": {
- "resourceType": "Observation",
- "id": "e38eac47-3958-4604-9752-2a7ca9068806",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 38.80187917695186,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c6f43589-bb75-44db-a324-9c86e9b9fdb1",
- "resource": {
- "resourceType": "Observation",
- "id": "c6f43589-bb75-44db-a324-9c86e9b9fdb1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 82.06005232174539,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:090716b7-fe77-4d63-a34e-e320e70ab6dc",
- "resource": {
- "resourceType": "Observation",
- "id": "090716b7-fe77-4d63-a34e-e320e70ab6dc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 32.6500154016899,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c27f43ab-e3c7-4040-98eb-ce8e2fafbece",
- "resource": {
- "resourceType": "Observation",
- "id": "c27f43ab-e3c7-4040-98eb-ce8e2fafbece",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 35.062118966547224,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5d40caeb-dc07-4540-9f77-bc08d6cfa420",
- "resource": {
- "resourceType": "Observation",
- "id": "5d40caeb-dc07-4540-9f77-bc08d6cfa420",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 42.14163804968886,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fb06b0d5-8d27-4f3c-9cf3-474a085bea9b",
- "resource": {
- "resourceType": "Observation",
- "id": "fb06b0d5-8d27-4f3c-9cf3-474a085bea9b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 211.97799659518466,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5b5ac659-7b20-4a68-85cb-b19bf2815a1c",
- "resource": {
- "resourceType": "Observation",
- "id": "5b5ac659-7b20-4a68-85cb-b19bf2815a1c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 207.2191532435461,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d191b57c-a5aa-4fe3-ab2b-5362674c281d",
- "resource": {
- "resourceType": "Observation",
- "id": "d191b57c-a5aa-4fe3-ab2b-5362674c281d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 11.64099613103959,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:db363d74-fb41-4a3b-b292-7104085b5ed1",
- "resource": {
- "resourceType": "Observation",
- "id": "db363d74-fb41-4a3b-b292-7104085b5ed1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f9148db8-49fe-40cf-bcd0-a06d4d05c99f",
- "resource": {
- "resourceType": "Observation",
- "id": "f9148db8-49fe-40cf-bcd0-a06d4d05c99f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 5.99184622658906,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1d1e1aa7-5211-46ec-b6be-9e5edbd92580",
- "resource": {
- "resourceType": "Procedure",
- "id": "1d1e1aa7-5211-46ec-b6be-9e5edbd92580",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "performedPeriod": {
- "start": "2014-05-03T16:57:25-04:00",
- "end": "2014-05-03T17:12:25-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:ee5f2c5c-cc8f-4b0e-aa14-a14100e62386",
- "resource": {
- "resourceType": "Immunization",
- "id": "ee5f2c5c-cc8f-4b0e-aa14-a14100e62386",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "occurrenceDateTime": "2014-05-03T16:57:25-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:22d9ee12-71c3-4298-bddf-e4ea7544e341",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "22d9ee12-71c3-4298-bddf-e4ea7544e341",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "result": [
- {
- "reference": "urn:uuid:6025eee2-da58-4ac6-83bb-4c909550dda9",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:468c05e0-df0e-435c-8649-c7fdbdd4073c",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:2b9e88ba-9b31-4e7e-abaf-5d94d24d9f7f",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:6449c90e-e9a0-42a3-bc52-791289d22d3e",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:5464b932-76e8-4f74-bb06-2553afbc430f",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:da07715b-1fe1-464a-8092-e98857926aca",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:d1c23664-ffd4-4ae9-802a-fbf427545689",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:96777197-ad09-432d-823e-65836db298de",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:0586681e-e72a-4421-ab7d-b42c07cb594a",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "0586681e-e72a-4421-ab7d-b42c07cb594a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "result": [
- {
- "reference": "urn:uuid:728cd7f0-f008-4cd3-831c-13e9a52c658e",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:9c9a1ba7-1bb8-4800-8875-4f48e1deca06",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:fd7380df-c07f-4d4d-a8ee-9940cfae5fa9",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:9b7282c3-e1ec-43d7-aacf-a814912b05ce",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:bd5aba70-f059-494f-b8f9-1b7470f10137",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "bd5aba70-f059-494f-b8f9-1b7470f10137",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- },
- "effectiveDateTime": "2014-05-03T16:57:25-04:00",
- "issued": "2014-05-03T16:57:25.993-04:00",
- "result": [
- {
- "reference": "urn:uuid:0ee0dcba-34fd-448d-889b-85371ab6a469",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:cf1a451a-148e-4a13-99fd-f1ef935eed20",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:5a5d46e4-59aa-440b-8ff0-135b32346742",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:e38eac47-3958-4604-9752-2a7ca9068806",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:c6f43589-bb75-44db-a324-9c86e9b9fdb1",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:090716b7-fe77-4d63-a34e-e320e70ab6dc",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:c27f43ab-e3c7-4040-98eb-ce8e2fafbece",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:5d40caeb-dc07-4540-9f77-bc08d6cfa420",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:fb06b0d5-8d27-4f3c-9cf3-474a085bea9b",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:5b5ac659-7b20-4a68-85cb-b19bf2815a1c",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:d191b57c-a5aa-4fe3-ab2b-5362674c281d",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:e104dd7c-5a5b-4a87-8a7b-8961f4cd8d9e",
- "resource": {
- "resourceType": "Claim",
- "id": "e104dd7c-5a5b-4a87-8a7b-8961f4cd8d9e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Carl856 Powlowski563"
- },
- "billablePeriod": {
- "start": "2014-05-03T16:57:25-04:00",
- "end": "2014-05-03T17:27:25-04:00"
- },
- "created": "2014-05-03T17:27:25-04:00",
- "provider": {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:ee5f2c5c-cc8f-4b0e-aa14-a14100e62386"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:1d1e1aa7-5211-46ec-b6be-9e5edbd92580"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 463.63,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:8cd2fb2d-cfd6-4465-a85a-e50b9007a98a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "8cd2fb2d-cfd6-4465-a85a-e50b9007a98a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Cigna Health"
- },
- "beneficiary": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "payor": [
- {
- "display": "Cigna Health"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "e104dd7c-5a5b-4a87-8a7b-8961f4cd8d9e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "billablePeriod": {
- "start": "2014-05-03T17:27:25-04:00",
- "end": "2015-05-03T17:27:25-04:00"
- },
- "created": "2014-05-03T17:27:25-04:00",
- "insurer": {
- "display": "Cigna Health"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:e104dd7c-5a5b-4a87-8a7b-8961f4cd8d9e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2014-05-03T16:57:25-04:00",
- "end": "2014-05-03T17:27:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:2a5677b4-8fe2-4260-8a60-58027023570d"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2014-05-03T16:57:25-04:00",
- "end": "2014-05-03T17:27:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2014-05-03T16:57:25-04:00",
- "end": "2014-05-03T17:27:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 463.63,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 92.726,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 370.904,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 463.63,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 463.63,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 483.32,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f",
- "resource": {
- "resourceType": "Encounter",
- "id": "d8e715b6-e126-4e0f-86d2-7fa7c8173e4f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Mr. Carl856 Powlowski563"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a",
- "display": "Dr. Oliver401 Barton704"
- }
- }
- ],
- "period": {
- "start": "2017-05-06T16:57:25-04:00",
- "end": "2017-05-06T17:27:25-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:6a95de6b-2ef3-4aeb-a6d0-ba94f63a01fa",
- "resource": {
- "resourceType": "Observation",
- "id": "6a95de6b-2ef3-4aeb-a6d0-ba94f63a01fa",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 178.7353143290962,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:32fb2eeb-1a53-49e4-8905-8231b459dc92",
- "resource": {
- "resourceType": "Observation",
- "id": "32fb2eeb-1a53-49e4-8905-8231b459dc92",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 3.603833096478771,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:331683de-fbd2-46d4-bd61-5882194fefd7",
- "resource": {
- "resourceType": "Observation",
- "id": "331683de-fbd2-46d4-bd61-5882194fefd7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 94.21788529059074,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5006f144-88b1-42a8-a83a-35761569f151",
- "resource": {
- "resourceType": "Observation",
- "id": "5006f144-88b1-42a8-a83a-35761569f151",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 29.4925697700196,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f7337d2e-d516-4d83-8566-4ab86a670e5d",
- "resource": {
- "resourceType": "Observation",
- "id": "f7337d2e-d516-4d83-8566-4ab86a670e5d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 80.44062275247526,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 121.31993644485402,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ff7fe736-383e-497b-a3e9-962182fd3eca",
- "resource": {
- "resourceType": "Observation",
- "id": "ff7fe736-383e-497b-a3e9-962182fd3eca",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 77.13164834948462,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a9c98e9a-692f-4590-9129-f2916f94ed19",
- "resource": {
- "resourceType": "Observation",
- "id": "a9c98e9a-692f-4590-9129-f2916f94ed19",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 18.516947597821883,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e7416e84-e78e-49af-9a56-59007888a422",
- "resource": {
- "resourceType": "Observation",
- "id": "e7416e84-e78e-49af-9a56-59007888a422",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 1.350269711659861,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3bf20e72-a7f6-4ac5-8446-e9fa8fb0c75b",
- "resource": {
- "resourceType": "Observation",
- "id": "3bf20e72-a7f6-4ac5-8446-e9fa8fb0c75b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 8.672419877373073,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:88700b61-5582-43f7-8e5c-09dabcabeb3f",
- "resource": {
- "resourceType": "Observation",
- "id": "88700b61-5582-43f7-8e5c-09dabcabeb3f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 143.0152538217014,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:aaa7c95a-d6a9-4dde-b030-44da8e46fad6",
- "resource": {
- "resourceType": "Observation",
- "id": "aaa7c95a-d6a9-4dde-b030-44da8e46fad6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 4.989553624534274,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:56f71e47-34ec-48da-8ed9-e9864a806cb7",
- "resource": {
- "resourceType": "Observation",
- "id": "56f71e47-34ec-48da-8ed9-e9864a806cb7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 102.10119781529866,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:56cc0c10-c8e2-49c3-89c8-100effaf9c55",
- "resource": {
- "resourceType": "Observation",
- "id": "56cc0c10-c8e2-49c3-89c8-100effaf9c55",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 26.175321728421714,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c1d0b110-3b1c-4363-928e-1cbccca2e3f4",
- "resource": {
- "resourceType": "Observation",
- "id": "c1d0b110-3b1c-4363-928e-1cbccca2e3f4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 163.15259236356863,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:13778c65-5f53-4a55-bc9b-a5d07f4e1c6a",
- "resource": {
- "resourceType": "Observation",
- "id": "13778c65-5f53-4a55-bc9b-a5d07f4e1c6a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 108.68588745197539,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:29d109dd-64f3-445d-be1d-c5ab2b8401e7",
- "resource": {
- "resourceType": "Observation",
- "id": "29d109dd-64f3-445d-be1d-c5ab2b8401e7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 72.37559057519488,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:846c84bd-1a26-45fa-8ba0-da70f589d075",
- "resource": {
- "resourceType": "Observation",
- "id": "846c84bd-1a26-45fa-8ba0-da70f589d075",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 69.03982429797867,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7cb9d995-15bf-40b7-b9a8-82a618b1fd99",
- "resource": {
- "resourceType": "Observation",
- "id": "7cb9d995-15bf-40b7-b9a8-82a618b1fd99",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b4c04d5d-471f-4502-9d8a-5034bcadaf2a",
- "resource": {
- "resourceType": "Observation",
- "id": "b4c04d5d-471f-4502-9d8a-5034bcadaf2a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "valueQuantity": {
- "value": 6.396734590411282,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:71b0c5b7-cacf-40db-9cb2-2f6f5fe649ea",
- "resource": {
- "resourceType": "Procedure",
- "id": "71b0c5b7-cacf-40db-9cb2-2f6f5fe649ea",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "performedPeriod": {
- "start": "2017-05-06T16:57:25-04:00",
- "end": "2017-05-06T17:12:25-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:2cca95db-3a55-4e26-8898-00374008ec41",
- "resource": {
- "resourceType": "Immunization",
- "id": "2cca95db-3a55-4e26-8898-00374008ec41",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "occurrenceDateTime": "2017-05-06T16:57:25-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:c466bb38-7231-4e8d-a68a-d38419f24c10",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "c466bb38-7231-4e8d-a68a-d38419f24c10",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "result": [
- {
- "reference": "urn:uuid:ff7fe736-383e-497b-a3e9-962182fd3eca",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:a9c98e9a-692f-4590-9129-f2916f94ed19",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:e7416e84-e78e-49af-9a56-59007888a422",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:3bf20e72-a7f6-4ac5-8446-e9fa8fb0c75b",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:88700b61-5582-43f7-8e5c-09dabcabeb3f",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:aaa7c95a-d6a9-4dde-b030-44da8e46fad6",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:56f71e47-34ec-48da-8ed9-e9864a806cb7",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:56cc0c10-c8e2-49c3-89c8-100effaf9c55",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:547c3b6b-daf5-479e-8cc5-49f242377054",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "547c3b6b-daf5-479e-8cc5-49f242377054",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- },
- "effectiveDateTime": "2017-05-06T16:57:25-04:00",
- "issued": "2017-05-06T16:57:25.993-04:00",
- "result": [
- {
- "reference": "urn:uuid:c1d0b110-3b1c-4363-928e-1cbccca2e3f4",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:13778c65-5f53-4a55-bc9b-a5d07f4e1c6a",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:29d109dd-64f3-445d-be1d-c5ab2b8401e7",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:846c84bd-1a26-45fa-8ba0-da70f589d075",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:5e03f5c9-9a5d-4aef-bed6-c00ee40d0647",
- "resource": {
- "resourceType": "Claim",
- "id": "5e03f5c9-9a5d-4aef-bed6-c00ee40d0647",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Carl856 Powlowski563"
- },
- "billablePeriod": {
- "start": "2017-05-06T16:57:25-04:00",
- "end": "2017-05-06T17:27:25-04:00"
- },
- "created": "2017-05-06T17:27:25-04:00",
- "provider": {
- "reference": "urn:uuid:7a0b9372-1373-333a-9846-0e6c0030ba45",
- "display": "PCP17971"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:2cca95db-3a55-4e26-8898-00374008ec41"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:71b0c5b7-cacf-40db-9cb2-2f6f5fe649ea"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 573.41,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:6fb4e8d4-79ab-4901-8a01-d1059a4e61c3",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "6fb4e8d4-79ab-4901-8a01-d1059a4e61c3",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Cigna Health"
- },
- "beneficiary": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "payor": [
- {
- "display": "Cigna Health"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5e03f5c9-9a5d-4aef-bed6-c00ee40d0647"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "billablePeriod": {
- "start": "2017-05-06T17:27:25-04:00",
- "end": "2018-05-06T17:27:25-04:00"
- },
- "created": "2017-05-06T17:27:25-04:00",
- "insurer": {
- "display": "Cigna Health"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5e03f5c9-9a5d-4aef-bed6-c00ee40d0647"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000302a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-05-06T16:57:25-04:00",
- "end": "2017-05-06T17:27:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:d8e715b6-e126-4e0f-86d2-7fa7c8173e4f"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2017-05-06T16:57:25-04:00",
- "end": "2017-05-06T17:27:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-05-06T16:57:25-04:00",
- "end": "2017-05-06T17:27:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 573.41,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 114.682,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 458.728,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 573.41,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 573.41,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 571.144,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:dd6bef93-e771-4ee6-a997-a115d7477a46",
- "resource": {
- "resourceType": "Encounter",
- "id": "dd6bef93-e771-4ee6-a997-a115d7477a46",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Mr. Carl856 Powlowski563"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c",
- "display": "Dr. Cara845 Ruecker817"
- }
- }
- ],
- "period": {
- "start": "2017-08-30T16:57:25-04:00",
- "end": "2017-08-30T17:12:25-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:23834663-ed53-3da9-b330-d6e1ecb8428e",
- "display": "SOUTHCOAST HOSPITAL GROUP, INC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d6f70081-cce5-4de8-9f39-c2ee5f0cb1f1",
- "resource": {
- "resourceType": "Condition",
- "id": "d6f70081-cce5-4de8-9f39-c2ee5f0cb1f1",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "encounter": {
- "reference": "urn:uuid:dd6bef93-e771-4ee6-a997-a115d7477a46"
- },
- "onsetDateTime": "2017-08-30T16:57:25-04:00",
- "abatementDateTime": "2017-09-13T16:57:25-04:00",
- "recordedDate": "2017-08-30T16:57:25-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:21e073a9-69a8-4e68-8581-42e14f3ea109",
- "resource": {
- "resourceType": "Claim",
- "id": "21e073a9-69a8-4e68-8581-42e14f3ea109",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd",
- "display": "Carl856 Powlowski563"
- },
- "billablePeriod": {
- "start": "2017-08-30T16:57:25-04:00",
- "end": "2017-08-30T17:12:25-04:00"
- },
- "created": "2017-08-30T17:12:25-04:00",
- "provider": {
- "reference": "urn:uuid:23834663-ed53-3da9-b330-d6e1ecb8428e",
- "display": "SOUTHCOAST HOSPITAL GROUP, INC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:d6f70081-cce5-4de8-9f39-c2ee5f0cb1f1"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:dd6bef93-e771-4ee6-a997-a115d7477a46"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:6cf58663-1640-4490-9d5b-c9f02e28cb9b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "6cf58663-1640-4490-9d5b-c9f02e28cb9b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Cigna Health"
- },
- "beneficiary": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "payor": [
- {
- "display": "Cigna Health"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "21e073a9-69a8-4e68-8581-42e14f3ea109"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:10c09023-42cd-4ed8-9055-09bf6120c7dd"
- },
- "billablePeriod": {
- "start": "2017-08-30T17:12:25-04:00",
- "end": "2018-08-30T17:12:25-04:00"
- },
- "created": "2017-08-30T17:12:25-04:00",
- "insurer": {
- "display": "Cigna Health"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:21e073a9-69a8-4e68-8581-42e14f3ea109"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000012c"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:d6f70081-cce5-4de8-9f39-c2ee5f0cb1f1"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2017-08-30T16:57:25-04:00",
- "end": "2017-08-30T17:12:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:dd6bef93-e771-4ee6-a997-a115d7477a46"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2017-08-30T16:57:25-04:00",
- "end": "2017-08-30T17:12:25-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- }
- ]
-}
diff --git a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Christia477_Hermann103_3815b8af-23b0-45b7-ba24-235307622f15.json b/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Christia477_Hermann103_3815b8af-23b0-45b7-ba24-235307622f15.json
deleted file mode 100644
index 89f2830b..00000000
--- a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Christia477_Hermann103_3815b8af-23b0-45b7-ba24-235307622f15.json
+++ /dev/null
@@ -1,33242 +0,0 @@
-{
- "resourceType": "Bundle",
- "type": "transaction",
- "entry": [
- {
- "fullUrl": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "resource": {
- "resourceType": "Patient",
- "id": "73f076b2-64d5-4135-a4e5-1af0d338af59",
- "text": {
- "status": "generated",
- "div": "Generated by
Synthea.Version identifier: v2.4.0-404-ge7ce2295\n . Person seed: 5245364836250954000 Population seed: 0
"
- },
- "extension": [
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2106-3",
- "display": "White"
- }
- },
- {
- "url": "text",
- "valueString": "White"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
- }
- },
- {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
- "valueString": "Patsy569 Frami345"
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
- "valueCode": "F"
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
- "valueAddress": {
- "city": "Shrewsbury",
- "state": "Massachusetts",
- "country": "US"
- }
- },
- {
- "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
- "valueDecimal": 3.455251540539983
- },
- {
- "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
- "valueDecimal": 46.54474845946002
- }
- ],
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "3815b8af-23b0-45b7-ba24-235307622f15"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "MR",
- "display": "Medical Record Number"
- }
- ],
- "text": "Medical Record Number"
- },
- "system": "http://hospital.smarthealthit.org",
- "value": "3815b8af-23b0-45b7-ba24-235307622f15"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "SS",
- "display": "Social Security Number"
- }
- ],
- "text": "Social Security Number"
- },
- "system": "http://hl7.org/fhir/sid/us-ssn",
- "value": "999-54-2474"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "DL",
- "display": "Driver's License"
- }
- ],
- "text": "Driver's License"
- },
- "system": "urn:oid:2.16.840.1.113883.4.3.25",
- "value": "S99979106"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PPN",
- "display": "Passport Number"
- }
- ],
- "text": "Passport Number"
- },
- "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber",
- "value": "X39388045X"
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "Hermann103",
- "given": [
- "Christia477"
- ],
- "prefix": [
- "Ms."
- ]
- }
- ],
- "telecom": [
- {
- "system": "phone",
- "value": "555-672-5641",
- "use": "home"
- }
- ],
- "gender": "female",
- "birthDate": "1968-07-27",
- "address": [
- {
- "extension": [
- {
- "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
- "extension": [
- {
- "url": "latitude",
- "valueDecimal": 42.515263260635024
- },
- {
- "url": "longitude",
- "valueDecimal": -71.04793945593927
- }
- ]
- }
- ],
- "line": [
- "177 Kozey Mill Apt 64"
- ],
- "city": "Everett",
- "state": "Massachusetts",
- "postalCode": "02148",
- "country": "US"
- }
- ],
- "maritalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
- "code": "S",
- "display": "S"
- }
- ],
- "text": "S"
- },
- "multipleBirthBoolean": false,
- "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English"
- }
- ],
- "text": "English"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Patient"
- }
- },
- {
- "fullUrl": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "resource": {
- "resourceType": "Organization",
- "id": "d692e283-0833-3201-8e55-4f868a9c0736",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "d692e283-0833-3201-8e55-4f868a9c0736"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "HALLMARK HEALTH SYSTEM",
- "telecom": [
- {
- "system": "phone",
- "value": "7819793000"
- }
- ],
- "address": [
- {
- "line": [
- "585 LEBANON STREET"
- ],
- "city": "MELROSE",
- "state": "MA",
- "postalCode": "02176",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-00000000010e",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "270"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Jenkins714",
- "given": [
- "Renato359"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Renato359.Jenkins714@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "585 LEBANON STREET"
- ],
- "city": "MELROSE",
- "state": "MA",
- "postalCode": "02176",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:20c2b196-dd87-45ac-83e0-3a7d30db4a38",
- "resource": {
- "resourceType": "Encounter",
- "id": "20c2b196-dd87-45ac-83e0-3a7d30db4a38",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1997-03-29T17:17:21-05:00",
- "end": "1997-03-29T18:02:21-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2dfd355b-3d1e-4ceb-9bab-bcb2e9cc4cce",
- "resource": {
- "resourceType": "Condition",
- "id": "2dfd355b-3d1e-4ceb-9bab-bcb2e9cc4cce",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "19169002",
- "display": "Miscarriage in first trimester"
- }
- ],
- "text": "Miscarriage in first trimester"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:20c2b196-dd87-45ac-83e0-3a7d30db4a38"
- },
- "onsetDateTime": "1997-03-29T17:17:21-05:00",
- "recordedDate": "1997-03-29T17:17:21-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:009925e3-8b51-4364-bad8-b838801a4ab7",
- "resource": {
- "resourceType": "Claim",
- "id": "009925e3-8b51-4364-bad8-b838801a4ab7",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "1997-03-29T17:17:21-05:00",
- "end": "1997-03-29T18:02:21-05:00"
- },
- "created": "1997-03-29T18:02:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:2dfd355b-3d1e-4ceb-9bab-bcb2e9cc4cce"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:20c2b196-dd87-45ac-83e0-3a7d30db4a38"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "19169002",
- "display": "Miscarriage in first trimester"
- }
- ],
- "text": "Miscarriage in first trimester"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d98fcc71-7d8c-43e3-8085-1e3d9f5769a0",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d98fcc71-7d8c-43e3-8085-1e3d9f5769a0",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Cigna Health"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Cigna Health"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "009925e3-8b51-4364-bad8-b838801a4ab7"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "1997-03-29T18:02:21-05:00",
- "end": "1998-03-29T18:02:21-05:00"
- },
- "created": "1997-03-29T18:02:21-05:00",
- "insurer": {
- "display": "Cigna Health"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:009925e3-8b51-4364-bad8-b838801a4ab7"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:2dfd355b-3d1e-4ceb-9bab-bcb2e9cc4cce"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Cigna Health"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- },
- "servicedPeriod": {
- "start": "1997-03-29T17:17:21-05:00",
- "end": "1997-03-29T18:02:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:20c2b196-dd87-45ac-83e0-3a7d30db4a38"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "19169002",
- "display": "Miscarriage in first trimester"
- }
- ],
- "text": "Miscarriage in first trimester"
- },
- "servicedPeriod": {
- "start": "1997-03-29T17:17:21-05:00",
- "end": "1997-03-29T18:02:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8148ea40-09ab-40f1-b69c-856ad52cf711",
- "resource": {
- "resourceType": "Encounter",
- "id": "8148ea40-09ab-40f1-b69c-856ad52cf711",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2009-06-17T18:17:21-04:00",
- "end": "2009-06-17T18:32:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:8d606431-287a-49f3-9dcd-a01b87e29da7",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "8d606431-287a-49f3-9dcd-a01b87e29da7",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "751905",
- "display": "Trinessa 28 Day Pack"
- }
- ],
- "text": "Trinessa 28 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8148ea40-09ab-40f1-b69c-856ad52cf711"
- },
- "authoredOn": "2009-06-17T18:17:21-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:b9259850-9dd4-4737-b8e8-2a2f0af06bbb",
- "resource": {
- "resourceType": "Claim",
- "id": "b9259850-9dd4-4737-b8e8-2a2f0af06bbb",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2009-06-17T18:17:21-04:00",
- "end": "2009-06-17T18:32:21-04:00"
- },
- "created": "2009-06-17T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:8d606431-287a-49f3-9dcd-a01b87e29da7"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8148ea40-09ab-40f1-b69c-856ad52cf711"
- }
- ]
- }
- ],
- "total": {
- "value": 47.86,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d67425c7-1fc8-4b17-aa71-64a190fc9726",
- "resource": {
- "resourceType": "Claim",
- "id": "d67425c7-1fc8-4b17-aa71-64a190fc9726",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2009-06-17T18:17:21-04:00",
- "end": "2009-06-17T18:32:21-04:00"
- },
- "created": "2009-06-17T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8148ea40-09ab-40f1-b69c-856ad52cf711"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:64012288-ab31-48d5-bb46-63daa322ab42",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "64012288-ab31-48d5-bb46-63daa322ab42",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d67425c7-1fc8-4b17-aa71-64a190fc9726"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2009-06-17T18:32:21-04:00",
- "end": "2010-06-17T18:32:21-04:00"
- },
- "created": "2009-06-17T18:32:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d67425c7-1fc8-4b17-aa71-64a190fc9726"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2009-06-17T18:17:21-04:00",
- "end": "2009-06-17T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8148ea40-09ab-40f1-b69c-856ad52cf711"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:873a21d0-615e-4dff-8f33-29d54ef58b19",
- "resource": {
- "resourceType": "Encounter",
- "id": "873a21d0-615e-4dff-8f33-29d54ef58b19",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2009-10-17T18:17:21-04:00",
- "end": "2009-10-17T18:45:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:818a5f28-7f85-4e0d-a0aa-df3346e6a8e1",
- "resource": {
- "resourceType": "Procedure",
- "id": "818a5f28-7f85-4e0d-a0aa-df3346e6a8e1",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:873a21d0-615e-4dff-8f33-29d54ef58b19"
- },
- "performedPeriod": {
- "start": "2009-10-17T18:17:21-04:00",
- "end": "2009-10-17T18:30:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:17ae8361-0f9b-4cbd-9ada-d346e69bf1e4",
- "resource": {
- "resourceType": "Claim",
- "id": "17ae8361-0f9b-4cbd-9ada-d346e69bf1e4",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2009-10-17T18:17:21-04:00",
- "end": "2009-10-17T18:45:21-04:00"
- },
- "created": "2009-10-17T18:45:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:818a5f28-7f85-4e0d-a0aa-df3346e6a8e1"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:873a21d0-615e-4dff-8f33-29d54ef58b19"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2913.40,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:2103fbd8-e3ec-42d8-8160-07aa7c848b33",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "2103fbd8-e3ec-42d8-8160-07aa7c848b33",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "17ae8361-0f9b-4cbd-9ada-d346e69bf1e4"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2009-10-17T18:45:21-04:00",
- "end": "2010-10-17T18:45:21-04:00"
- },
- "created": "2009-10-17T18:45:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:17ae8361-0f9b-4cbd-9ada-d346e69bf1e4"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2009-10-17T18:17:21-04:00",
- "end": "2009-10-17T18:45:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:873a21d0-615e-4dff-8f33-29d54ef58b19"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2009-10-17T18:17:21-04:00",
- "end": "2009-10-17T18:45:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2913.40,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 582.6800000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2330.7200000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2913.40,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2913.40,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2330.7200000000003,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c02bc08c-5994-44b6-a94e-144d644163e6",
- "resource": {
- "resourceType": "Encounter",
- "id": "c02bc08c-5994-44b6-a94e-144d644163e6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2010-01-16T17:17:21-05:00",
- "end": "2010-01-16T17:48:21-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:85ab5372-3436-47f6-8894-ee7614d553dd",
- "resource": {
- "resourceType": "Procedure",
- "id": "85ab5372-3436-47f6-8894-ee7614d553dd",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:c02bc08c-5994-44b6-a94e-144d644163e6"
- },
- "performedPeriod": {
- "start": "2010-01-16T17:17:21-05:00",
- "end": "2010-01-16T17:33:21-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:3371d067-ac25-4c44-ac0d-8443d86444aa",
- "resource": {
- "resourceType": "Claim",
- "id": "3371d067-ac25-4c44-ac0d-8443d86444aa",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2010-01-16T17:17:21-05:00",
- "end": "2010-01-16T17:48:21-05:00"
- },
- "created": "2010-01-16T17:48:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:85ab5372-3436-47f6-8894-ee7614d553dd"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c02bc08c-5994-44b6-a94e-144d644163e6"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2465.03,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5dfbe02d-12e0-4d4b-ad7b-5f7b07c82c15",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5dfbe02d-12e0-4d4b-ad7b-5f7b07c82c15",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3371d067-ac25-4c44-ac0d-8443d86444aa"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2010-01-16T17:48:21-05:00",
- "end": "2011-01-16T17:48:21-05:00"
- },
- "created": "2010-01-16T17:48:21-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3371d067-ac25-4c44-ac0d-8443d86444aa"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2010-01-16T17:17:21-05:00",
- "end": "2010-01-16T17:48:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c02bc08c-5994-44b6-a94e-144d644163e6"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2010-01-16T17:17:21-05:00",
- "end": "2010-01-16T17:48:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2465.03,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 493.0060000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1972.0240000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2465.03,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2465.03,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1972.0240000000003,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:34fff63c-5321-468c-8db1-5f3bff396f4d",
- "resource": {
- "resourceType": "Encounter",
- "id": "34fff63c-5321-468c-8db1-5f3bff396f4d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2010-04-17T18:17:21-04:00",
- "end": "2010-04-17T18:50:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:6d5e0e50-f8d2-4b2e-a3a8-f9c8468fd400",
- "resource": {
- "resourceType": "Procedure",
- "id": "6d5e0e50-f8d2-4b2e-a3a8-f9c8468fd400",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:34fff63c-5321-468c-8db1-5f3bff396f4d"
- },
- "performedPeriod": {
- "start": "2010-04-17T18:17:21-04:00",
- "end": "2010-04-17T18:35:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:4efaf9f6-aba7-468e-81e5-2057e761b1bc",
- "resource": {
- "resourceType": "Claim",
- "id": "4efaf9f6-aba7-468e-81e5-2057e761b1bc",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2010-04-17T18:17:21-04:00",
- "end": "2010-04-17T18:50:21-04:00"
- },
- "created": "2010-04-17T18:50:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:6d5e0e50-f8d2-4b2e-a3a8-f9c8468fd400"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:34fff63c-5321-468c-8db1-5f3bff396f4d"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3338.34,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:dd3b7c22-ac98-42e0-873d-e80f4b820086",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "dd3b7c22-ac98-42e0-873d-e80f4b820086",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "4efaf9f6-aba7-468e-81e5-2057e761b1bc"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2010-04-17T18:50:21-04:00",
- "end": "2011-04-17T18:50:21-04:00"
- },
- "created": "2010-04-17T18:50:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:4efaf9f6-aba7-468e-81e5-2057e761b1bc"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2010-04-17T18:17:21-04:00",
- "end": "2010-04-17T18:50:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:34fff63c-5321-468c-8db1-5f3bff396f4d"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2010-04-17T18:17:21-04:00",
- "end": "2010-04-17T18:50:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3338.34,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 667.6680000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2670.6720000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3338.34,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3338.34,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2670.6720000000005,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:27e1b2ff-45a5-40d3-9f38-aba248d8326e",
- "resource": {
- "resourceType": "Encounter",
- "id": "27e1b2ff-45a5-40d3-9f38-aba248d8326e",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2010-06-12T18:17:21-04:00",
- "end": "2010-06-12T18:58:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:48ba19c9-d2d5-4437-a967-aaedb215eddd",
- "resource": {
- "resourceType": "Procedure",
- "id": "48ba19c9-d2d5-4437-a967-aaedb215eddd",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169553002",
- "display": "Insertion of subcutaneous contraceptive"
- }
- ],
- "text": "Insertion of subcutaneous contraceptive"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:27e1b2ff-45a5-40d3-9f38-aba248d8326e"
- },
- "performedPeriod": {
- "start": "2010-06-12T18:17:21-04:00",
- "end": "2010-06-12T18:43:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d1960b79-3e26-4736-a536-76c81cff76d8",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "d1960b79-3e26-4736-a536-76c81cff76d8",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "389221",
- "display": "Etonogestrel 68 MG Drug Implant"
- }
- ],
- "text": "Etonogestrel 68 MG Drug Implant"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:27e1b2ff-45a5-40d3-9f38-aba248d8326e"
- },
- "authoredOn": "2010-06-12T18:17:21-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:4bd8f6c9-3fac-4ebd-bbfc-4ed197803f13",
- "resource": {
- "resourceType": "Claim",
- "id": "4bd8f6c9-3fac-4ebd-bbfc-4ed197803f13",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2010-06-12T18:17:21-04:00",
- "end": "2010-06-12T18:58:21-04:00"
- },
- "created": "2010-06-12T18:58:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:d1960b79-3e26-4736-a536-76c81cff76d8"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:27e1b2ff-45a5-40d3-9f38-aba248d8326e"
- }
- ]
- }
- ],
- "total": {
- "value": 770.33,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:78ad8324-1793-4290-a039-ca74bf3b905e",
- "resource": {
- "resourceType": "Claim",
- "id": "78ad8324-1793-4290-a039-ca74bf3b905e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2010-06-12T18:17:21-04:00",
- "end": "2010-06-12T18:58:21-04:00"
- },
- "created": "2010-06-12T18:58:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:48ba19c9-d2d5-4437-a967-aaedb215eddd"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:27e1b2ff-45a5-40d3-9f38-aba248d8326e"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169553002",
- "display": "Insertion of subcutaneous contraceptive"
- }
- ],
- "text": "Insertion of subcutaneous contraceptive"
- },
- "net": {
- "value": 13319.28,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e0fe8764-2a0d-4a45-967c-484f1d796ca1",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "e0fe8764-2a0d-4a45-967c-484f1d796ca1",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "78ad8324-1793-4290-a039-ca74bf3b905e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2010-06-12T18:58:21-04:00",
- "end": "2011-06-12T18:58:21-04:00"
- },
- "created": "2010-06-12T18:58:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:78ad8324-1793-4290-a039-ca74bf3b905e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2010-06-12T18:17:21-04:00",
- "end": "2010-06-12T18:58:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:27e1b2ff-45a5-40d3-9f38-aba248d8326e"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169553002",
- "display": "Insertion of subcutaneous contraceptive"
- }
- ],
- "text": "Insertion of subcutaneous contraceptive"
- },
- "servicedPeriod": {
- "start": "2010-06-12T18:17:21-04:00",
- "end": "2010-06-12T18:58:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 13319.28,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2663.856,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 10655.424,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 13319.28,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 13319.28,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 10655.424,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:e9b72610-ad33-4d5a-8095-e39b664668a6",
- "resource": {
- "resourceType": "Encounter",
- "id": "e9b72610-ad33-4d5a-8095-e39b664668a6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2010-07-17T18:17:21-04:00",
- "end": "2010-07-17T18:45:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d61c2c11-31f8-4c53-b628-344a9fe16846",
- "resource": {
- "resourceType": "Procedure",
- "id": "d61c2c11-31f8-4c53-b628-344a9fe16846",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:e9b72610-ad33-4d5a-8095-e39b664668a6"
- },
- "performedPeriod": {
- "start": "2010-07-17T18:17:21-04:00",
- "end": "2010-07-17T18:30:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:5825638e-1cfb-4f79-bfad-813b3fe1ccd8",
- "resource": {
- "resourceType": "Claim",
- "id": "5825638e-1cfb-4f79-bfad-813b3fe1ccd8",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2010-07-17T18:17:21-04:00",
- "end": "2010-07-17T18:45:21-04:00"
- },
- "created": "2010-07-17T18:45:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:d61c2c11-31f8-4c53-b628-344a9fe16846"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e9b72610-ad33-4d5a-8095-e39b664668a6"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2354.59,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e9222f65-4769-4d74-baf5-d1459376e43b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "e9222f65-4769-4d74-baf5-d1459376e43b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5825638e-1cfb-4f79-bfad-813b3fe1ccd8"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2010-07-17T18:45:21-04:00",
- "end": "2011-07-17T18:45:21-04:00"
- },
- "created": "2010-07-17T18:45:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5825638e-1cfb-4f79-bfad-813b3fe1ccd8"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2010-07-17T18:17:21-04:00",
- "end": "2010-07-17T18:45:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:e9b72610-ad33-4d5a-8095-e39b664668a6"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2010-07-17T18:17:21-04:00",
- "end": "2010-07-17T18:45:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2354.59,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 470.91800000000006,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1883.6720000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2354.59,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2354.59,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1883.6720000000003,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "resource": {
- "resourceType": "Organization",
- "id": "207d191f-2b0f-31de-ab6a-52265042af59",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "207d191f-2b0f-31de-ab6a-52265042af59"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "PCP3850",
- "telecom": [
- {
- "system": "phone",
- "value": "781-932-0559"
- }
- ],
- "address": [
- {
- "line": [
- "1 W WATER ST"
- ],
- "city": "WAKEFIELD",
- "state": "MA",
- "postalCode": "01880-2930",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-000000000bf4",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "3060"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Zieme486",
- "given": [
- "Betty470"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Betty470.Zieme486@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "1 W WATER ST"
- ],
- "city": "WAKEFIELD",
- "state": "MA",
- "postalCode": "01880-2930",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5",
- "resource": {
- "resourceType": "Encounter",
- "id": "77140e4f-4011-4d7d-bec7-900cb92736c5",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4",
- "display": "Dr. Betty470 Zieme486"
- }
- }
- ],
- "period": {
- "start": "2010-08-07T18:17:21-04:00",
- "end": "2010-08-07T18:47:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b40dc578-4575-4c89-ba0b-fdaaab36d975",
- "resource": {
- "resourceType": "Observation",
- "id": "b40dc578-4575-4c89-ba0b-fdaaab36d975",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "effectiveDateTime": "2010-08-07T18:17:21-04:00",
- "issued": "2010-08-07T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 164.02997749587527,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:41564a99-ec1d-4033-bcd7-e03d6eb49e78",
- "resource": {
- "resourceType": "Observation",
- "id": "41564a99-ec1d-4033-bcd7-e03d6eb49e78",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "effectiveDateTime": "2010-08-07T18:17:21-04:00",
- "issued": "2010-08-07T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 1.027076506840681,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f9c178c8-8060-41cd-9d83-449901cec8ac",
- "resource": {
- "resourceType": "Observation",
- "id": "f9c178c8-8060-41cd-9d83-449901cec8ac",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "effectiveDateTime": "2010-08-07T18:17:21-04:00",
- "issued": "2010-08-07T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 80.35063909414073,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f2e6a61f-2e98-4b00-ae6e-fd636ac53536",
- "resource": {
- "resourceType": "Observation",
- "id": "f2e6a61f-2e98-4b00-ae6e-fd636ac53536",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "effectiveDateTime": "2010-08-07T18:17:21-04:00",
- "issued": "2010-08-07T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 29.863649844738887,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0d9856cf-7164-45f8-8756-b55a87c64920",
- "resource": {
- "resourceType": "Observation",
- "id": "0d9856cf-7164-45f8-8756-b55a87c64920",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "effectiveDateTime": "2010-08-07T18:17:21-04:00",
- "issued": "2010-08-07T18:17:21.160-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 75.6210391303191,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 129.06352134981756,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c2be0cb5-3273-40a8-84eb-168880f124fb",
- "resource": {
- "resourceType": "Observation",
- "id": "c2be0cb5-3273-40a8-84eb-168880f124fb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "effectiveDateTime": "2010-08-07T18:17:21-04:00",
- "issued": "2010-08-07T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 184.94870896418405,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:11f9f7d7-09a2-4e19-ac9c-89d62bd57d19",
- "resource": {
- "resourceType": "Observation",
- "id": "11f9f7d7-09a2-4e19-ac9c-89d62bd57d19",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "effectiveDateTime": "2010-08-07T18:17:21-04:00",
- "issued": "2010-08-07T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 121.06931398520913,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fd57e2bc-c3bc-40eb-a921-82c34b00238e",
- "resource": {
- "resourceType": "Observation",
- "id": "fd57e2bc-c3bc-40eb-a921-82c34b00238e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "effectiveDateTime": "2010-08-07T18:17:21-04:00",
- "issued": "2010-08-07T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 90.56566502725927,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f8fca6dc-8897-499a-9550-727ffbdd9e4a",
- "resource": {
- "resourceType": "Observation",
- "id": "f8fca6dc-8897-499a-9550-727ffbdd9e4a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "effectiveDateTime": "2010-08-07T18:17:21-04:00",
- "issued": "2010-08-07T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 70.16918113988295,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f5b2824e-abbf-4f59-a640-e7400cb00390",
- "resource": {
- "resourceType": "Observation",
- "id": "f5b2824e-abbf-4f59-a640-e7400cb00390",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "effectiveDateTime": "2010-08-07T18:17:21-04:00",
- "issued": "2010-08-07T18:17:21.160-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:987aa983-54d2-43a4-a81b-7b907eedb3bd",
- "resource": {
- "resourceType": "Procedure",
- "id": "987aa983-54d2-43a4-a81b-7b907eedb3bd",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "performedPeriod": {
- "start": "2010-08-07T18:17:21-04:00",
- "end": "2010-08-07T18:32:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:8088cdf0-5a54-4c8f-b1ca-38f6ffe17440",
- "resource": {
- "resourceType": "Immunization",
- "id": "8088cdf0-5a54-4c8f-b1ca-38f6ffe17440",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "occurrenceDateTime": "2010-08-07T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:d33218f6-2b57-45b3-91de-fbabcab5c76b",
- "resource": {
- "resourceType": "Immunization",
- "id": "d33218f6-2b57-45b3-91de-fbabcab5c76b",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "occurrenceDateTime": "2010-08-07T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:f4788f3e-a4fd-48c1-be66-bac377a4b12f",
- "resource": {
- "resourceType": "Immunization",
- "id": "f4788f3e-a4fd-48c1-be66-bac377a4b12f",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "52",
- "display": "Hep A, adult"
- }
- ],
- "text": "Hep A, adult"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "occurrenceDateTime": "2010-08-07T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:88a80b94-e21c-4842-ae29-cdcb5cc2c46e",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "88a80b94-e21c-4842-ae29-cdcb5cc2c46e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- },
- "effectiveDateTime": "2010-08-07T18:17:21-04:00",
- "issued": "2010-08-07T18:17:21.160-04:00",
- "result": [
- {
- "reference": "urn:uuid:c2be0cb5-3273-40a8-84eb-168880f124fb",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:11f9f7d7-09a2-4e19-ac9c-89d62bd57d19",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:fd57e2bc-c3bc-40eb-a921-82c34b00238e",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:f8fca6dc-8897-499a-9550-727ffbdd9e4a",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:3a342108-a2e7-46de-9eef-f6a58ad9a690",
- "resource": {
- "resourceType": "Claim",
- "id": "3a342108-a2e7-46de-9eef-f6a58ad9a690",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2010-08-07T18:17:21-04:00",
- "end": "2010-08-07T18:47:21-04:00"
- },
- "created": "2010-08-07T18:47:21-04:00",
- "provider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:8088cdf0-5a54-4c8f-b1ca-38f6ffe17440"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:d33218f6-2b57-45b3-91de-fbabcab5c76b"
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:f4788f3e-a4fd-48c1-be66-bac377a4b12f"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:987aa983-54d2-43a4-a81b-7b907eedb3bd"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "52",
- "display": "Hep A, adult"
- }
- ],
- "text": "Hep A, adult"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 529.58,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:65908fdf-49a6-45bd-942b-4f2f636cb006",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "65908fdf-49a6-45bd-942b-4f2f636cb006",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3a342108-a2e7-46de-9eef-f6a58ad9a690"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2010-08-07T18:47:21-04:00",
- "end": "2011-08-07T18:47:21-04:00"
- },
- "created": "2010-08-07T18:47:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3a342108-a2e7-46de-9eef-f6a58ad9a690"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-08-07T18:17:21-04:00",
- "end": "2010-08-07T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:77140e4f-4011-4d7d-bec7-900cb92736c5"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2010-08-07T18:17:21-04:00",
- "end": "2010-08-07T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "servicedPeriod": {
- "start": "2010-08-07T18:17:21-04:00",
- "end": "2010-08-07T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "52",
- "display": "Hep A, adult"
- }
- ],
- "text": "Hep A, adult"
- },
- "servicedPeriod": {
- "start": "2010-08-07T18:17:21-04:00",
- "end": "2010-08-07T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-08-07T18:17:21-04:00",
- "end": "2010-08-07T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 529.58,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 105.91600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 423.66400000000004,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 529.58,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 529.58,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 760.912,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:90dd8ffc-3761-46bb-afca-05b0c707c659",
- "resource": {
- "resourceType": "Encounter",
- "id": "90dd8ffc-3761-46bb-afca-05b0c707c659",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2010-08-28T18:17:21-04:00",
- "end": "2010-08-28T18:32:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:6eb1dc79-f8e9-4b3c-96b2-defae136a777",
- "resource": {
- "resourceType": "Immunization",
- "id": "6eb1dc79-f8e9-4b3c-96b2-defae136a777",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:90dd8ffc-3761-46bb-afca-05b0c707c659"
- },
- "occurrenceDateTime": "2010-08-28T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:b0f20590-c6f0-4b35-901c-1ff49bb68089",
- "resource": {
- "resourceType": "Claim",
- "id": "b0f20590-c6f0-4b35-901c-1ff49bb68089",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2010-08-28T18:17:21-04:00",
- "end": "2010-08-28T18:32:21-04:00"
- },
- "created": "2010-08-28T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:6eb1dc79-f8e9-4b3c-96b2-defae136a777"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:90dd8ffc-3761-46bb-afca-05b0c707c659"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f5eda532-fd79-4157-ae61-19258a473729",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f5eda532-fd79-4157-ae61-19258a473729",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b0f20590-c6f0-4b35-901c-1ff49bb68089"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2010-08-28T18:32:21-04:00",
- "end": "2011-08-28T18:32:21-04:00"
- },
- "created": "2010-08-28T18:32:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b0f20590-c6f0-4b35-901c-1ff49bb68089"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-08-28T18:17:21-04:00",
- "end": "2010-08-28T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:90dd8ffc-3761-46bb-afca-05b0c707c659"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2010-08-28T18:17:21-04:00",
- "end": "2010-08-28T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:7f160d4b-90f7-46c0-8f38-75e2e3110c19",
- "resource": {
- "resourceType": "Encounter",
- "id": "7f160d4b-90f7-46c0-8f38-75e2e3110c19",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2010-08-24T18:17:21-04:00",
- "end": "2010-08-24T18:32:21-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:341011a7-f2fa-4d34-89d1-e3d102bb858f",
- "resource": {
- "resourceType": "Condition",
- "id": "341011a7-f2fa-4d34-89d1-e3d102bb858f",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:7f160d4b-90f7-46c0-8f38-75e2e3110c19"
- },
- "onsetDateTime": "2010-08-24T18:17:21-04:00",
- "abatementDateTime": "2010-08-31T18:17:21-04:00",
- "recordedDate": "2010-08-24T18:17:21-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:ded0c105-a222-4df2-9767-ab86f8d5342a",
- "resource": {
- "resourceType": "Observation",
- "id": "ded0c105-a222-4df2-9767-ab86f8d5342a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:7f160d4b-90f7-46c0-8f38-75e2e3110c19"
- },
- "effectiveDateTime": "2010-08-28T18:17:21-04:00",
- "issued": "2010-08-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 164.02997749587527,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7d45e3f6-0830-4f23-98f8-438223ba5667",
- "resource": {
- "resourceType": "Observation",
- "id": "7d45e3f6-0830-4f23-98f8-438223ba5667",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:7f160d4b-90f7-46c0-8f38-75e2e3110c19"
- },
- "effectiveDateTime": "2010-08-28T18:17:21-04:00",
- "issued": "2010-08-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 2.886434682861256,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:599546c8-48ea-4306-ab4f-b77cd1b794d9",
- "resource": {
- "resourceType": "Observation",
- "id": "599546c8-48ea-4306-ab4f-b77cd1b794d9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:7f160d4b-90f7-46c0-8f38-75e2e3110c19"
- },
- "effectiveDateTime": "2010-08-28T18:17:21-04:00",
- "issued": "2010-08-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 80.46282264007381,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d3a7656d-0a79-4850-b9c5-1f93a3f416a6",
- "resource": {
- "resourceType": "Observation",
- "id": "d3a7656d-0a79-4850-b9c5-1f93a3f416a6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:7f160d4b-90f7-46c0-8f38-75e2e3110c19"
- },
- "effectiveDateTime": "2010-08-28T18:17:21-04:00",
- "issued": "2010-08-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 29.905344723234645,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:aef41ecb-1d15-4306-9eb0-10b95bd5bf6e",
- "resource": {
- "resourceType": "Observation",
- "id": "aef41ecb-1d15-4306-9eb0-10b95bd5bf6e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:7f160d4b-90f7-46c0-8f38-75e2e3110c19"
- },
- "effectiveDateTime": "2010-08-28T18:17:21-04:00",
- "issued": "2010-08-28T18:17:21.160-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 88.8102458766297,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 110.00425227065581,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f7861cc4-2a75-486f-a764-ebef2cd66582",
- "resource": {
- "resourceType": "Observation",
- "id": "f7861cc4-2a75-486f-a764-ebef2cd66582",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:7f160d4b-90f7-46c0-8f38-75e2e3110c19"
- },
- "effectiveDateTime": "2010-08-28T18:17:21-04:00",
- "issued": "2010-08-28T18:17:21.160-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fb958dd3-14c0-4a4f-aab1-1b8f86f63c6f",
- "resource": {
- "resourceType": "Procedure",
- "id": "fb958dd3-14c0-4a4f-aab1-1b8f86f63c6f",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:7f160d4b-90f7-46c0-8f38-75e2e3110c19"
- },
- "performedPeriod": {
- "start": "2010-08-28T18:17:21-04:00",
- "end": "2010-08-28T18:32:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d0e17d9f-1e22-4bad-a4af-f854abc90fd0",
- "resource": {
- "resourceType": "Claim",
- "id": "d0e17d9f-1e22-4bad-a4af-f854abc90fd0",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2010-08-24T18:17:21-04:00",
- "end": "2010-08-24T18:32:21-04:00"
- },
- "created": "2010-08-24T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:341011a7-f2fa-4d34-89d1-e3d102bb858f"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:fb958dd3-14c0-4a4f-aab1-1b8f86f63c6f"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:7f160d4b-90f7-46c0-8f38-75e2e3110c19"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 572.12,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:8be37a91-c045-40fd-aa7f-9510e292f479",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "8be37a91-c045-40fd-aa7f-9510e292f479",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d0e17d9f-1e22-4bad-a4af-f854abc90fd0"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2010-08-24T18:32:21-04:00",
- "end": "2011-08-24T18:32:21-04:00"
- },
- "created": "2010-08-24T18:32:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d0e17d9f-1e22-4bad-a4af-f854abc90fd0"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:341011a7-f2fa-4d34-89d1-e3d102bb858f"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2010-08-24T18:17:21-04:00",
- "end": "2010-08-24T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:7f160d4b-90f7-46c0-8f38-75e2e3110c19"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2010-08-24T18:17:21-04:00",
- "end": "2010-08-24T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-08-24T18:17:21-04:00",
- "end": "2010-08-24T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 572.12,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 114.424,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 457.696,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 572.12,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 572.12,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 457.696,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f7305f65-77f6-4a9b-87b8-ef61075662eb",
- "resource": {
- "resourceType": "Encounter",
- "id": "f7305f65-77f6-4a9b-87b8-ef61075662eb",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2010-10-16T18:17:21-04:00",
- "end": "2010-10-16T18:44:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:791e56fe-d2de-4b0a-bf7c-f4fd62cffea7",
- "resource": {
- "resourceType": "Procedure",
- "id": "791e56fe-d2de-4b0a-bf7c-f4fd62cffea7",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:f7305f65-77f6-4a9b-87b8-ef61075662eb"
- },
- "performedPeriod": {
- "start": "2010-10-16T18:17:21-04:00",
- "end": "2010-10-16T18:29:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:6ff36694-7c43-4f90-83c4-da62b41868cb",
- "resource": {
- "resourceType": "Claim",
- "id": "6ff36694-7c43-4f90-83c4-da62b41868cb",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2010-10-16T18:17:21-04:00",
- "end": "2010-10-16T18:44:21-04:00"
- },
- "created": "2010-10-16T18:44:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:791e56fe-d2de-4b0a-bf7c-f4fd62cffea7"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f7305f65-77f6-4a9b-87b8-ef61075662eb"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3308.17,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f4b8167c-c6e4-4873-a246-bfcc4d39c60d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f4b8167c-c6e4-4873-a246-bfcc4d39c60d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "6ff36694-7c43-4f90-83c4-da62b41868cb"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2010-10-16T18:44:21-04:00",
- "end": "2011-10-16T18:44:21-04:00"
- },
- "created": "2010-10-16T18:44:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:6ff36694-7c43-4f90-83c4-da62b41868cb"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2010-10-16T18:17:21-04:00",
- "end": "2010-10-16T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f7305f65-77f6-4a9b-87b8-ef61075662eb"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2010-10-16T18:17:21-04:00",
- "end": "2010-10-16T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3308.17,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 661.634,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2646.536,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3308.17,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3308.17,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2646.536,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3b56cf05-df90-43f9-9cd5-9b9d319b2961",
- "resource": {
- "resourceType": "Encounter",
- "id": "3b56cf05-df90-43f9-9cd5-9b9d319b2961",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2011-01-15T17:17:21-05:00",
- "end": "2011-01-15T17:46:21-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:e89c342c-e49e-4bc9-9241-f6b2148be89f",
- "resource": {
- "resourceType": "Procedure",
- "id": "e89c342c-e49e-4bc9-9241-f6b2148be89f",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:3b56cf05-df90-43f9-9cd5-9b9d319b2961"
- },
- "performedPeriod": {
- "start": "2011-01-15T17:17:21-05:00",
- "end": "2011-01-15T17:31:21-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:cce4eaf7-e2d5-43e5-828e-ce6b2ec174d5",
- "resource": {
- "resourceType": "Claim",
- "id": "cce4eaf7-e2d5-43e5-828e-ce6b2ec174d5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2011-01-15T17:17:21-05:00",
- "end": "2011-01-15T17:46:21-05:00"
- },
- "created": "2011-01-15T17:46:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:e89c342c-e49e-4bc9-9241-f6b2148be89f"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3b56cf05-df90-43f9-9cd5-9b9d319b2961"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3277.35,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3ef48f0f-cfbd-4074-b53a-2614d5788e70",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3ef48f0f-cfbd-4074-b53a-2614d5788e70",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "cce4eaf7-e2d5-43e5-828e-ce6b2ec174d5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2011-01-15T17:46:21-05:00",
- "end": "2012-01-15T17:46:21-05:00"
- },
- "created": "2011-01-15T17:46:21-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:cce4eaf7-e2d5-43e5-828e-ce6b2ec174d5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2011-01-15T17:17:21-05:00",
- "end": "2011-01-15T17:46:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3b56cf05-df90-43f9-9cd5-9b9d319b2961"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2011-01-15T17:17:21-05:00",
- "end": "2011-01-15T17:46:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3277.35,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 655.47,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2621.88,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3277.35,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3277.35,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2621.88,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:b95bb45f-8c9b-4d8c-bed8-3638415a5a14",
- "resource": {
- "resourceType": "Encounter",
- "id": "b95bb45f-8c9b-4d8c-bed8-3638415a5a14",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2011-04-16T18:17:21-04:00",
- "end": "2011-04-16T18:50:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:976752bb-564d-484d-84d5-aeefffebc52e",
- "resource": {
- "resourceType": "Procedure",
- "id": "976752bb-564d-484d-84d5-aeefffebc52e",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:b95bb45f-8c9b-4d8c-bed8-3638415a5a14"
- },
- "performedPeriod": {
- "start": "2011-04-16T18:17:21-04:00",
- "end": "2011-04-16T18:35:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:5e3053ea-b574-46d2-b701-6aeb12053202",
- "resource": {
- "resourceType": "Claim",
- "id": "5e3053ea-b574-46d2-b701-6aeb12053202",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2011-04-16T18:17:21-04:00",
- "end": "2011-04-16T18:50:21-04:00"
- },
- "created": "2011-04-16T18:50:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:976752bb-564d-484d-84d5-aeefffebc52e"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:b95bb45f-8c9b-4d8c-bed8-3638415a5a14"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2029.19,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5b07678a-4ab7-4b51-9c2e-96a590f75f24",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5b07678a-4ab7-4b51-9c2e-96a590f75f24",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5e3053ea-b574-46d2-b701-6aeb12053202"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2011-04-16T18:50:21-04:00",
- "end": "2012-04-16T18:50:21-04:00"
- },
- "created": "2011-04-16T18:50:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5e3053ea-b574-46d2-b701-6aeb12053202"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2011-04-16T18:17:21-04:00",
- "end": "2011-04-16T18:50:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:b95bb45f-8c9b-4d8c-bed8-3638415a5a14"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2011-04-16T18:17:21-04:00",
- "end": "2011-04-16T18:50:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2029.19,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 405.838,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1623.352,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2029.19,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2029.19,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1623.352,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:55d5b8df-9793-4a7c-933c-bab7626ec020",
- "resource": {
- "resourceType": "Encounter",
- "id": "55d5b8df-9793-4a7c-933c-bab7626ec020",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2011-07-16T18:17:21-04:00",
- "end": "2011-07-16T18:44:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:330fbe0f-99bf-487e-b390-0509e1ebe6a5",
- "resource": {
- "resourceType": "Procedure",
- "id": "330fbe0f-99bf-487e-b390-0509e1ebe6a5",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:55d5b8df-9793-4a7c-933c-bab7626ec020"
- },
- "performedPeriod": {
- "start": "2011-07-16T18:17:21-04:00",
- "end": "2011-07-16T18:29:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:5fb96af5-2146-4e31-b096-00053f66c0d7",
- "resource": {
- "resourceType": "Claim",
- "id": "5fb96af5-2146-4e31-b096-00053f66c0d7",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2011-07-16T18:17:21-04:00",
- "end": "2011-07-16T18:44:21-04:00"
- },
- "created": "2011-07-16T18:44:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:330fbe0f-99bf-487e-b390-0509e1ebe6a5"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:55d5b8df-9793-4a7c-933c-bab7626ec020"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3873.56,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:07d7707e-2d7c-4280-ad7e-f71b41bea0b8",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "07d7707e-2d7c-4280-ad7e-f71b41bea0b8",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5fb96af5-2146-4e31-b096-00053f66c0d7"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2011-07-16T18:44:21-04:00",
- "end": "2012-07-16T18:44:21-04:00"
- },
- "created": "2011-07-16T18:44:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5fb96af5-2146-4e31-b096-00053f66c0d7"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2011-07-16T18:17:21-04:00",
- "end": "2011-07-16T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:55d5b8df-9793-4a7c-933c-bab7626ec020"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2011-07-16T18:17:21-04:00",
- "end": "2011-07-16T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3873.56,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 774.712,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3098.848,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3873.56,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3873.56,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 3098.848,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:e011bcc7-d48f-4436-a7f2-bf44816f310b",
- "resource": {
- "resourceType": "Encounter",
- "id": "e011bcc7-d48f-4436-a7f2-bf44816f310b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2011-10-15T18:17:21-04:00",
- "end": "2011-10-15T18:50:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:8761e80c-b077-49ce-b33f-aeff7f80697a",
- "resource": {
- "resourceType": "Procedure",
- "id": "8761e80c-b077-49ce-b33f-aeff7f80697a",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:e011bcc7-d48f-4436-a7f2-bf44816f310b"
- },
- "performedPeriod": {
- "start": "2011-10-15T18:17:21-04:00",
- "end": "2011-10-15T18:35:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:403cd7d2-aca5-4659-8604-97d24ee8bc49",
- "resource": {
- "resourceType": "Claim",
- "id": "403cd7d2-aca5-4659-8604-97d24ee8bc49",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2011-10-15T18:17:21-04:00",
- "end": "2011-10-15T18:50:21-04:00"
- },
- "created": "2011-10-15T18:50:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:8761e80c-b077-49ce-b33f-aeff7f80697a"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e011bcc7-d48f-4436-a7f2-bf44816f310b"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2289.67,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:838d6ab9-67c4-443a-b2f9-b6aa11a19fec",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "838d6ab9-67c4-443a-b2f9-b6aa11a19fec",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "403cd7d2-aca5-4659-8604-97d24ee8bc49"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2011-10-15T18:50:21-04:00",
- "end": "2012-10-15T18:50:21-04:00"
- },
- "created": "2011-10-15T18:50:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:403cd7d2-aca5-4659-8604-97d24ee8bc49"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2011-10-15T18:17:21-04:00",
- "end": "2011-10-15T18:50:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:e011bcc7-d48f-4436-a7f2-bf44816f310b"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2011-10-15T18:17:21-04:00",
- "end": "2011-10-15T18:50:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2289.67,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 457.934,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1831.736,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2289.67,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2289.67,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1831.736,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:4f1688b4-ba77-4fba-9fdf-c71834c3c388",
- "resource": {
- "resourceType": "Encounter",
- "id": "4f1688b4-ba77-4fba-9fdf-c71834c3c388",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2012-01-14T17:17:21-05:00",
- "end": "2012-01-14T17:44:21-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b7a6703f-3bce-491e-a40f-f62a48e9d9e5",
- "resource": {
- "resourceType": "Procedure",
- "id": "b7a6703f-3bce-491e-a40f-f62a48e9d9e5",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:4f1688b4-ba77-4fba-9fdf-c71834c3c388"
- },
- "performedPeriod": {
- "start": "2012-01-14T17:17:21-05:00",
- "end": "2012-01-14T17:29:21-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:db854a53-b294-4850-ac88-f9122fa9f9ed",
- "resource": {
- "resourceType": "Claim",
- "id": "db854a53-b294-4850-ac88-f9122fa9f9ed",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2012-01-14T17:17:21-05:00",
- "end": "2012-01-14T17:44:21-05:00"
- },
- "created": "2012-01-14T17:44:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:b7a6703f-3bce-491e-a40f-f62a48e9d9e5"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:4f1688b4-ba77-4fba-9fdf-c71834c3c388"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3026.57,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:7d8f8c99-6009-4104-9b59-a1016365ed52",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "7d8f8c99-6009-4104-9b59-a1016365ed52",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "db854a53-b294-4850-ac88-f9122fa9f9ed"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2012-01-14T17:44:21-05:00",
- "end": "2013-01-14T17:44:21-05:00"
- },
- "created": "2012-01-14T17:44:21-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:db854a53-b294-4850-ac88-f9122fa9f9ed"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2012-01-14T17:17:21-05:00",
- "end": "2012-01-14T17:44:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:4f1688b4-ba77-4fba-9fdf-c71834c3c388"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2012-01-14T17:17:21-05:00",
- "end": "2012-01-14T17:44:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3026.57,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 605.3140000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2421.2560000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3026.57,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3026.57,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2421.2560000000003,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:47d6d1e7-0d7b-464d-bccc-7e9acec6e404",
- "resource": {
- "resourceType": "Encounter",
- "id": "47d6d1e7-0d7b-464d-bccc-7e9acec6e404",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2012-04-14T18:17:21-04:00",
- "end": "2012-04-14T18:48:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:0a2e09ef-b066-46db-ac28-724b5b251911",
- "resource": {
- "resourceType": "Procedure",
- "id": "0a2e09ef-b066-46db-ac28-724b5b251911",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:47d6d1e7-0d7b-464d-bccc-7e9acec6e404"
- },
- "performedPeriod": {
- "start": "2012-04-14T18:17:21-04:00",
- "end": "2012-04-14T18:33:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d6665409-83d0-4d88-8b25-9b2fc6ec7e6c",
- "resource": {
- "resourceType": "Claim",
- "id": "d6665409-83d0-4d88-8b25-9b2fc6ec7e6c",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2012-04-14T18:17:21-04:00",
- "end": "2012-04-14T18:48:21-04:00"
- },
- "created": "2012-04-14T18:48:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:0a2e09ef-b066-46db-ac28-724b5b251911"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:47d6d1e7-0d7b-464d-bccc-7e9acec6e404"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2282.33,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:7e3fc9b2-0d72-41fd-8e53-d3d525ad5274",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "7e3fc9b2-0d72-41fd-8e53-d3d525ad5274",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d6665409-83d0-4d88-8b25-9b2fc6ec7e6c"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2012-04-14T18:48:21-04:00",
- "end": "2013-04-14T18:48:21-04:00"
- },
- "created": "2012-04-14T18:48:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d6665409-83d0-4d88-8b25-9b2fc6ec7e6c"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2012-04-14T18:17:21-04:00",
- "end": "2012-04-14T18:48:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:47d6d1e7-0d7b-464d-bccc-7e9acec6e404"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2012-04-14T18:17:21-04:00",
- "end": "2012-04-14T18:48:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2282.33,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 456.466,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1825.864,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2282.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2282.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1825.864,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8a735a74-55b1-421c-a890-0244fcbc3e24",
- "resource": {
- "resourceType": "Encounter",
- "id": "8a735a74-55b1-421c-a890-0244fcbc3e24",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2012-06-01T18:17:21-04:00",
- "end": "2012-06-01T18:32:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:044131f8-1b76-4c24-a851-b823289f4283",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "044131f8-1b76-4c24-a851-b823289f4283",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "748962",
- "display": "Camila 28 Day Pack"
- }
- ],
- "text": "Camila 28 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8a735a74-55b1-421c-a890-0244fcbc3e24"
- },
- "authoredOn": "2012-06-01T18:17:21-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:d531f925-c048-4d06-a759-ef192555f3ca",
- "resource": {
- "resourceType": "Claim",
- "id": "d531f925-c048-4d06-a759-ef192555f3ca",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2012-06-01T18:17:21-04:00",
- "end": "2012-06-01T18:32:21-04:00"
- },
- "created": "2012-06-01T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:044131f8-1b76-4c24-a851-b823289f4283"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8a735a74-55b1-421c-a890-0244fcbc3e24"
- }
- ]
- }
- ],
- "total": {
- "value": 30.76,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f8beb8db-ddb9-4350-869d-2c3d4b870ad3",
- "resource": {
- "resourceType": "Claim",
- "id": "f8beb8db-ddb9-4350-869d-2c3d4b870ad3",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2012-06-01T18:17:21-04:00",
- "end": "2012-06-01T18:32:21-04:00"
- },
- "created": "2012-06-01T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8a735a74-55b1-421c-a890-0244fcbc3e24"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:99f219f0-3ede-4731-9b6d-e01c7f55a552",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "99f219f0-3ede-4731-9b6d-e01c7f55a552",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f8beb8db-ddb9-4350-869d-2c3d4b870ad3"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2012-06-01T18:32:21-04:00",
- "end": "2013-06-01T18:32:21-04:00"
- },
- "created": "2012-06-01T18:32:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f8beb8db-ddb9-4350-869d-2c3d4b870ad3"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2012-06-01T18:17:21-04:00",
- "end": "2012-06-01T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8a735a74-55b1-421c-a890-0244fcbc3e24"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:5f88756d-509b-4556-a88a-bd8770b78f8f",
- "resource": {
- "resourceType": "Encounter",
- "id": "5f88756d-509b-4556-a88a-bd8770b78f8f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2012-07-14T18:17:21-04:00",
- "end": "2012-07-14T18:47:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a8f1e7e8-ce18-4596-9ac5-9ce0a964da5d",
- "resource": {
- "resourceType": "Procedure",
- "id": "a8f1e7e8-ce18-4596-9ac5-9ce0a964da5d",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:5f88756d-509b-4556-a88a-bd8770b78f8f"
- },
- "performedPeriod": {
- "start": "2012-07-14T18:17:21-04:00",
- "end": "2012-07-14T18:32:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:16c7cbb1-e16c-45a7-8143-98ffff2b3bd4",
- "resource": {
- "resourceType": "Claim",
- "id": "16c7cbb1-e16c-45a7-8143-98ffff2b3bd4",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2012-07-14T18:17:21-04:00",
- "end": "2012-07-14T18:47:21-04:00"
- },
- "created": "2012-07-14T18:47:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:a8f1e7e8-ce18-4596-9ac5-9ce0a964da5d"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:5f88756d-509b-4556-a88a-bd8770b78f8f"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3041.29,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3ba335b8-bace-4e5b-931e-f052ee2155fa",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3ba335b8-bace-4e5b-931e-f052ee2155fa",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "16c7cbb1-e16c-45a7-8143-98ffff2b3bd4"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2012-07-14T18:47:21-04:00",
- "end": "2013-07-14T18:47:21-04:00"
- },
- "created": "2012-07-14T18:47:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:16c7cbb1-e16c-45a7-8143-98ffff2b3bd4"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2012-07-14T18:17:21-04:00",
- "end": "2012-07-14T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:5f88756d-509b-4556-a88a-bd8770b78f8f"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2012-07-14T18:17:21-04:00",
- "end": "2012-07-14T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3041.29,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 608.258,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2433.032,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3041.29,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3041.29,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2433.032,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6",
- "resource": {
- "resourceType": "Encounter",
- "id": "51d9175a-2b10-4648-bb9e-8d52f2969da6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4",
- "display": "Dr. Betty470 Zieme486"
- }
- }
- ],
- "period": {
- "start": "2012-08-11T18:17:21-04:00",
- "end": "2012-08-11T18:47:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c331248b-48be-4a2e-82b7-eb3ad0474a2b",
- "resource": {
- "resourceType": "Condition",
- "id": "c331248b-48be-4a2e-82b7-eb3ad0474a2b",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162864005",
- "display": "Body mass index 30+ - obesity (finding)"
- }
- ],
- "text": "Body mass index 30+ - obesity (finding)"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6"
- },
- "onsetDateTime": "2012-08-11T18:17:21-04:00",
- "recordedDate": "2012-08-11T18:17:21-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:dec08444-a281-40b3-8eaf-4c81d47ef3a5",
- "resource": {
- "resourceType": "Observation",
- "id": "dec08444-a281-40b3-8eaf-4c81d47ef3a5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6"
- },
- "effectiveDateTime": "2012-08-11T18:17:21-04:00",
- "issued": "2012-08-11T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 164.02997749587527,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0fec307f-75f3-4273-a956-1ee9c331abbf",
- "resource": {
- "resourceType": "Observation",
- "id": "0fec307f-75f3-4273-a956-1ee9c331abbf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6"
- },
- "effectiveDateTime": "2012-08-11T18:17:21-04:00",
- "issued": "2012-08-11T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 3.731940752380781,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0129a415-2c17-4fd2-b811-df11ce87e851",
- "resource": {
- "resourceType": "Observation",
- "id": "0129a415-2c17-4fd2-b811-df11ce87e851",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6"
- },
- "effectiveDateTime": "2012-08-11T18:17:21-04:00",
- "issued": "2012-08-11T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 82.25775937500322,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:daee5416-8d07-4935-ad73-4d4b1b0c6965",
- "resource": {
- "resourceType": "Observation",
- "id": "daee5416-8d07-4935-ad73-4d4b1b0c6965",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6"
- },
- "effectiveDateTime": "2012-08-11T18:17:21-04:00",
- "issued": "2012-08-11T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 30.572462779166816,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:304bb4db-bdc8-44f2-9a62-5fed3a65c107",
- "resource": {
- "resourceType": "Observation",
- "id": "304bb4db-bdc8-44f2-9a62-5fed3a65c107",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6"
- },
- "effectiveDateTime": "2012-08-11T18:17:21-04:00",
- "issued": "2012-08-11T18:17:21.160-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 78.81717195224627,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 108.26417223281759,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:66e1e17b-6b09-4170-bf71-4b8a5cf45c86",
- "resource": {
- "resourceType": "Observation",
- "id": "66e1e17b-6b09-4170-bf71-4b8a5cf45c86",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6"
- },
- "effectiveDateTime": "2012-08-11T18:17:21-04:00",
- "issued": "2012-08-11T18:17:21.160-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:89b01e04-d135-4eac-86e0-7c43c7db3520",
- "resource": {
- "resourceType": "Procedure",
- "id": "89b01e04-d135-4eac-86e0-7c43c7db3520",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6"
- },
- "performedPeriod": {
- "start": "2012-08-11T18:17:21-04:00",
- "end": "2012-08-11T18:32:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:e375ede1-ca4b-48a2-9b90-3337eed294e5",
- "resource": {
- "resourceType": "Immunization",
- "id": "e375ede1-ca4b-48a2-9b90-3337eed294e5",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6"
- },
- "occurrenceDateTime": "2012-08-11T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:f97998b7-e248-464b-a532-4a59ce2f2ac9",
- "resource": {
- "resourceType": "Claim",
- "id": "f97998b7-e248-464b-a532-4a59ce2f2ac9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2012-08-11T18:17:21-04:00",
- "end": "2012-08-11T18:47:21-04:00"
- },
- "created": "2012-08-11T18:47:21-04:00",
- "provider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:e375ede1-ca4b-48a2-9b90-3337eed294e5"
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:c331248b-48be-4a2e-82b7-eb3ad0474a2b"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:89b01e04-d135-4eac-86e0-7c43c7db3520"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 565.63,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162864005",
- "display": "Body mass index 30+ - obesity (finding)"
- }
- ],
- "text": "Body mass index 30+ - obesity (finding)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:fb5832b6-a804-4ab9-9deb-4f34d8c570c5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "fb5832b6-a804-4ab9-9deb-4f34d8c570c5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f97998b7-e248-464b-a532-4a59ce2f2ac9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2012-08-11T18:47:21-04:00",
- "end": "2013-08-11T18:47:21-04:00"
- },
- "created": "2012-08-11T18:47:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f97998b7-e248-464b-a532-4a59ce2f2ac9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:c331248b-48be-4a2e-82b7-eb3ad0474a2b"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-08-11T18:17:21-04:00",
- "end": "2012-08-11T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:51d9175a-2b10-4648-bb9e-8d52f2969da6"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2012-08-11T18:17:21-04:00",
- "end": "2012-08-11T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-08-11T18:17:21-04:00",
- "end": "2012-08-11T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 565.63,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 113.126,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 452.504,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 565.63,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 565.63,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162864005",
- "display": "Body mass index 30+ - obesity (finding)"
- }
- ],
- "text": "Body mass index 30+ - obesity (finding)"
- },
- "servicedPeriod": {
- "start": "2012-08-11T18:17:21-04:00",
- "end": "2012-08-11T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 564.9200000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:457fdfc5-95d9-4aee-af1f-5b21592608ed",
- "resource": {
- "resourceType": "Encounter",
- "id": "457fdfc5-95d9-4aee-af1f-5b21592608ed",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2012-10-13T18:17:21-04:00",
- "end": "2012-10-13T18:51:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:4e453eba-1f28-4e9b-a3e9-0cae855ba3dc",
- "resource": {
- "resourceType": "Procedure",
- "id": "4e453eba-1f28-4e9b-a3e9-0cae855ba3dc",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:457fdfc5-95d9-4aee-af1f-5b21592608ed"
- },
- "performedPeriod": {
- "start": "2012-10-13T18:17:21-04:00",
- "end": "2012-10-13T18:36:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:1087156d-a275-4e13-a37b-f52e31c89052",
- "resource": {
- "resourceType": "Claim",
- "id": "1087156d-a275-4e13-a37b-f52e31c89052",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2012-10-13T18:17:21-04:00",
- "end": "2012-10-13T18:51:21-04:00"
- },
- "created": "2012-10-13T18:51:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:4e453eba-1f28-4e9b-a3e9-0cae855ba3dc"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:457fdfc5-95d9-4aee-af1f-5b21592608ed"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3409.97,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f330881e-54e5-4ea5-8ef9-c90dad5a604e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f330881e-54e5-4ea5-8ef9-c90dad5a604e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "1087156d-a275-4e13-a37b-f52e31c89052"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2012-10-13T18:51:21-04:00",
- "end": "2013-10-13T18:51:21-04:00"
- },
- "created": "2012-10-13T18:51:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:1087156d-a275-4e13-a37b-f52e31c89052"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2012-10-13T18:17:21-04:00",
- "end": "2012-10-13T18:51:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:457fdfc5-95d9-4aee-af1f-5b21592608ed"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2012-10-13T18:17:21-04:00",
- "end": "2012-10-13T18:51:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3409.97,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 681.994,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2727.976,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3409.97,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3409.97,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2727.976,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:06a69073-3c9a-4965-b362-157acef49d22",
- "resource": {
- "resourceType": "Encounter",
- "id": "06a69073-3c9a-4965-b362-157acef49d22",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2013-01-12T17:17:21-05:00",
- "end": "2013-01-12T17:49:21-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2b355f8b-f61e-4273-9e90-ff6baa57c5b3",
- "resource": {
- "resourceType": "Procedure",
- "id": "2b355f8b-f61e-4273-9e90-ff6baa57c5b3",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:06a69073-3c9a-4965-b362-157acef49d22"
- },
- "performedPeriod": {
- "start": "2013-01-12T17:17:21-05:00",
- "end": "2013-01-12T17:34:21-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:0bc745fe-31cf-4ddd-9a44-2f0eed1d5e54",
- "resource": {
- "resourceType": "Claim",
- "id": "0bc745fe-31cf-4ddd-9a44-2f0eed1d5e54",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2013-01-12T17:17:21-05:00",
- "end": "2013-01-12T17:49:21-05:00"
- },
- "created": "2013-01-12T17:49:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:2b355f8b-f61e-4273-9e90-ff6baa57c5b3"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:06a69073-3c9a-4965-b362-157acef49d22"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2890.23,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0060720f-a696-413d-b2e3-bf72324630de",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0060720f-a696-413d-b2e3-bf72324630de",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "0bc745fe-31cf-4ddd-9a44-2f0eed1d5e54"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2013-01-12T17:49:21-05:00",
- "end": "2014-01-12T17:49:21-05:00"
- },
- "created": "2013-01-12T17:49:21-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:0bc745fe-31cf-4ddd-9a44-2f0eed1d5e54"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2013-01-12T17:17:21-05:00",
- "end": "2013-01-12T17:49:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:06a69073-3c9a-4965-b362-157acef49d22"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2013-01-12T17:17:21-05:00",
- "end": "2013-01-12T17:49:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2890.23,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 578.046,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2312.184,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2890.23,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2890.23,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2312.184,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3b6beea7-ea8e-4712-a937-d1692482c496",
- "resource": {
- "resourceType": "Encounter",
- "id": "3b6beea7-ea8e-4712-a937-d1692482c496",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2013-04-13T18:17:21-04:00",
- "end": "2013-04-13T18:49:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:bf6d22f4-ad13-4975-b02d-77b045c9d3cf",
- "resource": {
- "resourceType": "Procedure",
- "id": "bf6d22f4-ad13-4975-b02d-77b045c9d3cf",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:3b6beea7-ea8e-4712-a937-d1692482c496"
- },
- "performedPeriod": {
- "start": "2013-04-13T18:17:21-04:00",
- "end": "2013-04-13T18:34:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:97bb0984-be19-4180-b327-5d0f76c428d5",
- "resource": {
- "resourceType": "Claim",
- "id": "97bb0984-be19-4180-b327-5d0f76c428d5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2013-04-13T18:17:21-04:00",
- "end": "2013-04-13T18:49:21-04:00"
- },
- "created": "2013-04-13T18:49:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:bf6d22f4-ad13-4975-b02d-77b045c9d3cf"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3b6beea7-ea8e-4712-a937-d1692482c496"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2756.35,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:242bd475-7e02-4125-8beb-6654a7e92cde",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "242bd475-7e02-4125-8beb-6654a7e92cde",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "97bb0984-be19-4180-b327-5d0f76c428d5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2013-04-13T18:49:21-04:00",
- "end": "2014-04-13T18:49:21-04:00"
- },
- "created": "2013-04-13T18:49:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:97bb0984-be19-4180-b327-5d0f76c428d5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2013-04-13T18:17:21-04:00",
- "end": "2013-04-13T18:49:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3b6beea7-ea8e-4712-a937-d1692482c496"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2013-04-13T18:17:21-04:00",
- "end": "2013-04-13T18:49:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2756.35,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 551.27,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2205.08,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2756.35,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2756.35,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2205.08,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:28643fd3-a0a1-486f-b1f3-9f3fc0b38273",
- "resource": {
- "resourceType": "Encounter",
- "id": "28643fd3-a0a1-486f-b1f3-9f3fc0b38273",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2013-05-27T18:17:21-04:00",
- "end": "2013-05-27T18:48:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b90eec9f-47d6-49f4-9212-cf7331ef18af",
- "resource": {
- "resourceType": "Procedure",
- "id": "b90eec9f-47d6-49f4-9212-cf7331ef18af",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:28643fd3-a0a1-486f-b1f3-9f3fc0b38273"
- },
- "performedPeriod": {
- "start": "2013-05-27T18:17:21-04:00",
- "end": "2013-05-27T18:33:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:772a0667-4286-4a59-b8ed-f43bcd647cf2",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "772a0667-4286-4a59-b8ed-f43bcd647cf2",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "1000156",
- "display": "0.65 ML medroxyprogesterone acetate 160 MG/ML Prefilled Syringe"
- }
- ],
- "text": "0.65 ML medroxyprogesterone acetate 160 MG/ML Prefilled Syringe"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:28643fd3-a0a1-486f-b1f3-9f3fc0b38273"
- },
- "authoredOn": "2013-05-27T18:17:21-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:e2fdef71-40b0-423e-9ced-8000d5596c8f",
- "resource": {
- "resourceType": "Claim",
- "id": "e2fdef71-40b0-423e-9ced-8000d5596c8f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2013-05-27T18:17:21-04:00",
- "end": "2013-05-27T18:48:21-04:00"
- },
- "created": "2013-05-27T18:48:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:772a0667-4286-4a59-b8ed-f43bcd647cf2"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:28643fd3-a0a1-486f-b1f3-9f3fc0b38273"
- }
- ]
- }
- ],
- "total": {
- "value": 312.95,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e45f4d93-af7d-4b0c-84f0-637a911c1afe",
- "resource": {
- "resourceType": "Claim",
- "id": "e45f4d93-af7d-4b0c-84f0-637a911c1afe",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2013-05-27T18:17:21-04:00",
- "end": "2013-05-27T18:48:21-04:00"
- },
- "created": "2013-05-27T18:48:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:b90eec9f-47d6-49f4-9212-cf7331ef18af"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:28643fd3-a0a1-486f-b1f3-9f3fc0b38273"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2926.23,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0a7ffe4d-15ed-412a-af49-bb5fce5dd986",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0a7ffe4d-15ed-412a-af49-bb5fce5dd986",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "e45f4d93-af7d-4b0c-84f0-637a911c1afe"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2013-05-27T18:48:21-04:00",
- "end": "2014-05-27T18:48:21-04:00"
- },
- "created": "2013-05-27T18:48:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:e45f4d93-af7d-4b0c-84f0-637a911c1afe"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2013-05-27T18:17:21-04:00",
- "end": "2013-05-27T18:48:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:28643fd3-a0a1-486f-b1f3-9f3fc0b38273"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2013-05-27T18:17:21-04:00",
- "end": "2013-05-27T18:48:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2926.23,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 585.246,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2340.984,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2926.23,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2926.23,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2340.984,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a8140343-1a77-454b-ab1a-617f7187eeaf",
- "resource": {
- "resourceType": "Encounter",
- "id": "a8140343-1a77-454b-ab1a-617f7187eeaf",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2013-07-13T18:17:21-04:00",
- "end": "2013-07-13T18:44:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:7d124264-67ea-4e79-aa7a-61c3d6672a5f",
- "resource": {
- "resourceType": "Procedure",
- "id": "7d124264-67ea-4e79-aa7a-61c3d6672a5f",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:a8140343-1a77-454b-ab1a-617f7187eeaf"
- },
- "performedPeriod": {
- "start": "2013-07-13T18:17:21-04:00",
- "end": "2013-07-13T18:29:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:c9a43a00-7ce1-4ff1-a598-0efa6009d66c",
- "resource": {
- "resourceType": "Claim",
- "id": "c9a43a00-7ce1-4ff1-a598-0efa6009d66c",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2013-07-13T18:17:21-04:00",
- "end": "2013-07-13T18:44:21-04:00"
- },
- "created": "2013-07-13T18:44:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:7d124264-67ea-4e79-aa7a-61c3d6672a5f"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a8140343-1a77-454b-ab1a-617f7187eeaf"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3981.49,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b4e44f78-8b1c-44b2-9348-49728b4a57cb",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "b4e44f78-8b1c-44b2-9348-49728b4a57cb",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c9a43a00-7ce1-4ff1-a598-0efa6009d66c"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2013-07-13T18:44:21-04:00",
- "end": "2014-07-13T18:44:21-04:00"
- },
- "created": "2013-07-13T18:44:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c9a43a00-7ce1-4ff1-a598-0efa6009d66c"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2013-07-13T18:17:21-04:00",
- "end": "2013-07-13T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:a8140343-1a77-454b-ab1a-617f7187eeaf"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2013-07-13T18:17:21-04:00",
- "end": "2013-07-13T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3981.49,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 796.298,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3185.192,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3981.49,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3981.49,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 3185.192,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f577b423-1606-4e47-903f-fd1a32ae7a28",
- "resource": {
- "resourceType": "Encounter",
- "id": "f577b423-1606-4e47-903f-fd1a32ae7a28",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2013-10-12T18:17:21-04:00",
- "end": "2013-10-12T18:50:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:ea1e4a61-3c25-41a9-80f1-f59506ad1394",
- "resource": {
- "resourceType": "Procedure",
- "id": "ea1e4a61-3c25-41a9-80f1-f59506ad1394",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:f577b423-1606-4e47-903f-fd1a32ae7a28"
- },
- "performedPeriod": {
- "start": "2013-10-12T18:17:21-04:00",
- "end": "2013-10-12T18:35:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:53afad1d-1c1e-4311-b083-b82dc2548752",
- "resource": {
- "resourceType": "Claim",
- "id": "53afad1d-1c1e-4311-b083-b82dc2548752",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2013-10-12T18:17:21-04:00",
- "end": "2013-10-12T18:50:21-04:00"
- },
- "created": "2013-10-12T18:50:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:ea1e4a61-3c25-41a9-80f1-f59506ad1394"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f577b423-1606-4e47-903f-fd1a32ae7a28"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 4148.55,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:408f4034-39c9-4484-846c-e9789d2905db",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "408f4034-39c9-4484-846c-e9789d2905db",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "53afad1d-1c1e-4311-b083-b82dc2548752"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2013-10-12T18:50:21-04:00",
- "end": "2014-10-12T18:50:21-04:00"
- },
- "created": "2013-10-12T18:50:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:53afad1d-1c1e-4311-b083-b82dc2548752"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2013-10-12T18:17:21-04:00",
- "end": "2013-10-12T18:50:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f577b423-1606-4e47-903f-fd1a32ae7a28"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2013-10-12T18:17:21-04:00",
- "end": "2013-10-12T18:50:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 4148.55,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 829.71,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3318.84,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4148.55,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4148.55,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 3318.84,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3bae388e-e238-4369-afa7-a388ce0f9e61",
- "resource": {
- "resourceType": "Encounter",
- "id": "3bae388e-e238-4369-afa7-a388ce0f9e61",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2014-01-11T17:17:21-05:00",
- "end": "2014-01-11T17:42:21-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:12dba1c4-1e23-4821-9704-887ea2ad309e",
- "resource": {
- "resourceType": "Procedure",
- "id": "12dba1c4-1e23-4821-9704-887ea2ad309e",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:3bae388e-e238-4369-afa7-a388ce0f9e61"
- },
- "performedPeriod": {
- "start": "2014-01-11T17:17:21-05:00",
- "end": "2014-01-11T17:27:21-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:b1ab4cab-4522-4f46-9e53-e35659ecf1bb",
- "resource": {
- "resourceType": "Claim",
- "id": "b1ab4cab-4522-4f46-9e53-e35659ecf1bb",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2014-01-11T17:17:21-05:00",
- "end": "2014-01-11T17:42:21-05:00"
- },
- "created": "2014-01-11T17:42:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:12dba1c4-1e23-4821-9704-887ea2ad309e"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3bae388e-e238-4369-afa7-a388ce0f9e61"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2694.58,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:31dc1857-83bd-4170-b20e-523cdffaa8cd",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "31dc1857-83bd-4170-b20e-523cdffaa8cd",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b1ab4cab-4522-4f46-9e53-e35659ecf1bb"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2014-01-11T17:42:21-05:00",
- "end": "2015-01-11T17:42:21-05:00"
- },
- "created": "2014-01-11T17:42:21-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b1ab4cab-4522-4f46-9e53-e35659ecf1bb"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2014-01-11T17:17:21-05:00",
- "end": "2014-01-11T17:42:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3bae388e-e238-4369-afa7-a388ce0f9e61"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2014-01-11T17:17:21-05:00",
- "end": "2014-01-11T17:42:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2694.58,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 538.916,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2155.664,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2694.58,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2694.58,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2155.664,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:4e1ed251-70af-4500-bb42-9bcb8a67a6da",
- "resource": {
- "resourceType": "Encounter",
- "id": "4e1ed251-70af-4500-bb42-9bcb8a67a6da",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2014-04-12T18:17:21-04:00",
- "end": "2014-04-12T18:49:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:033d2b0e-ca20-4f05-ad46-783ed21f39eb",
- "resource": {
- "resourceType": "Procedure",
- "id": "033d2b0e-ca20-4f05-ad46-783ed21f39eb",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:4e1ed251-70af-4500-bb42-9bcb8a67a6da"
- },
- "performedPeriod": {
- "start": "2014-04-12T18:17:21-04:00",
- "end": "2014-04-12T18:34:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:954fd814-d163-45a6-b89f-d676e471b15a",
- "resource": {
- "resourceType": "Claim",
- "id": "954fd814-d163-45a6-b89f-d676e471b15a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2014-04-12T18:17:21-04:00",
- "end": "2014-04-12T18:49:21-04:00"
- },
- "created": "2014-04-12T18:49:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:033d2b0e-ca20-4f05-ad46-783ed21f39eb"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:4e1ed251-70af-4500-bb42-9bcb8a67a6da"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3371.44,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5a10316b-9c2f-4424-b38e-8e27eeed04ec",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5a10316b-9c2f-4424-b38e-8e27eeed04ec",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "954fd814-d163-45a6-b89f-d676e471b15a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2014-04-12T18:49:21-04:00",
- "end": "2015-04-12T18:49:21-04:00"
- },
- "created": "2014-04-12T18:49:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:954fd814-d163-45a6-b89f-d676e471b15a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2014-04-12T18:17:21-04:00",
- "end": "2014-04-12T18:49:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:4e1ed251-70af-4500-bb42-9bcb8a67a6da"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2014-04-12T18:17:21-04:00",
- "end": "2014-04-12T18:49:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3371.44,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 674.288,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2697.152,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3371.44,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3371.44,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2697.152,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a00ee585-b60d-4558-854f-021525bce1f3",
- "resource": {
- "resourceType": "Encounter",
- "id": "a00ee585-b60d-4558-854f-021525bce1f3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2014-05-22T18:17:21-04:00",
- "end": "2014-05-22T18:32:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:4f7e63c4-00c9-4a2e-82b7-9a5ae321cc75",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "4f7e63c4-00c9-4a2e-82b7-9a5ae321cc75",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "748962",
- "display": "Camila 28 Day Pack"
- }
- ],
- "text": "Camila 28 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:a00ee585-b60d-4558-854f-021525bce1f3"
- },
- "authoredOn": "2014-05-22T18:17:21-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:ce679c92-f25b-4eec-a86a-f3dc0b2d53ca",
- "resource": {
- "resourceType": "Claim",
- "id": "ce679c92-f25b-4eec-a86a-f3dc0b2d53ca",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2014-05-22T18:17:21-04:00",
- "end": "2014-05-22T18:32:21-04:00"
- },
- "created": "2014-05-22T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:4f7e63c4-00c9-4a2e-82b7-9a5ae321cc75"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a00ee585-b60d-4558-854f-021525bce1f3"
- }
- ]
- }
- ],
- "total": {
- "value": 46.11,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:c657541c-462a-4a4c-9883-064557b8dce5",
- "resource": {
- "resourceType": "Claim",
- "id": "c657541c-462a-4a4c-9883-064557b8dce5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2014-05-22T18:17:21-04:00",
- "end": "2014-05-22T18:32:21-04:00"
- },
- "created": "2014-05-22T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a00ee585-b60d-4558-854f-021525bce1f3"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:08ca9b1f-61d2-4585-9b0c-5fa17627cd7f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "08ca9b1f-61d2-4585-9b0c-5fa17627cd7f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c657541c-462a-4a4c-9883-064557b8dce5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2014-05-22T18:32:21-04:00",
- "end": "2015-05-22T18:32:21-04:00"
- },
- "created": "2014-05-22T18:32:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c657541c-462a-4a4c-9883-064557b8dce5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2014-05-22T18:17:21-04:00",
- "end": "2014-05-22T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:a00ee585-b60d-4558-854f-021525bce1f3"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:baffe85f-0adf-49bc-a50e-1a47c3ac7aac",
- "resource": {
- "resourceType": "Encounter",
- "id": "baffe85f-0adf-49bc-a50e-1a47c3ac7aac",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2014-07-12T18:17:21-04:00",
- "end": "2014-07-12T18:49:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:98a78f73-2d8f-4b07-ba55-d028880b425b",
- "resource": {
- "resourceType": "Procedure",
- "id": "98a78f73-2d8f-4b07-ba55-d028880b425b",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baffe85f-0adf-49bc-a50e-1a47c3ac7aac"
- },
- "performedPeriod": {
- "start": "2014-07-12T18:17:21-04:00",
- "end": "2014-07-12T18:34:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:b3b2ebb3-de2b-41c5-9b25-390e9a84ace5",
- "resource": {
- "resourceType": "Claim",
- "id": "b3b2ebb3-de2b-41c5-9b25-390e9a84ace5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2014-07-12T18:17:21-04:00",
- "end": "2014-07-12T18:49:21-04:00"
- },
- "created": "2014-07-12T18:49:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:98a78f73-2d8f-4b07-ba55-d028880b425b"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:baffe85f-0adf-49bc-a50e-1a47c3ac7aac"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 4347.61,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:798ac843-5dce-4646-bd41-b84fca0dc410",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "798ac843-5dce-4646-bd41-b84fca0dc410",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b3b2ebb3-de2b-41c5-9b25-390e9a84ace5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2014-07-12T18:49:21-04:00",
- "end": "2015-07-12T18:49:21-04:00"
- },
- "created": "2014-07-12T18:49:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b3b2ebb3-de2b-41c5-9b25-390e9a84ace5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2014-07-12T18:17:21-04:00",
- "end": "2014-07-12T18:49:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:baffe85f-0adf-49bc-a50e-1a47c3ac7aac"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2014-07-12T18:17:21-04:00",
- "end": "2014-07-12T18:49:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 4347.61,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 869.5219999999999,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3478.0879999999997,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4347.61,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4347.61,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 3478.0879999999997,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8",
- "resource": {
- "resourceType": "Encounter",
- "id": "d384a252-6be0-49f8-8da4-ada7a02943f8",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4",
- "display": "Dr. Betty470 Zieme486"
- }
- }
- ],
- "period": {
- "start": "2014-08-16T18:17:21-04:00",
- "end": "2014-08-16T18:32:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:567784dd-4cce-4cf1-b0eb-1bf02bfc140b",
- "resource": {
- "resourceType": "Observation",
- "id": "567784dd-4cce-4cf1-b0eb-1bf02bfc140b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 164.02997749587527,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:dcc2ee9e-ac42-4110-912b-aaeb9651f08a",
- "resource": {
- "resourceType": "Observation",
- "id": "dcc2ee9e-ac42-4110-912b-aaeb9651f08a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 3.5269626805960406,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:033db05b-2334-44cc-871d-69791deb533a",
- "resource": {
- "resourceType": "Observation",
- "id": "033db05b-2334-44cc-871d-69791deb533a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 82.25775937500322,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d5845462-d408-4dca-a93d-fe3dc4870543",
- "resource": {
- "resourceType": "Observation",
- "id": "d5845462-d408-4dca-a93d-fe3dc4870543",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 30.572462779166816,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0a35516a-6457-4dbc-8f8f-ddd0fca78dad",
- "resource": {
- "resourceType": "Observation",
- "id": "0a35516a-6457-4dbc-8f8f-ddd0fca78dad",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 80.68378081526667,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 120.44840257284558,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b840173f-0bb6-41e0-9997-2bd935950dc2",
- "resource": {
- "resourceType": "Observation",
- "id": "b840173f-0bb6-41e0-9997-2bd935950dc2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 163.90329728250873,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c6f6beed-5e78-4cbe-8425-0ae08b470157",
- "resource": {
- "resourceType": "Observation",
- "id": "c6f6beed-5e78-4cbe-8425-0ae08b470157",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 100.31938621531111,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3ec27ee8-66ae-41b3-8d3a-fedc39ce8dcb",
- "resource": {
- "resourceType": "Observation",
- "id": "3ec27ee8-66ae-41b3-8d3a-fedc39ce8dcb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 70.97669590173606,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bbf708a8-2f87-462f-8b10-edf584b49277",
- "resource": {
- "resourceType": "Observation",
- "id": "bbf708a8-2f87-462f-8b10-edf584b49277",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 72.86272413771044,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cbb9b553-9b49-40ed-9d8c-8bcb9349880e",
- "resource": {
- "resourceType": "Observation",
- "id": "cbb9b553-9b49-40ed-9d8c-8bcb9349880e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 9.52321757018747,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:326b90ba-0ba8-4ccb-97d8-b4aed940770c",
- "resource": {
- "resourceType": "Observation",
- "id": "326b90ba-0ba8-4ccb-97d8-b4aed940770c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 4.697027982278176,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3506ca4e-082b-41fc-b674-9af740dd23cf",
- "resource": {
- "resourceType": "Observation",
- "id": "3506ca4e-082b-41fc-b674-9af740dd23cf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 14.265303674287466,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:597f4b55-775d-4e6d-b6e5-c37a1de14cc9",
- "resource": {
- "resourceType": "Observation",
- "id": "597f4b55-775d-4e6d-b6e5-c37a1de14cc9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 44.4617002424621,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ad96b2de-0508-4583-859e-5f9d32e07b44",
- "resource": {
- "resourceType": "Observation",
- "id": "ad96b2de-0508-4583-859e-5f9d32e07b44",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 83.13263003502922,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:56d03b8e-0f1e-4ce5-aab0-403f3dd6d362",
- "resource": {
- "resourceType": "Observation",
- "id": "56d03b8e-0f1e-4ce5-aab0-403f3dd6d362",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 31.12025131724763,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e8527e63-2386-449f-b74b-6f5cb86e2878",
- "resource": {
- "resourceType": "Observation",
- "id": "e8527e63-2386-449f-b74b-6f5cb86e2878",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 33.71292377764518,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:81f77658-2931-4339-a953-09691258a989",
- "resource": {
- "resourceType": "Observation",
- "id": "81f77658-2931-4339-a953-09691258a989",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 39.26564341116058,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e2dba56c-d971-4a01-bbd2-fc5ba3101c49",
- "resource": {
- "resourceType": "Observation",
- "id": "e2dba56c-d971-4a01-bbd2-fc5ba3101c49",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 416.6448442917771,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4f38f7cb-8887-424a-a562-69faa1bbe8a0",
- "resource": {
- "resourceType": "Observation",
- "id": "4f38f7cb-8887-424a-a562-69faa1bbe8a0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 315.93791840788884,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:39bb59be-4d78-45df-b2ee-a1f8822189c0",
- "resource": {
- "resourceType": "Observation",
- "id": "39bb59be-4d78-45df-b2ee-a1f8822189c0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 11.82026846849508,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9e80a1c2-fdf8-4425-8dcb-d892fff658a6",
- "resource": {
- "resourceType": "Observation",
- "id": "9e80a1c2-fdf8-4425-8dcb-d892fff658a6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2a557308-cbf6-45bf-94c6-f93647610144",
- "resource": {
- "resourceType": "Immunization",
- "id": "2a557308-cbf6-45bf-94c6-f93647610144",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "occurrenceDateTime": "2014-08-16T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:a4290678-25fd-410b-b695-09761c134141",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "a4290678-25fd-410b-b695-09761c134141",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "result": [
- {
- "reference": "urn:uuid:b840173f-0bb6-41e0-9997-2bd935950dc2",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:c6f6beed-5e78-4cbe-8425-0ae08b470157",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:3ec27ee8-66ae-41b3-8d3a-fedc39ce8dcb",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:bbf708a8-2f87-462f-8b10-edf584b49277",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:49889c09-617b-4ea6-aa00-e2869fb9e9fb",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "49889c09-617b-4ea6-aa00-e2869fb9e9fb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- },
- "effectiveDateTime": "2014-08-16T18:17:21-04:00",
- "issued": "2014-08-16T18:17:21.160-04:00",
- "result": [
- {
- "reference": "urn:uuid:cbb9b553-9b49-40ed-9d8c-8bcb9349880e",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:326b90ba-0ba8-4ccb-97d8-b4aed940770c",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:3506ca4e-082b-41fc-b674-9af740dd23cf",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:597f4b55-775d-4e6d-b6e5-c37a1de14cc9",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:ad96b2de-0508-4583-859e-5f9d32e07b44",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:56d03b8e-0f1e-4ce5-aab0-403f3dd6d362",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:e8527e63-2386-449f-b74b-6f5cb86e2878",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:81f77658-2931-4339-a953-09691258a989",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:e2dba56c-d971-4a01-bbd2-fc5ba3101c49",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:4f38f7cb-8887-424a-a562-69faa1bbe8a0",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:39bb59be-4d78-45df-b2ee-a1f8822189c0",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:c08e6a24-f961-467b-a6a9-12518fe99dd1",
- "resource": {
- "resourceType": "Claim",
- "id": "c08e6a24-f961-467b-a6a9-12518fe99dd1",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2014-08-16T18:17:21-04:00",
- "end": "2014-08-16T18:32:21-04:00"
- },
- "created": "2014-08-16T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:2a557308-cbf6-45bf-94c6-f93647610144"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:50498f0d-2d9f-49a0-9996-2ac2f037e33a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "50498f0d-2d9f-49a0-9996-2ac2f037e33a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c08e6a24-f961-467b-a6a9-12518fe99dd1"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2014-08-16T18:32:21-04:00",
- "end": "2015-08-16T18:32:21-04:00"
- },
- "created": "2014-08-16T18:32:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c08e6a24-f961-467b-a6a9-12518fe99dd1"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2014-08-16T18:17:21-04:00",
- "end": "2014-08-16T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:d384a252-6be0-49f8-8da4-ada7a02943f8"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2014-08-16T18:17:21-04:00",
- "end": "2014-08-16T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:50571ade-22c4-43bb-89c5-87fa87b0132b",
- "resource": {
- "resourceType": "Encounter",
- "id": "50571ade-22c4-43bb-89c5-87fa87b0132b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2014-10-11T18:17:21-04:00",
- "end": "2014-10-11T18:45:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:aa57a8c8-4950-491a-8d0b-eaa335810450",
- "resource": {
- "resourceType": "Procedure",
- "id": "aa57a8c8-4950-491a-8d0b-eaa335810450",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:50571ade-22c4-43bb-89c5-87fa87b0132b"
- },
- "performedPeriod": {
- "start": "2014-10-11T18:17:21-04:00",
- "end": "2014-10-11T18:30:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:c1a866ed-2b26-45ea-97d6-cf692b466ff3",
- "resource": {
- "resourceType": "Claim",
- "id": "c1a866ed-2b26-45ea-97d6-cf692b466ff3",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2014-10-11T18:17:21-04:00",
- "end": "2014-10-11T18:45:21-04:00"
- },
- "created": "2014-10-11T18:45:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:aa57a8c8-4950-491a-8d0b-eaa335810450"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:50571ade-22c4-43bb-89c5-87fa87b0132b"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3104.11,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f141e4a1-2ede-427a-bff1-e715663d0433",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f141e4a1-2ede-427a-bff1-e715663d0433",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c1a866ed-2b26-45ea-97d6-cf692b466ff3"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2014-10-11T18:45:21-04:00",
- "end": "2015-10-11T18:45:21-04:00"
- },
- "created": "2014-10-11T18:45:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c1a866ed-2b26-45ea-97d6-cf692b466ff3"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2014-10-11T18:17:21-04:00",
- "end": "2014-10-11T18:45:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:50571ade-22c4-43bb-89c5-87fa87b0132b"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2014-10-11T18:17:21-04:00",
- "end": "2014-10-11T18:45:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3104.11,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 620.8220000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2483.2880000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3104.11,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3104.11,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2483.2880000000005,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:6c5be20a-81a0-42d0-a884-630b996a6355",
- "resource": {
- "resourceType": "Encounter",
- "id": "6c5be20a-81a0-42d0-a884-630b996a6355",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2015-01-10T17:17:21-05:00",
- "end": "2015-01-10T17:42:21-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:e8ce82c8-f786-4207-abb9-f596c7ca99db",
- "resource": {
- "resourceType": "Procedure",
- "id": "e8ce82c8-f786-4207-abb9-f596c7ca99db",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:6c5be20a-81a0-42d0-a884-630b996a6355"
- },
- "performedPeriod": {
- "start": "2015-01-10T17:17:21-05:00",
- "end": "2015-01-10T17:27:21-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:53f6bc9f-1352-4952-ac60-717096b5e1e6",
- "resource": {
- "resourceType": "Claim",
- "id": "53f6bc9f-1352-4952-ac60-717096b5e1e6",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2015-01-10T17:17:21-05:00",
- "end": "2015-01-10T17:42:21-05:00"
- },
- "created": "2015-01-10T17:42:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:e8ce82c8-f786-4207-abb9-f596c7ca99db"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:6c5be20a-81a0-42d0-a884-630b996a6355"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3454.25,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:6d25435e-4645-4756-b63e-83eab21db974",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "6d25435e-4645-4756-b63e-83eab21db974",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "53f6bc9f-1352-4952-ac60-717096b5e1e6"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2015-01-10T17:42:21-05:00",
- "end": "2016-01-10T17:42:21-05:00"
- },
- "created": "2015-01-10T17:42:21-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:53f6bc9f-1352-4952-ac60-717096b5e1e6"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2015-01-10T17:17:21-05:00",
- "end": "2015-01-10T17:42:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:6c5be20a-81a0-42d0-a884-630b996a6355"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2015-01-10T17:17:21-05:00",
- "end": "2015-01-10T17:42:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3454.25,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 690.85,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2763.4,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3454.25,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3454.25,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2763.4,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:65408ead-70b0-486b-8e7b-2fd16ab7fdba",
- "resource": {
- "resourceType": "Encounter",
- "id": "65408ead-70b0-486b-8e7b-2fd16ab7fdba",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2015-04-11T18:17:21-04:00",
- "end": "2015-04-11T18:50:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d06aaf9d-6861-47ee-b685-cd04d520d565",
- "resource": {
- "resourceType": "Procedure",
- "id": "d06aaf9d-6861-47ee-b685-cd04d520d565",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:65408ead-70b0-486b-8e7b-2fd16ab7fdba"
- },
- "performedPeriod": {
- "start": "2015-04-11T18:17:21-04:00",
- "end": "2015-04-11T18:35:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:fd86a942-270a-4d72-81e6-ef52966f8c17",
- "resource": {
- "resourceType": "Claim",
- "id": "fd86a942-270a-4d72-81e6-ef52966f8c17",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2015-04-11T18:17:21-04:00",
- "end": "2015-04-11T18:50:21-04:00"
- },
- "created": "2015-04-11T18:50:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:d06aaf9d-6861-47ee-b685-cd04d520d565"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:65408ead-70b0-486b-8e7b-2fd16ab7fdba"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2663.36,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:971d769e-6e07-4907-8efc-f833566c47b6",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "971d769e-6e07-4907-8efc-f833566c47b6",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "fd86a942-270a-4d72-81e6-ef52966f8c17"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2015-04-11T18:50:21-04:00",
- "end": "2016-04-11T18:50:21-04:00"
- },
- "created": "2015-04-11T18:50:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:fd86a942-270a-4d72-81e6-ef52966f8c17"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2015-04-11T18:17:21-04:00",
- "end": "2015-04-11T18:50:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:65408ead-70b0-486b-8e7b-2fd16ab7fdba"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2015-04-11T18:17:21-04:00",
- "end": "2015-04-11T18:50:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2663.36,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 532.672,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2130.688,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2663.36,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2663.36,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2130.688,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8419aa50-200a-4818-acb1-cc835db87389",
- "resource": {
- "resourceType": "Encounter",
- "id": "8419aa50-200a-4818-acb1-cc835db87389",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2015-05-17T18:17:21-04:00",
- "end": "2015-05-17T18:32:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:5438e75e-2e49-4e7b-89be-559f4082a40d",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "5438e75e-2e49-4e7b-89be-559f4082a40d",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "748962",
- "display": "Camila 28 Day Pack"
- }
- ],
- "text": "Camila 28 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8419aa50-200a-4818-acb1-cc835db87389"
- },
- "authoredOn": "2015-05-17T18:17:21-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:29ce8da9-3c6a-42b6-8c0d-985a2cfb2bb0",
- "resource": {
- "resourceType": "Claim",
- "id": "29ce8da9-3c6a-42b6-8c0d-985a2cfb2bb0",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2015-05-17T18:17:21-04:00",
- "end": "2015-05-17T18:32:21-04:00"
- },
- "created": "2015-05-17T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:5438e75e-2e49-4e7b-89be-559f4082a40d"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8419aa50-200a-4818-acb1-cc835db87389"
- }
- ]
- }
- ],
- "total": {
- "value": 23.37,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3fbcb415-14a1-4d9b-94ec-747d18aa6b65",
- "resource": {
- "resourceType": "Claim",
- "id": "3fbcb415-14a1-4d9b-94ec-747d18aa6b65",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2015-05-17T18:17:21-04:00",
- "end": "2015-05-17T18:32:21-04:00"
- },
- "created": "2015-05-17T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8419aa50-200a-4818-acb1-cc835db87389"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:417332f4-a834-4746-9376-728f446d7c2d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "417332f4-a834-4746-9376-728f446d7c2d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3fbcb415-14a1-4d9b-94ec-747d18aa6b65"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2015-05-17T18:32:21-04:00",
- "end": "2016-05-17T18:32:21-04:00"
- },
- "created": "2015-05-17T18:32:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3fbcb415-14a1-4d9b-94ec-747d18aa6b65"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2015-05-17T18:17:21-04:00",
- "end": "2015-05-17T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8419aa50-200a-4818-acb1-cc835db87389"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:cd6e6720-44a1-44e4-a979-b1d3c3a63858",
- "resource": {
- "resourceType": "Encounter",
- "id": "cd6e6720-44a1-44e4-a979-b1d3c3a63858",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2015-07-11T18:17:21-04:00",
- "end": "2015-07-11T18:44:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:6add2453-6642-40e3-b97c-3a98d9feb6c8",
- "resource": {
- "resourceType": "Procedure",
- "id": "6add2453-6642-40e3-b97c-3a98d9feb6c8",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:cd6e6720-44a1-44e4-a979-b1d3c3a63858"
- },
- "performedPeriod": {
- "start": "2015-07-11T18:17:21-04:00",
- "end": "2015-07-11T18:29:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:c9bb92d8-01ef-4d27-a752-d9cc376c84cd",
- "resource": {
- "resourceType": "Claim",
- "id": "c9bb92d8-01ef-4d27-a752-d9cc376c84cd",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2015-07-11T18:17:21-04:00",
- "end": "2015-07-11T18:44:21-04:00"
- },
- "created": "2015-07-11T18:44:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:6add2453-6642-40e3-b97c-3a98d9feb6c8"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:cd6e6720-44a1-44e4-a979-b1d3c3a63858"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3008.07,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d82d2a0e-73f2-470e-9a5b-d6b70b7be724",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d82d2a0e-73f2-470e-9a5b-d6b70b7be724",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c9bb92d8-01ef-4d27-a752-d9cc376c84cd"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2015-07-11T18:44:21-04:00",
- "end": "2016-07-11T18:44:21-04:00"
- },
- "created": "2015-07-11T18:44:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c9bb92d8-01ef-4d27-a752-d9cc376c84cd"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2015-07-11T18:17:21-04:00",
- "end": "2015-07-11T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:cd6e6720-44a1-44e4-a979-b1d3c3a63858"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2015-07-11T18:17:21-04:00",
- "end": "2015-07-11T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3008.07,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 601.614,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2406.456,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3008.07,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3008.07,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2406.456,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f6674a4e-8ea0-4555-a6d9-5246bc202bd0",
- "resource": {
- "resourceType": "Encounter",
- "id": "f6674a4e-8ea0-4555-a6d9-5246bc202bd0",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2015-10-10T18:17:21-04:00",
- "end": "2015-10-10T18:44:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:16d08f33-03b8-4ef3-9a3d-c35dbcd12292",
- "resource": {
- "resourceType": "Procedure",
- "id": "16d08f33-03b8-4ef3-9a3d-c35dbcd12292",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:f6674a4e-8ea0-4555-a6d9-5246bc202bd0"
- },
- "performedPeriod": {
- "start": "2015-10-10T18:17:21-04:00",
- "end": "2015-10-10T18:29:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:31c6dd8c-ccb2-44fe-b591-0ff264da0a7e",
- "resource": {
- "resourceType": "Claim",
- "id": "31c6dd8c-ccb2-44fe-b591-0ff264da0a7e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2015-10-10T18:17:21-04:00",
- "end": "2015-10-10T18:44:21-04:00"
- },
- "created": "2015-10-10T18:44:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:16d08f33-03b8-4ef3-9a3d-c35dbcd12292"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f6674a4e-8ea0-4555-a6d9-5246bc202bd0"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 1829.38,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:6e3e7f97-b649-4e0b-89db-f44335ba0461",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "6e3e7f97-b649-4e0b-89db-f44335ba0461",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "31c6dd8c-ccb2-44fe-b591-0ff264da0a7e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2015-10-10T18:44:21-04:00",
- "end": "2016-10-10T18:44:21-04:00"
- },
- "created": "2015-10-10T18:44:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:31c6dd8c-ccb2-44fe-b591-0ff264da0a7e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2015-10-10T18:17:21-04:00",
- "end": "2015-10-10T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f6674a4e-8ea0-4555-a6d9-5246bc202bd0"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2015-10-10T18:17:21-04:00",
- "end": "2015-10-10T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1829.38,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 365.87600000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1463.5040000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1829.38,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1829.38,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1463.5040000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:49837123-957e-4d4e-90cd-1108cae2759f",
- "resource": {
- "resourceType": "Encounter",
- "id": "49837123-957e-4d4e-90cd-1108cae2759f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2016-01-09T17:17:21-05:00",
- "end": "2016-01-09T17:46:21-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:996c2750-53bb-4061-bf88-7fec75656360",
- "resource": {
- "resourceType": "Procedure",
- "id": "996c2750-53bb-4061-bf88-7fec75656360",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:49837123-957e-4d4e-90cd-1108cae2759f"
- },
- "performedPeriod": {
- "start": "2016-01-09T17:17:21-05:00",
- "end": "2016-01-09T17:31:21-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:cb3ceb78-d0b2-41ad-802f-2eb1ed50e73d",
- "resource": {
- "resourceType": "Claim",
- "id": "cb3ceb78-d0b2-41ad-802f-2eb1ed50e73d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2016-01-09T17:17:21-05:00",
- "end": "2016-01-09T17:46:21-05:00"
- },
- "created": "2016-01-09T17:46:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:996c2750-53bb-4061-bf88-7fec75656360"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:49837123-957e-4d4e-90cd-1108cae2759f"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 1423.12,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:917a3312-aab4-421e-a4d3-a894db9ff093",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "917a3312-aab4-421e-a4d3-a894db9ff093",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "cb3ceb78-d0b2-41ad-802f-2eb1ed50e73d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2016-01-09T17:46:21-05:00",
- "end": "2017-01-09T17:46:21-05:00"
- },
- "created": "2016-01-09T17:46:21-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:cb3ceb78-d0b2-41ad-802f-2eb1ed50e73d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2016-01-09T17:17:21-05:00",
- "end": "2016-01-09T17:46:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:49837123-957e-4d4e-90cd-1108cae2759f"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2016-01-09T17:17:21-05:00",
- "end": "2016-01-09T17:46:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1423.12,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 284.62399999999997,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1138.4959999999999,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1423.12,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1423.12,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1138.4959999999999,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:5b32a091-6ca3-4515-ab2a-9bce2f30ea6b",
- "resource": {
- "resourceType": "Encounter",
- "id": "5b32a091-6ca3-4515-ab2a-9bce2f30ea6b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2016-04-09T18:17:21-04:00",
- "end": "2016-04-09T18:45:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:fc03628b-7c1a-4cc9-a6fb-a4878895ec34",
- "resource": {
- "resourceType": "Procedure",
- "id": "fc03628b-7c1a-4cc9-a6fb-a4878895ec34",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:5b32a091-6ca3-4515-ab2a-9bce2f30ea6b"
- },
- "performedPeriod": {
- "start": "2016-04-09T18:17:21-04:00",
- "end": "2016-04-09T18:30:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d70712cd-8b47-42bd-ab65-fcd95fbb15d6",
- "resource": {
- "resourceType": "Claim",
- "id": "d70712cd-8b47-42bd-ab65-fcd95fbb15d6",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2016-04-09T18:17:21-04:00",
- "end": "2016-04-09T18:45:21-04:00"
- },
- "created": "2016-04-09T18:45:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:fc03628b-7c1a-4cc9-a6fb-a4878895ec34"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:5b32a091-6ca3-4515-ab2a-9bce2f30ea6b"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 4103.75,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1a4624fc-cb45-4ea4-8f25-9aa4ef1bf82b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "1a4624fc-cb45-4ea4-8f25-9aa4ef1bf82b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d70712cd-8b47-42bd-ab65-fcd95fbb15d6"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2016-04-09T18:45:21-04:00",
- "end": "2017-04-09T18:45:21-04:00"
- },
- "created": "2016-04-09T18:45:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d70712cd-8b47-42bd-ab65-fcd95fbb15d6"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2016-04-09T18:17:21-04:00",
- "end": "2016-04-09T18:45:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:5b32a091-6ca3-4515-ab2a-9bce2f30ea6b"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2016-04-09T18:17:21-04:00",
- "end": "2016-04-09T18:45:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 4103.75,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 820.75,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3283.0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4103.75,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4103.75,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 3283.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:cc28d5d3-b8d8-42f2-a0a5-07ce65a0aa08",
- "resource": {
- "resourceType": "Encounter",
- "id": "cc28d5d3-b8d8-42f2-a0a5-07ce65a0aa08",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2016-07-09T18:17:21-04:00",
- "end": "2016-07-09T18:48:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:92b3a97a-a764-47fa-935d-1c538fd60a2c",
- "resource": {
- "resourceType": "Procedure",
- "id": "92b3a97a-a764-47fa-935d-1c538fd60a2c",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:cc28d5d3-b8d8-42f2-a0a5-07ce65a0aa08"
- },
- "performedPeriod": {
- "start": "2016-07-09T18:17:21-04:00",
- "end": "2016-07-09T18:33:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:c0516491-7567-4c67-92ae-fd22bf08a9e3",
- "resource": {
- "resourceType": "Claim",
- "id": "c0516491-7567-4c67-92ae-fd22bf08a9e3",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2016-07-09T18:17:21-04:00",
- "end": "2016-07-09T18:48:21-04:00"
- },
- "created": "2016-07-09T18:48:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:92b3a97a-a764-47fa-935d-1c538fd60a2c"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:cc28d5d3-b8d8-42f2-a0a5-07ce65a0aa08"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3884.50,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:981dbdef-f458-4db5-9490-a35931d92c50",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "981dbdef-f458-4db5-9490-a35931d92c50",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c0516491-7567-4c67-92ae-fd22bf08a9e3"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2016-07-09T18:48:21-04:00",
- "end": "2017-07-09T18:48:21-04:00"
- },
- "created": "2016-07-09T18:48:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c0516491-7567-4c67-92ae-fd22bf08a9e3"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2016-07-09T18:17:21-04:00",
- "end": "2016-07-09T18:48:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:cc28d5d3-b8d8-42f2-a0a5-07ce65a0aa08"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2016-07-09T18:17:21-04:00",
- "end": "2016-07-09T18:48:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3884.50,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 776.9000000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3107.6000000000004,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3884.50,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3884.50,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 3107.6000000000004,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:5ce2782d-6757-4c42-bfd5-ca2eb3a0f6a3",
- "resource": {
- "resourceType": "Encounter",
- "id": "5ce2782d-6757-4c42-bfd5-ca2eb3a0f6a3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4",
- "display": "Dr. Betty470 Zieme486"
- }
- }
- ],
- "period": {
- "start": "2016-08-20T18:17:21-04:00",
- "end": "2016-08-20T18:32:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:4a5b39f3-00ff-467f-908a-bed72ab23d8f",
- "resource": {
- "resourceType": "Observation",
- "id": "4a5b39f3-00ff-467f-908a-bed72ab23d8f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:5ce2782d-6757-4c42-bfd5-ca2eb3a0f6a3"
- },
- "effectiveDateTime": "2016-08-20T18:17:21-04:00",
- "issued": "2016-08-20T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 164.02997749587527,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:651eb197-63b2-4b87-a841-665d05e799ea",
- "resource": {
- "resourceType": "Observation",
- "id": "651eb197-63b2-4b87-a841-665d05e799ea",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:5ce2782d-6757-4c42-bfd5-ca2eb3a0f6a3"
- },
- "effectiveDateTime": "2016-08-20T18:17:21-04:00",
- "issued": "2016-08-20T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 0.07617951012096791,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:89a4b742-13c6-443a-9da0-af5e34ca6a04",
- "resource": {
- "resourceType": "Observation",
- "id": "89a4b742-13c6-443a-9da0-af5e34ca6a04",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:5ce2782d-6757-4c42-bfd5-ca2eb3a0f6a3"
- },
- "effectiveDateTime": "2016-08-20T18:17:21-04:00",
- "issued": "2016-08-20T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 82.25775937500322,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f26e6762-d656-4a82-a6ea-6d954e1208f5",
- "resource": {
- "resourceType": "Observation",
- "id": "f26e6762-d656-4a82-a6ea-6d954e1208f5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:5ce2782d-6757-4c42-bfd5-ca2eb3a0f6a3"
- },
- "effectiveDateTime": "2016-08-20T18:17:21-04:00",
- "issued": "2016-08-20T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 30.572462779166816,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3f6343cc-7774-4497-8319-e048bef5b03d",
- "resource": {
- "resourceType": "Observation",
- "id": "3f6343cc-7774-4497-8319-e048bef5b03d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:5ce2782d-6757-4c42-bfd5-ca2eb3a0f6a3"
- },
- "effectiveDateTime": "2016-08-20T18:17:21-04:00",
- "issued": "2016-08-20T18:17:21.160-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 82.98676042511327,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 109.99342117280867,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f098f4e2-cd7d-4b77-ade4-6ad58e286cf5",
- "resource": {
- "resourceType": "Observation",
- "id": "f098f4e2-cd7d-4b77-ade4-6ad58e286cf5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:5ce2782d-6757-4c42-bfd5-ca2eb3a0f6a3"
- },
- "effectiveDateTime": "2016-08-20T18:17:21-04:00",
- "issued": "2016-08-20T18:17:21.160-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2d417ee7-f720-47e3-a6b2-4964a858f50f",
- "resource": {
- "resourceType": "Immunization",
- "id": "2d417ee7-f720-47e3-a6b2-4964a858f50f",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:5ce2782d-6757-4c42-bfd5-ca2eb3a0f6a3"
- },
- "occurrenceDateTime": "2016-08-20T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:530bb890-71b7-4cc3-bb0f-8f9159213686",
- "resource": {
- "resourceType": "Claim",
- "id": "530bb890-71b7-4cc3-bb0f-8f9159213686",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2016-08-20T18:17:21-04:00",
- "end": "2016-08-20T18:32:21-04:00"
- },
- "created": "2016-08-20T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:2d417ee7-f720-47e3-a6b2-4964a858f50f"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:5ce2782d-6757-4c42-bfd5-ca2eb3a0f6a3"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:47cab8dc-a8b3-4940-93a5-4ce46c266a97",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "47cab8dc-a8b3-4940-93a5-4ce46c266a97",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "530bb890-71b7-4cc3-bb0f-8f9159213686"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2016-08-20T18:32:21-04:00",
- "end": "2017-08-20T18:32:21-04:00"
- },
- "created": "2016-08-20T18:32:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:530bb890-71b7-4cc3-bb0f-8f9159213686"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-08-20T18:17:21-04:00",
- "end": "2016-08-20T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:5ce2782d-6757-4c42-bfd5-ca2eb3a0f6a3"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2016-08-20T18:17:21-04:00",
- "end": "2016-08-20T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:cddbc246-1b3a-4a20-8544-512bd969fe1c",
- "resource": {
- "resourceType": "Encounter",
- "id": "cddbc246-1b3a-4a20-8544-512bd969fe1c",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2016-10-08T18:17:21-04:00",
- "end": "2016-10-08T18:44:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:94bf5ba6-4c02-4a85-abb4-25fca07677e6",
- "resource": {
- "resourceType": "Procedure",
- "id": "94bf5ba6-4c02-4a85-abb4-25fca07677e6",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:cddbc246-1b3a-4a20-8544-512bd969fe1c"
- },
- "performedPeriod": {
- "start": "2016-10-08T18:17:21-04:00",
- "end": "2016-10-08T18:29:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:6a6fd117-2533-43d2-b8d3-2e75cdb5d22a",
- "resource": {
- "resourceType": "Claim",
- "id": "6a6fd117-2533-43d2-b8d3-2e75cdb5d22a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2016-10-08T18:17:21-04:00",
- "end": "2016-10-08T18:44:21-04:00"
- },
- "created": "2016-10-08T18:44:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:94bf5ba6-4c02-4a85-abb4-25fca07677e6"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:cddbc246-1b3a-4a20-8544-512bd969fe1c"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2873.08,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9b9ef24c-88dc-4402-a582-9d03b8ddf112",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9b9ef24c-88dc-4402-a582-9d03b8ddf112",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "6a6fd117-2533-43d2-b8d3-2e75cdb5d22a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2016-10-08T18:44:21-04:00",
- "end": "2017-10-08T18:44:21-04:00"
- },
- "created": "2016-10-08T18:44:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:6a6fd117-2533-43d2-b8d3-2e75cdb5d22a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2016-10-08T18:17:21-04:00",
- "end": "2016-10-08T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:cddbc246-1b3a-4a20-8544-512bd969fe1c"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2016-10-08T18:17:21-04:00",
- "end": "2016-10-08T18:44:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2873.08,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 574.616,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2298.464,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2873.08,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2873.08,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2298.464,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:083f8385-f957-4bbe-b7f9-2782aa2d5b2d",
- "resource": {
- "resourceType": "Encounter",
- "id": "083f8385-f957-4bbe-b7f9-2782aa2d5b2d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2017-01-07T17:17:21-05:00",
- "end": "2017-01-07T17:48:21-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:6e3f55ee-b986-4d76-a3af-d6d4a670aa53",
- "resource": {
- "resourceType": "Procedure",
- "id": "6e3f55ee-b986-4d76-a3af-d6d4a670aa53",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:083f8385-f957-4bbe-b7f9-2782aa2d5b2d"
- },
- "performedPeriod": {
- "start": "2017-01-07T17:17:21-05:00",
- "end": "2017-01-07T17:33:21-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:e327d50c-01c0-4cd8-beae-f026105ff23a",
- "resource": {
- "resourceType": "Claim",
- "id": "e327d50c-01c0-4cd8-beae-f026105ff23a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2017-01-07T17:17:21-05:00",
- "end": "2017-01-07T17:48:21-05:00"
- },
- "created": "2017-01-07T17:48:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:6e3f55ee-b986-4d76-a3af-d6d4a670aa53"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:083f8385-f957-4bbe-b7f9-2782aa2d5b2d"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2944.93,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:910bf5b6-4442-46ba-a78f-8d36bcaa2497",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "910bf5b6-4442-46ba-a78f-8d36bcaa2497",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "e327d50c-01c0-4cd8-beae-f026105ff23a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2017-01-07T17:48:21-05:00",
- "end": "2018-01-07T17:48:21-05:00"
- },
- "created": "2017-01-07T17:48:21-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:e327d50c-01c0-4cd8-beae-f026105ff23a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2017-01-07T17:17:21-05:00",
- "end": "2017-01-07T17:48:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:083f8385-f957-4bbe-b7f9-2782aa2d5b2d"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2017-01-07T17:17:21-05:00",
- "end": "2017-01-07T17:48:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2944.93,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 588.986,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2355.944,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2944.93,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2944.93,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2355.944,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:d29e8018-9bdd-415f-b039-a7eba9760800",
- "resource": {
- "resourceType": "Encounter",
- "id": "d29e8018-9bdd-415f-b039-a7eba9760800",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2017-04-08T18:17:21-04:00",
- "end": "2017-04-08T18:43:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:50fd8fbc-71fe-4b84-953d-3b6fad9c44fc",
- "resource": {
- "resourceType": "Procedure",
- "id": "50fd8fbc-71fe-4b84-953d-3b6fad9c44fc",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:d29e8018-9bdd-415f-b039-a7eba9760800"
- },
- "performedPeriod": {
- "start": "2017-04-08T18:17:21-04:00",
- "end": "2017-04-08T18:28:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:f1e37eb1-a770-4e38-a3a5-bda8e16affab",
- "resource": {
- "resourceType": "Claim",
- "id": "f1e37eb1-a770-4e38-a3a5-bda8e16affab",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2017-04-08T18:17:21-04:00",
- "end": "2017-04-08T18:43:21-04:00"
- },
- "created": "2017-04-08T18:43:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:50fd8fbc-71fe-4b84-953d-3b6fad9c44fc"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d29e8018-9bdd-415f-b039-a7eba9760800"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2723.15,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1c2eb8aa-8116-4556-8e96-4a37ab8580ca",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "1c2eb8aa-8116-4556-8e96-4a37ab8580ca",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f1e37eb1-a770-4e38-a3a5-bda8e16affab"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2017-04-08T18:43:21-04:00",
- "end": "2018-04-08T18:43:21-04:00"
- },
- "created": "2017-04-08T18:43:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f1e37eb1-a770-4e38-a3a5-bda8e16affab"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2017-04-08T18:17:21-04:00",
- "end": "2017-04-08T18:43:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:d29e8018-9bdd-415f-b039-a7eba9760800"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2017-04-08T18:17:21-04:00",
- "end": "2017-04-08T18:43:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2723.15,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 544.63,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2178.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2723.15,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2723.15,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2178.52,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:fbf85f0b-6ee2-4db5-aac6-abfb8404b478",
- "resource": {
- "resourceType": "Encounter",
- "id": "fbf85f0b-6ee2-4db5-aac6-abfb8404b478",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2017-07-08T18:17:21-04:00",
- "end": "2017-07-08T18:45:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:ee75b445-a076-4999-8099-06d2d73a5230",
- "resource": {
- "resourceType": "Procedure",
- "id": "ee75b445-a076-4999-8099-06d2d73a5230",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:fbf85f0b-6ee2-4db5-aac6-abfb8404b478"
- },
- "performedPeriod": {
- "start": "2017-07-08T18:17:21-04:00",
- "end": "2017-07-08T18:30:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:eb4dce6e-fd73-4273-af71-42613e62f6c6",
- "resource": {
- "resourceType": "Claim",
- "id": "eb4dce6e-fd73-4273-af71-42613e62f6c6",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2017-07-08T18:17:21-04:00",
- "end": "2017-07-08T18:45:21-04:00"
- },
- "created": "2017-07-08T18:45:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:ee75b445-a076-4999-8099-06d2d73a5230"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:fbf85f0b-6ee2-4db5-aac6-abfb8404b478"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 4535.68,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4049bf4b-0f7c-481a-b240-23e5479dbd23",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "4049bf4b-0f7c-481a-b240-23e5479dbd23",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "eb4dce6e-fd73-4273-af71-42613e62f6c6"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2017-07-08T18:45:21-04:00",
- "end": "2018-07-08T18:45:21-04:00"
- },
- "created": "2017-07-08T18:45:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:eb4dce6e-fd73-4273-af71-42613e62f6c6"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2017-07-08T18:17:21-04:00",
- "end": "2017-07-08T18:45:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:fbf85f0b-6ee2-4db5-aac6-abfb8404b478"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2017-07-08T18:17:21-04:00",
- "end": "2017-07-08T18:45:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 4535.68,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 907.1360000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3628.5440000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4535.68,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4535.68,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 3628.5440000000003,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:98eec5c2-a967-48c8-8007-a4ffcef793b6",
- "resource": {
- "resourceType": "Encounter",
- "id": "98eec5c2-a967-48c8-8007-a4ffcef793b6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2017-10-07T18:17:21-04:00",
- "end": "2017-10-07T18:48:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:578e9d68-08d2-4ed0-8013-1235ec99837e",
- "resource": {
- "resourceType": "Procedure",
- "id": "578e9d68-08d2-4ed0-8013-1235ec99837e",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:98eec5c2-a967-48c8-8007-a4ffcef793b6"
- },
- "performedPeriod": {
- "start": "2017-10-07T18:17:21-04:00",
- "end": "2017-10-07T18:33:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:c6e9d9ad-113f-465b-a3af-8034baec6b64",
- "resource": {
- "resourceType": "Claim",
- "id": "c6e9d9ad-113f-465b-a3af-8034baec6b64",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2017-10-07T18:17:21-04:00",
- "end": "2017-10-07T18:48:21-04:00"
- },
- "created": "2017-10-07T18:48:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:578e9d68-08d2-4ed0-8013-1235ec99837e"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:98eec5c2-a967-48c8-8007-a4ffcef793b6"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2966.54,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0a4adad1-ec87-4d86-9555-20436074732f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0a4adad1-ec87-4d86-9555-20436074732f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c6e9d9ad-113f-465b-a3af-8034baec6b64"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2017-10-07T18:48:21-04:00",
- "end": "2018-10-07T18:48:21-04:00"
- },
- "created": "2017-10-07T18:48:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c6e9d9ad-113f-465b-a3af-8034baec6b64"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2017-10-07T18:17:21-04:00",
- "end": "2017-10-07T18:48:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:98eec5c2-a967-48c8-8007-a4ffcef793b6"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2017-10-07T18:17:21-04:00",
- "end": "2017-10-07T18:48:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2966.54,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 593.308,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2373.232,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2966.54,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2966.54,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2373.232,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:0059d2e6-faef-4775-8f72-f98498b8fdcf",
- "resource": {
- "resourceType": "Encounter",
- "id": "0059d2e6-faef-4775-8f72-f98498b8fdcf",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2018-01-06T17:17:21-05:00",
- "end": "2018-01-06T17:49:21-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:54fa1ebe-0dfe-478d-8f01-ff9b6ffc6525",
- "resource": {
- "resourceType": "Procedure",
- "id": "54fa1ebe-0dfe-478d-8f01-ff9b6ffc6525",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:0059d2e6-faef-4775-8f72-f98498b8fdcf"
- },
- "performedPeriod": {
- "start": "2018-01-06T17:17:21-05:00",
- "end": "2018-01-06T17:34:21-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:e078bba9-f618-4d84-8303-4d38b71ed4f0",
- "resource": {
- "resourceType": "Claim",
- "id": "e078bba9-f618-4d84-8303-4d38b71ed4f0",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2018-01-06T17:17:21-05:00",
- "end": "2018-01-06T17:49:21-05:00"
- },
- "created": "2018-01-06T17:49:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:54fa1ebe-0dfe-478d-8f01-ff9b6ffc6525"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:0059d2e6-faef-4775-8f72-f98498b8fdcf"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2662.96,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3acf39c7-14be-44de-988c-9d739b66e8c2",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3acf39c7-14be-44de-988c-9d739b66e8c2",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "e078bba9-f618-4d84-8303-4d38b71ed4f0"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2018-01-06T17:49:21-05:00",
- "end": "2019-01-06T17:49:21-05:00"
- },
- "created": "2018-01-06T17:49:21-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:e078bba9-f618-4d84-8303-4d38b71ed4f0"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2018-01-06T17:17:21-05:00",
- "end": "2018-01-06T17:49:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:0059d2e6-faef-4775-8f72-f98498b8fdcf"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2018-01-06T17:17:21-05:00",
- "end": "2018-01-06T17:49:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2662.96,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 532.592,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2130.368,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2662.96,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2662.96,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2130.368,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:6b5acf6e-ca9a-4a0a-8af3-a744cff15515",
- "resource": {
- "resourceType": "Encounter",
- "id": "6b5acf6e-ca9a-4a0a-8af3-a744cff15515",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2018-03-24T18:17:21-04:00",
- "end": "2018-03-24T19:02:21-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:855b0e2a-d2ad-4f61-a43e-a51fbfae6bdb",
- "resource": {
- "resourceType": "Condition",
- "id": "855b0e2a-d2ad-4f61-a43e-a51fbfae6bdb",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:6b5acf6e-ca9a-4a0a-8af3-a744cff15515"
- },
- "onsetDateTime": "2018-03-24T18:17:21-04:00",
- "abatementDateTime": "2018-03-31T18:17:21-04:00",
- "recordedDate": "2018-03-24T18:17:21-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:5b44085b-64b1-4867-8301-a1bb8c63f913",
- "resource": {
- "resourceType": "Condition",
- "id": "5b44085b-64b1-4867-8301-a1bb8c63f913",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "35999006",
- "display": "Blighted ovum"
- }
- ],
- "text": "Blighted ovum"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:6b5acf6e-ca9a-4a0a-8af3-a744cff15515"
- },
- "onsetDateTime": "2018-03-24T18:17:21-04:00",
- "abatementDateTime": "2018-03-31T18:17:21-04:00",
- "recordedDate": "2018-03-24T18:17:21-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:53dc6daf-c224-4670-834b-12557d4d8d76",
- "resource": {
- "resourceType": "Procedure",
- "id": "53dc6daf-c224-4670-834b-12557d4d8d76",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:6b5acf6e-ca9a-4a0a-8af3-a744cff15515"
- },
- "performedPeriod": {
- "start": "2018-03-24T18:17:21-04:00",
- "end": "2018-03-24T18:32:21-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:855b0e2a-d2ad-4f61-a43e-a51fbfae6bdb",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:2fc7d00c-6f83-41be-98f7-e3af2ca745a5",
- "resource": {
- "resourceType": "Procedure",
- "id": "2fc7d00c-6f83-41be-98f7-e3af2ca745a5",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:6b5acf6e-ca9a-4a0a-8af3-a744cff15515"
- },
- "performedPeriod": {
- "start": "2018-03-24T18:17:21-04:00",
- "end": "2018-03-24T18:32:21-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:855b0e2a-d2ad-4f61-a43e-a51fbfae6bdb",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d943df33-3811-4149-a842-355bdd0edc6b",
- "resource": {
- "resourceType": "Claim",
- "id": "d943df33-3811-4149-a842-355bdd0edc6b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2018-03-24T18:17:21-04:00",
- "end": "2018-03-24T19:02:21-04:00"
- },
- "created": "2018-03-24T19:02:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:855b0e2a-d2ad-4f61-a43e-a51fbfae6bdb"
- }
- },
- {
- "sequence": 2,
- "diagnosisReference": {
- "reference": "urn:uuid:5b44085b-64b1-4867-8301-a1bb8c63f913"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:53dc6daf-c224-4670-834b-12557d4d8d76"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:2fc7d00c-6f83-41be-98f7-e3af2ca745a5"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:6b5acf6e-ca9a-4a0a-8af3-a744cff15515"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "net": {
- "value": 4584.34,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "net": {
- "value": 11737.23,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "diagnosisSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "35999006",
- "display": "Blighted ovum"
- }
- ],
- "text": "Blighted ovum"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:c3712ead-2949-4bc3-810c-67d83cffd5e6",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "c3712ead-2949-4bc3-810c-67d83cffd5e6",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d943df33-3811-4149-a842-355bdd0edc6b"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2018-03-24T19:02:21-04:00",
- "end": "2019-03-24T19:02:21-04:00"
- },
- "created": "2018-03-24T19:02:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d943df33-3811-4149-a842-355bdd0edc6b"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:855b0e2a-d2ad-4f61-a43e-a51fbfae6bdb"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisReference": {
- "reference": "urn:uuid:5b44085b-64b1-4867-8301-a1bb8c63f913"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- },
- "servicedPeriod": {
- "start": "2018-03-24T18:17:21-04:00",
- "end": "2018-03-24T19:02:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:6b5acf6e-ca9a-4a0a-8af3-a744cff15515"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- },
- "servicedPeriod": {
- "start": "2018-03-24T18:17:21-04:00",
- "end": "2018-03-24T19:02:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "servicedPeriod": {
- "start": "2018-03-24T18:17:21-04:00",
- "end": "2018-03-24T19:02:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 4584.34,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 916.868,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3667.472,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4584.34,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4584.34,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "servicedPeriod": {
- "start": "2018-03-24T18:17:21-04:00",
- "end": "2018-03-24T19:02:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 11737.23,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2347.446,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 9389.784,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 11737.23,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 11737.23,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "diagnosisSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "35999006",
- "display": "Blighted ovum"
- }
- ],
- "text": "Blighted ovum"
- },
- "servicedPeriod": {
- "start": "2018-03-24T18:17:21-04:00",
- "end": "2018-03-24T19:02:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 13057.256,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:21d75f42-aef5-4614-b6e6-7f6b84a41e19",
- "resource": {
- "resourceType": "Encounter",
- "id": "21d75f42-aef5-4614-b6e6-7f6b84a41e19",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2018-03-31T18:17:21-04:00",
- "end": "2018-03-31T19:02:21-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "35999006",
- "display": "Blighted ovum"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:12edba89-8f4a-4e90-bcb4-2e369c0de441",
- "resource": {
- "resourceType": "Procedure",
- "id": "12edba89-8f4a-4e90-bcb4-2e369c0de441",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination"
- }
- ],
- "text": "Physical examination"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:21d75f42-aef5-4614-b6e6-7f6b84a41e19"
- },
- "performedPeriod": {
- "start": "2018-03-31T18:17:21-04:00",
- "end": "2018-03-31T18:32:21-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:855b0e2a-d2ad-4f61-a43e-a51fbfae6bdb",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:1c8fde63-7ff3-4bbc-aa88-17e3e63c0b7b",
- "resource": {
- "resourceType": "Procedure",
- "id": "1c8fde63-7ff3-4bbc-aa88-17e3e63c0b7b",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:21d75f42-aef5-4614-b6e6-7f6b84a41e19"
- },
- "performedPeriod": {
- "start": "2018-03-31T18:17:21-04:00",
- "end": "2018-03-31T18:32:21-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:855b0e2a-d2ad-4f61-a43e-a51fbfae6bdb",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:36909a03-b0f5-40e0-9456-d1339bcd8065",
- "resource": {
- "resourceType": "Claim",
- "id": "36909a03-b0f5-40e0-9456-d1339bcd8065",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2018-03-31T18:17:21-04:00",
- "end": "2018-03-31T19:02:21-04:00"
- },
- "created": "2018-03-31T19:02:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:12edba89-8f4a-4e90-bcb4-2e369c0de441"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:1c8fde63-7ff3-4bbc-aa88-17e3e63c0b7b"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:21d75f42-aef5-4614-b6e6-7f6b84a41e19"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination"
- }
- ],
- "text": "Physical examination"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1ea85288-8469-4095-96ac-2edf9c1016bc",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "1ea85288-8469-4095-96ac-2edf9c1016bc",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "36909a03-b0f5-40e0-9456-d1339bcd8065"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2018-03-31T19:02:21-04:00",
- "end": "2019-03-31T19:02:21-04:00"
- },
- "created": "2018-03-31T19:02:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:36909a03-b0f5-40e0-9456-d1339bcd8065"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2018-03-31T18:17:21-04:00",
- "end": "2018-03-31T19:02:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:21d75f42-aef5-4614-b6e6-7f6b84a41e19"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination"
- }
- ],
- "text": "Physical examination"
- },
- "servicedPeriod": {
- "start": "2018-03-31T18:17:21-04:00",
- "end": "2018-03-31T19:02:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "servicedPeriod": {
- "start": "2018-03-31T18:17:21-04:00",
- "end": "2018-03-31T19:02:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 826.64,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8a9e085a-69e9-481b-8765-c7eda2d006d9",
- "resource": {
- "resourceType": "Encounter",
- "id": "8a9e085a-69e9-481b-8765-c7eda2d006d9",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2018-05-01T18:17:21-04:00",
- "end": "2018-05-01T18:32:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2f251e4a-ee02-4a9d-a07a-b5d778b97685",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "2f251e4a-ee02-4a9d-a07a-b5d778b97685",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "748879",
- "display": "Levora 0.15/30 28 Day Pack"
- }
- ],
- "text": "Levora 0.15/30 28 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8a9e085a-69e9-481b-8765-c7eda2d006d9"
- },
- "authoredOn": "2018-05-01T18:17:21-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:fc85bffe-e986-41f7-a6a3-ccebd1abc2e5",
- "resource": {
- "resourceType": "Claim",
- "id": "fc85bffe-e986-41f7-a6a3-ccebd1abc2e5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2018-05-01T18:17:21-04:00",
- "end": "2018-05-01T18:32:21-04:00"
- },
- "created": "2018-05-01T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:2f251e4a-ee02-4a9d-a07a-b5d778b97685"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8a9e085a-69e9-481b-8765-c7eda2d006d9"
- }
- ]
- }
- ],
- "total": {
- "value": 34.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:ca605a8b-21f4-4417-ab35-6dcced48e8ae",
- "resource": {
- "resourceType": "Claim",
- "id": "ca605a8b-21f4-4417-ab35-6dcced48e8ae",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2018-05-01T18:17:21-04:00",
- "end": "2018-05-01T18:32:21-04:00"
- },
- "created": "2018-05-01T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8a9e085a-69e9-481b-8765-c7eda2d006d9"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:8f2a2f25-e496-4161-ad29-a8e5354669d0",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "8f2a2f25-e496-4161-ad29-a8e5354669d0",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ca605a8b-21f4-4417-ab35-6dcced48e8ae"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2018-05-01T18:32:21-04:00",
- "end": "2019-05-01T18:32:21-04:00"
- },
- "created": "2018-05-01T18:32:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ca605a8b-21f4-4417-ab35-6dcced48e8ae"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2018-05-01T18:17:21-04:00",
- "end": "2018-05-01T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8a9e085a-69e9-481b-8765-c7eda2d006d9"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364",
- "resource": {
- "resourceType": "Encounter",
- "id": "baaf3a76-3df9-4741-a1ce-d98582533364",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4",
- "display": "Dr. Betty470 Zieme486"
- }
- }
- ],
- "period": {
- "start": "2018-07-28T18:17:21-04:00",
- "end": "2018-07-28T18:47:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:7fe64616-25ca-41a8-9754-81fb1c7d2756",
- "resource": {
- "resourceType": "Observation",
- "id": "7fe64616-25ca-41a8-9754-81fb1c7d2756",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "effectiveDateTime": "2018-07-28T18:17:21-04:00",
- "issued": "2018-07-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 164.02997749587527,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fe328e2b-176d-431c-9ab4-08192657a606",
- "resource": {
- "resourceType": "Observation",
- "id": "fe328e2b-176d-431c-9ab4-08192657a606",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "effectiveDateTime": "2018-07-28T18:17:21-04:00",
- "issued": "2018-07-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 3.760117065923762,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5b64a429-438b-4e8f-bf4f-d1bbced6d90a",
- "resource": {
- "resourceType": "Observation",
- "id": "5b64a429-438b-4e8f-bf4f-d1bbced6d90a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "effectiveDateTime": "2018-07-28T18:17:21-04:00",
- "issued": "2018-07-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 76.46374405308057,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fb7965c0-d064-41a4-a942-803602d6f0dc",
- "resource": {
- "resourceType": "Observation",
- "id": "fb7965c0-d064-41a4-a942-803602d6f0dc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "effectiveDateTime": "2018-07-28T18:17:21-04:00",
- "issued": "2018-07-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 28.4190207316652,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ced4794a-5b42-4e81-a2d9-869e0c6e4164",
- "resource": {
- "resourceType": "Observation",
- "id": "ced4794a-5b42-4e81-a2d9-869e0c6e4164",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "effectiveDateTime": "2018-07-28T18:17:21-04:00",
- "issued": "2018-07-28T18:17:21.160-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 78.75651186365015,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 106.57493446867214,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d4d60abb-048e-4424-ba4a-f63f3fb0e553",
- "resource": {
- "resourceType": "Observation",
- "id": "d4d60abb-048e-4424-ba4a-f63f3fb0e553",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "effectiveDateTime": "2018-07-28T18:17:21-04:00",
- "issued": "2018-07-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 163.19341734705668,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9dd9a2ef-73c8-4794-966d-fc6777753d90",
- "resource": {
- "resourceType": "Observation",
- "id": "9dd9a2ef-73c8-4794-966d-fc6777753d90",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "effectiveDateTime": "2018-07-28T18:17:21-04:00",
- "issued": "2018-07-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 128.75691074538827,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:73d375c1-24ca-4a20-b3ff-6e3f9eed82f9",
- "resource": {
- "resourceType": "Observation",
- "id": "73d375c1-24ca-4a20-b3ff-6e3f9eed82f9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "effectiveDateTime": "2018-07-28T18:17:21-04:00",
- "issued": "2018-07-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 59.14809695971823,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6319cbfa-6a36-448f-a462-1f8893a16dd4",
- "resource": {
- "resourceType": "Observation",
- "id": "6319cbfa-6a36-448f-a462-1f8893a16dd4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "effectiveDateTime": "2018-07-28T18:17:21-04:00",
- "issued": "2018-07-28T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 78.2939382382608,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1e426c69-17e2-41f0-8556-364bba26bf12",
- "resource": {
- "resourceType": "Observation",
- "id": "1e426c69-17e2-41f0-8556-364bba26bf12",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "effectiveDateTime": "2018-07-28T18:17:21-04:00",
- "issued": "2018-07-28T18:17:21.160-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d244c0e2-3a19-4be7-8669-a44eb7672693",
- "resource": {
- "resourceType": "Procedure",
- "id": "d244c0e2-3a19-4be7-8669-a44eb7672693",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "performedPeriod": {
- "start": "2018-07-28T18:17:21-04:00",
- "end": "2018-07-28T18:32:21-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:3f059903-347f-4d74-9c05-eee0c60e5e57",
- "resource": {
- "resourceType": "Immunization",
- "id": "3f059903-347f-4d74-9c05-eee0c60e5e57",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "occurrenceDateTime": "2018-07-28T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:a8b2a064-f9b4-4054-a66a-7bc5f133af6a",
- "resource": {
- "resourceType": "Immunization",
- "id": "a8b2a064-f9b4-4054-a66a-7bc5f133af6a",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "occurrenceDateTime": "2018-07-28T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:3d782098-f8b8-4c26-9017-58da78397d8e",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "3d782098-f8b8-4c26-9017-58da78397d8e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- },
- "effectiveDateTime": "2018-07-28T18:17:21-04:00",
- "issued": "2018-07-28T18:17:21.160-04:00",
- "result": [
- {
- "reference": "urn:uuid:d4d60abb-048e-4424-ba4a-f63f3fb0e553",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:9dd9a2ef-73c8-4794-966d-fc6777753d90",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:73d375c1-24ca-4a20-b3ff-6e3f9eed82f9",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:6319cbfa-6a36-448f-a462-1f8893a16dd4",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:d94cee9f-202c-4cfd-9020-2e951f44b5af",
- "resource": {
- "resourceType": "Claim",
- "id": "d94cee9f-202c-4cfd-9020-2e951f44b5af",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2018-07-28T18:17:21-04:00",
- "end": "2018-07-28T18:47:21-04:00"
- },
- "created": "2018-07-28T18:47:21-04:00",
- "provider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:3f059903-347f-4d74-9c05-eee0c60e5e57"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:a8b2a064-f9b4-4054-a66a-7bc5f133af6a"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:d244c0e2-3a19-4be7-8669-a44eb7672693"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 731.30,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:17f46928-a361-493f-8563-296c91d39986",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "17f46928-a361-493f-8563-296c91d39986",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d94cee9f-202c-4cfd-9020-2e951f44b5af"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2018-07-28T18:47:21-04:00",
- "end": "2019-07-28T18:47:21-04:00"
- },
- "created": "2018-07-28T18:47:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d94cee9f-202c-4cfd-9020-2e951f44b5af"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-07-28T18:17:21-04:00",
- "end": "2018-07-28T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:baaf3a76-3df9-4741-a1ce-d98582533364"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "servicedPeriod": {
- "start": "2018-07-28T18:17:21-04:00",
- "end": "2018-07-28T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2018-07-28T18:17:21-04:00",
- "end": "2018-07-28T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-07-28T18:17:21-04:00",
- "end": "2018-07-28T18:47:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 731.30,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 146.26,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 585.04,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 731.30,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 731.30,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 809.872,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f2fce2b2-3e48-4035-abb3-a2f9d7330ce8",
- "resource": {
- "resourceType": "Encounter",
- "id": "f2fce2b2-3e48-4035-abb3-a2f9d7330ce8",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2019-01-09T17:17:21-05:00",
- "end": "2019-01-09T17:45:21-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:53adcad1-a0ec-4d88-93aa-0417c5db9861",
- "resource": {
- "resourceType": "Condition",
- "id": "53adcad1-a0ec-4d88-93aa-0417c5db9861",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:f2fce2b2-3e48-4035-abb3-a2f9d7330ce8"
- },
- "onsetDateTime": "2019-01-09T17:17:21-05:00",
- "abatementDateTime": "2019-01-16T17:17:21-05:00",
- "recordedDate": "2019-01-09T17:17:21-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:e50bbf08-1793-4136-9f10-198934eb8a79",
- "resource": {
- "resourceType": "Procedure",
- "id": "e50bbf08-1793-4136-9f10-198934eb8a79",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269911007",
- "display": "Sputum examination (procedure)"
- }
- ],
- "text": "Sputum examination (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:f2fce2b2-3e48-4035-abb3-a2f9d7330ce8"
- },
- "performedPeriod": {
- "start": "2019-01-09T17:17:21-05:00",
- "end": "2019-01-09T17:30:21-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:53adcad1-a0ec-4d88-93aa-0417c5db9861",
- "display": "Acute bronchitis (disorder)"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:a77c16be-6329-4716-9fae-527ac4aa4f9c",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "a77c16be-6329-4716-9fae-527ac4aa4f9c",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "1043400",
- "display": "Acetaminophen 21.7 MG/ML / Dextromethorphan Hydrobromide 1 MG/ML / doxylamine succinate 0.417 MG/ML Oral Solution"
- }
- ],
- "text": "Acetaminophen 21.7 MG/ML / Dextromethorphan Hydrobromide 1 MG/ML / doxylamine succinate 0.417 MG/ML Oral Solution"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:f2fce2b2-3e48-4035-abb3-a2f9d7330ce8"
- },
- "authoredOn": "2019-01-09T17:17:21-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:53adcad1-a0ec-4d88-93aa-0417c5db9861"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:c4663a67-c5e8-4af0-a62d-453b1690c00f",
- "resource": {
- "resourceType": "Claim",
- "id": "c4663a67-c5e8-4af0-a62d-453b1690c00f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2019-01-09T17:17:21-05:00",
- "end": "2019-01-09T17:45:21-05:00"
- },
- "created": "2019-01-09T17:45:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:a77c16be-6329-4716-9fae-527ac4aa4f9c"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f2fce2b2-3e48-4035-abb3-a2f9d7330ce8"
- }
- ]
- }
- ],
- "total": {
- "value": 4.91,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:a1785443-6d33-4b35-8d69-7224b9c5be4e",
- "resource": {
- "resourceType": "CareTeam",
- "id": "a1785443-6d33-4b35-8d69-7224b9c5be4e",
- "status": "inactive",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:f2fce2b2-3e48-4035-abb3-a2f9d7330ce8"
- },
- "period": {
- "start": "2019-01-09T17:17:21-05:00",
- "end": "2019-08-03T18:17:21-04:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:c0f52e41-2083-4439-948b-116c9aad18a6",
- "resource": {
- "resourceType": "CarePlan",
- "id": "c0f52e41-2083-4439-948b-116c9aad18a6",
- "text": {
- "status": "generated",
- "div": "Care Plan for Respiratory therapy.
Activities:
- Respiratory therapy
- Respiratory therapy
Care plan is meant to treat Acute bronchitis (disorder).
"
- },
- "status": "completed",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "53950000",
- "display": "Respiratory therapy"
- }
- ],
- "text": "Respiratory therapy"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:f2fce2b2-3e48-4035-abb3-a2f9d7330ce8"
- },
- "period": {
- "start": "2019-01-09T17:17:21-05:00",
- "end": "2019-08-03T18:17:21-04:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:a1785443-6d33-4b35-8d69-7224b9c5be4e"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:53adcad1-a0ec-4d88-93aa-0417c5db9861"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "304510005",
- "display": "Recommendation to avoid exercise"
- }
- ],
- "text": "Recommendation to avoid exercise"
- },
- "status": "completed",
- "location": {
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "371605008",
- "display": "Deep breathing and coughing exercises"
- }
- ],
- "text": "Deep breathing and coughing exercises"
- },
- "status": "completed",
- "location": {
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:b619b965-d9db-4b41-b46a-3e66e0f246dd",
- "resource": {
- "resourceType": "Claim",
- "id": "b619b965-d9db-4b41-b46a-3e66e0f246dd",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2019-01-09T17:17:21-05:00",
- "end": "2019-01-09T17:45:21-05:00"
- },
- "created": "2019-01-09T17:45:21-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:53adcad1-a0ec-4d88-93aa-0417c5db9861"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:e50bbf08-1793-4136-9f10-198934eb8a79"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f2fce2b2-3e48-4035-abb3-a2f9d7330ce8"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269911007",
- "display": "Sputum examination (procedure)"
- }
- ],
- "text": "Sputum examination (procedure)"
- },
- "net": {
- "value": 11831.60,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:c631b9fb-bd60-40a9-8e4a-2964ac087325",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "c631b9fb-bd60-40a9-8e4a-2964ac087325",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b619b965-d9db-4b41-b46a-3e66e0f246dd"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2019-01-09T17:45:21-05:00",
- "end": "2020-01-09T17:45:21-05:00"
- },
- "created": "2019-01-09T17:45:21-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b619b965-d9db-4b41-b46a-3e66e0f246dd"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:53adcad1-a0ec-4d88-93aa-0417c5db9861"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2019-01-09T17:17:21-05:00",
- "end": "2019-01-09T17:45:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f2fce2b2-3e48-4035-abb3-a2f9d7330ce8"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2019-01-09T17:17:21-05:00",
- "end": "2019-01-09T17:45:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269911007",
- "display": "Sputum examination (procedure)"
- }
- ],
- "text": "Sputum examination (procedure)"
- },
- "servicedPeriod": {
- "start": "2019-01-09T17:17:21-05:00",
- "end": "2019-01-09T17:45:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 11831.60,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2366.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 9465.28,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 11831.60,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 11831.60,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 9465.28,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a43fb751-96fe-3496-8750-73f85651866d",
- "resource": {
- "resourceType": "Organization",
- "id": "a43fb751-96fe-3496-8750-73f85651866d",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "a43fb751-96fe-3496-8750-73f85651866d"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "CONCENTRA URGENT CARE - WILMINGTON",
- "telecom": [
- {
- "system": "phone",
- "value": "978-657-3826"
- }
- ],
- "address": [
- {
- "line": [
- "66B CONCORD STREET"
- ],
- "city": "WILMINGTON",
- "state": "MA",
- "postalCode": "1887",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-000000016cba",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-000000016cba",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "93370"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Towne435",
- "given": [
- "Amos720"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Amos720.Towne435@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "66B CONCORD STREET"
- ],
- "city": "WILMINGTON",
- "state": "MA",
- "postalCode": "1887",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:9c856ef2-a668-4983-a5a3-98a987d996d9",
- "resource": {
- "resourceType": "Encounter",
- "id": "9c856ef2-a668-4983-a5a3-98a987d996d9",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016cba",
- "display": "Dr. Amos720 Towne435"
- }
- }
- ],
- "period": {
- "start": "2019-01-19T17:17:21-05:00",
- "end": "2019-01-19T17:32:21-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a43fb751-96fe-3496-8750-73f85651866d",
- "display": "CONCENTRA URGENT CARE - WILMINGTON"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:02c2d3ea-1408-4074-97ae-7b66a00057d0",
- "resource": {
- "resourceType": "Immunization",
- "id": "02c2d3ea-1408-4074-97ae-7b66a00057d0",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:9c856ef2-a668-4983-a5a3-98a987d996d9"
- },
- "occurrenceDateTime": "2019-01-19T17:17:21-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:a5da16ca-febf-408c-8f41-4e5bc1d8d5aa",
- "resource": {
- "resourceType": "Claim",
- "id": "a5da16ca-febf-408c-8f41-4e5bc1d8d5aa",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2019-01-19T17:17:21-05:00",
- "end": "2019-01-19T17:32:21-05:00"
- },
- "created": "2019-01-19T17:32:21-05:00",
- "provider": {
- "reference": "urn:uuid:a43fb751-96fe-3496-8750-73f85651866d",
- "display": "CONCENTRA URGENT CARE - WILMINGTON"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:02c2d3ea-1408-4074-97ae-7b66a00057d0"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:9c856ef2-a668-4983-a5a3-98a987d996d9"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:08a8d284-f62c-483e-9777-80c8551f1efd",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "08a8d284-f62c-483e-9777-80c8551f1efd",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016cba"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016cba"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "a5da16ca-febf-408c-8f41-4e5bc1d8d5aa"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2019-01-19T17:32:21-05:00",
- "end": "2020-01-19T17:32:21-05:00"
- },
- "created": "2019-01-19T17:32:21-05:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016cba"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:a5da16ca-febf-408c-8f41-4e5bc1d8d5aa"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016cba"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "servicedPeriod": {
- "start": "2019-01-19T17:17:21-05:00",
- "end": "2019-01-19T17:32:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:9c856ef2-a668-4983-a5a3-98a987d996d9"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2019-01-19T17:17:21-05:00",
- "end": "2019-01-19T17:32:21-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140",
- "resource": {
- "resourceType": "Encounter",
- "id": "8456dc60-b37f-4559-be2b-9a459ea0e140",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Ms. Christia477 Hermann103"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4",
- "display": "Dr. Betty470 Zieme486"
- }
- }
- ],
- "period": {
- "start": "2019-08-03T18:17:21-04:00",
- "end": "2019-08-03T18:32:21-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:54b4fc35-3efe-4fa1-8e8e-3f957f58c881",
- "resource": {
- "resourceType": "Observation",
- "id": "54b4fc35-3efe-4fa1-8e8e-3f957f58c881",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140"
- },
- "effectiveDateTime": "2019-08-03T18:17:21-04:00",
- "issued": "2019-08-03T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 164.02997749587527,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:26baf09e-6c19-4b84-9179-245df83b4076",
- "resource": {
- "resourceType": "Observation",
- "id": "26baf09e-6c19-4b84-9179-245df83b4076",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140"
- },
- "effectiveDateTime": "2019-08-03T18:17:21-04:00",
- "issued": "2019-08-03T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 3.784214009504325,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d8362250-c3bc-4926-86aa-ed3afea05014",
- "resource": {
- "resourceType": "Observation",
- "id": "d8362250-c3bc-4926-86aa-ed3afea05014",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140"
- },
- "effectiveDateTime": "2019-08-03T18:17:21-04:00",
- "issued": "2019-08-03T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 78.3864450230567,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4d64f1e4-a402-4434-8325-5241d8671dc6",
- "resource": {
- "resourceType": "Observation",
- "id": "4d64f1e4-a402-4434-8325-5241d8671dc6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140"
- },
- "effectiveDateTime": "2019-08-03T18:17:21-04:00",
- "issued": "2019-08-03T18:17:21.160-04:00",
- "valueQuantity": {
- "value": 29.13362448803649,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:900c9673-ec9d-43c4-877b-e94fd15b83a3",
- "resource": {
- "resourceType": "Observation",
- "id": "900c9673-ec9d-43c4-877b-e94fd15b83a3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140"
- },
- "effectiveDateTime": "2019-08-03T18:17:21-04:00",
- "issued": "2019-08-03T18:17:21.160-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 79.14072738323725,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 133.1858729133586,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9053b683-1035-4922-a7b0-ece50e02a46c",
- "resource": {
- "resourceType": "Observation",
- "id": "9053b683-1035-4922-a7b0-ece50e02a46c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140"
- },
- "effectiveDateTime": "2019-08-03T18:17:21-04:00",
- "issued": "2019-08-03T18:17:21.160-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f6e8b5e6-35e1-4a8b-a89d-02194023c04e",
- "resource": {
- "resourceType": "Immunization",
- "id": "f6e8b5e6-35e1-4a8b-a89d-02194023c04e",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140"
- },
- "occurrenceDateTime": "2019-08-03T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:b17bd46d-00ab-496a-a501-8607c2c5f73b",
- "resource": {
- "resourceType": "Immunization",
- "id": "b17bd46d-00ab-496a-a501-8607c2c5f73b",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140"
- },
- "occurrenceDateTime": "2019-08-03T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:3a8bc748-78e2-425f-954c-e58ba70da6c7",
- "resource": {
- "resourceType": "Immunization",
- "id": "3a8bc748-78e2-425f-954c-e58ba70da6c7",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "encounter": {
- "reference": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140"
- },
- "occurrenceDateTime": "2019-08-03T18:17:21-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:3a42d930-634f-44d0-bcee-2c34ca9a7aab",
- "resource": {
- "resourceType": "Claim",
- "id": "3a42d930-634f-44d0-bcee-2c34ca9a7aab",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59",
- "display": "Christia477 Hermann103"
- },
- "billablePeriod": {
- "start": "2019-08-03T18:17:21-04:00",
- "end": "2019-08-03T18:32:21-04:00"
- },
- "created": "2019-08-03T18:32:21-04:00",
- "provider": {
- "reference": "urn:uuid:207d191f-2b0f-31de-ab6a-52265042af59",
- "display": "PCP3850"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:f6e8b5e6-35e1-4a8b-a89d-02194023c04e"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:b17bd46d-00ab-496a-a501-8607c2c5f73b"
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:3a8bc748-78e2-425f-954c-e58ba70da6c7"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:bf2d81c1-832b-4325-98dd-02103090f0c7",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "bf2d81c1-832b-4325-98dd-02103090f0c7",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Blue Cross Blue Shield"
- },
- "beneficiary": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "payor": [
- {
- "display": "Blue Cross Blue Shield"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3a42d930-634f-44d0-bcee-2c34ca9a7aab"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:73f076b2-64d5-4135-a4e5-1af0d338af59"
- },
- "billablePeriod": {
- "start": "2019-08-03T18:32:21-04:00",
- "end": "2020-08-03T18:32:21-04:00"
- },
- "created": "2019-08-03T18:32:21-04:00",
- "insurer": {
- "display": "Blue Cross Blue Shield"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3a42d930-634f-44d0-bcee-2c34ca9a7aab"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000bf4"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Blue Cross Blue Shield"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2019-08-03T18:17:21-04:00",
- "end": "2019-08-03T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8456dc60-b37f-4559-be2b-9a459ea0e140"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "121",
- "display": "zoster"
- }
- ],
- "text": "zoster"
- },
- "servicedPeriod": {
- "start": "2019-08-03T18:17:21-04:00",
- "end": "2019-08-03T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2019-08-03T18:17:21-04:00",
- "end": "2019-08-03T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "servicedPeriod": {
- "start": "2019-08-03T18:17:21-04:00",
- "end": "2019-08-03T18:32:21-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 337.24800000000005,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- }
- ]
-}
diff --git a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Donnette259_Sporer811_3400bda2-9f20-4e71-a0f8-c09cd2ac3f0f.json b/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Donnette259_Sporer811_3400bda2-9f20-4e71-a0f8-c09cd2ac3f0f.json
deleted file mode 100644
index c201cf33..00000000
--- a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Donnette259_Sporer811_3400bda2-9f20-4e71-a0f8-c09cd2ac3f0f.json
+++ /dev/null
@@ -1,54596 +0,0 @@
-{
- "resourceType": "Bundle",
- "type": "transaction",
- "entry": [
- {
- "fullUrl": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "resource": {
- "resourceType": "Patient",
- "id": "74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "text": {
- "status": "generated",
- "div": "Generated by
Synthea.Version identifier: v2.4.0-404-ge7ce2295\n . Person seed: 3041628524624170284 Population seed: 0
"
- },
- "extension": [
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2106-3",
- "display": "White"
- }
- },
- {
- "url": "text",
- "valueString": "White"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
- }
- },
- {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
- "valueString": "Dodie685 Watsica258"
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
- "valueCode": "F"
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
- "valueAddress": {
- "city": "Worcester",
- "state": "Massachusetts",
- "country": "US"
- }
- },
- {
- "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
- "valueDecimal": 13.397121672042847
- },
- {
- "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
- "valueDecimal": 14.602878327957153
- }
- ],
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "3400bda2-9f20-4e71-a0f8-c09cd2ac3f0f"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "MR",
- "display": "Medical Record Number"
- }
- ],
- "text": "Medical Record Number"
- },
- "system": "http://hospital.smarthealthit.org",
- "value": "3400bda2-9f20-4e71-a0f8-c09cd2ac3f0f"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "SS",
- "display": "Social Security Number"
- }
- ],
- "text": "Social Security Number"
- },
- "system": "http://hl7.org/fhir/sid/us-ssn",
- "value": "999-49-9469"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "DL",
- "display": "Driver's License"
- }
- ],
- "text": "Driver's License"
- },
- "system": "urn:oid:2.16.840.1.113883.4.3.25",
- "value": "S99982043"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PPN",
- "display": "Passport Number"
- }
- ],
- "text": "Passport Number"
- },
- "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber",
- "value": "X9314869X"
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "Sporer811",
- "given": [
- "Donnette259"
- ],
- "prefix": [
- "Mrs."
- ]
- },
- {
- "use": "maiden",
- "family": "Bartoletti50",
- "given": [
- "Donnette259"
- ],
- "prefix": [
- "Mrs."
- ]
- }
- ],
- "telecom": [
- {
- "system": "phone",
- "value": "555-961-6317",
- "use": "home"
- }
- ],
- "gender": "female",
- "birthDate": "1990-03-08",
- "address": [
- {
- "extension": [
- {
- "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
- "extension": [
- {
- "url": "latitude",
- "valueDecimal": 42.50180039342782
- },
- {
- "url": "longitude",
- "valueDecimal": -71.43235993849201
- }
- ]
- }
- ],
- "line": [
- "219 Rohan Bypass"
- ],
- "city": "Acton",
- "state": "Massachusetts",
- "country": "US"
- }
- ],
- "maritalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
- "code": "M",
- "display": "M"
- }
- ],
- "text": "M"
- },
- "multipleBirthBoolean": false,
- "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English"
- }
- ],
- "text": "English"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Patient"
- }
- },
- {
- "fullUrl": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "resource": {
- "resourceType": "Organization",
- "id": "ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "ac8356a5-78f8-3a63-8a1e-59e832fd54e7"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "NASHOBA VALLEY MEDICAL CENTER",
- "telecom": [
- {
- "system": "phone",
- "value": "9787849000"
- }
- ],
- "address": [
- {
- "line": [
- "200 GROTON ROAD"
- ],
- "city": "AYER",
- "state": "MA",
- "postalCode": "01432",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-000000000190",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "400"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Hoeger474",
- "given": [
- "Stephaine613"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Stephaine613.Hoeger474@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "200 GROTON ROAD"
- ],
- "city": "AYER",
- "state": "MA",
- "postalCode": "01432",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:381e1530-159d-4299-895a-e31a0130eef2",
- "resource": {
- "resourceType": "Encounter",
- "id": "381e1530-159d-4299-895a-e31a0130eef2",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "1991-02-01T17:09:51-05:00",
- "end": "1991-02-01T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:0352ed88-4eb3-4b0a-92d1-009d0f3545cd",
- "resource": {
- "resourceType": "CareTeam",
- "id": "0352ed88-4eb3-4b0a-92d1-009d0f3545cd",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:381e1530-159d-4299-895a-e31a0130eef2"
- },
- "period": {
- "start": "1991-02-01T17:09:51-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:fa470173-f052-498b-8326-f20d272e3bf8",
- "resource": {
- "resourceType": "CarePlan",
- "id": "fa470173-f052-498b-8326-f20d272e3bf8",
- "text": {
- "status": "generated",
- "div": "Care Plan for Self care.
Activities:
- Self care
- Self care
- Self care
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "326051000000105",
- "display": "Self care"
- }
- ],
- "text": "Self care"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:381e1530-159d-4299-895a-e31a0130eef2"
- },
- "period": {
- "start": "1991-02-01T17:09:51-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:0352ed88-4eb3-4b0a-92d1-009d0f3545cd"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "409002",
- "display": "Food allergy diet"
- }
- ],
- "text": "Food allergy diet"
- },
- "status": "in-progress",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "58332002",
- "display": "Allergy education"
- }
- ],
- "text": "Allergy education"
- },
- "status": "in-progress",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "58332002",
- "display": "Allergy education"
- }
- ],
- "text": "Allergy education"
- },
- "status": "in-progress",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:a06db911-be3c-4e53-b032-0bf3eedc3179",
- "resource": {
- "resourceType": "Claim",
- "id": "a06db911-be3c-4e53-b032-0bf3eedc3179",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "1991-02-01T17:09:51-05:00",
- "end": "1991-02-01T17:24:51-05:00"
- },
- "created": "1991-02-01T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:381e1530-159d-4299-895a-e31a0130eef2"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4856d11b-c44b-4aa0-bd3a-0f40aec4a64e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "4856d11b-c44b-4aa0-bd3a-0f40aec4a64e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "a06db911-be3c-4e53-b032-0bf3eedc3179"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "1991-02-01T17:24:51-05:00",
- "end": "1992-02-01T17:24:51-05:00"
- },
- "created": "1991-02-01T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:a06db911-be3c-4e53-b032-0bf3eedc3179"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "servicedPeriod": {
- "start": "1991-02-01T17:09:51-05:00",
- "end": "1991-02-01T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:381e1530-159d-4299-895a-e31a0130eef2"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:42f3794f-fdbd-441c-8f97-5066ef23d9b6",
- "resource": {
- "resourceType": "Encounter",
- "id": "42f3794f-fdbd-441c-8f97-5066ef23d9b6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "1991-02-17T17:09:51-05:00",
- "end": "1991-02-17T17:48:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:15b00f63-a325-4e81-aeb1-f8d5aef93c1b",
- "resource": {
- "resourceType": "AllergyIntolerance",
- "id": "15b00f63-a325-4e81-aeb1-f8d5aef93c1b",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification",
- "code": "confirmed"
- }
- ]
- },
- "type": "allergy",
- "category": [
- "food"
- ],
- "criticality": "low",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "420174000",
- "display": "Allergy to wheat"
- }
- ],
- "text": "Allergy to wheat"
- },
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "recordedDate": "1991-02-17T17:09:51-05:00"
- },
- "request": {
- "method": "POST",
- "url": "AllergyIntolerance"
- }
- },
- {
- "fullUrl": "urn:uuid:bba78847-cbbf-4b57-9a45-986329576a5a",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "bba78847-cbbf-4b57-9a45-986329576a5a",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "1049630",
- "display": "diphenhydrAMINE Hydrochloride 25 MG Oral Tablet"
- }
- ],
- "text": "diphenhydrAMINE Hydrochloride 25 MG Oral Tablet"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:42f3794f-fdbd-441c-8f97-5066ef23d9b6"
- },
- "authoredOn": "1991-02-17T17:09:51-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- },
- "dosageInstruction": [
- {
- "sequence": 1,
- "asNeededBoolean": true
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:eb9a327a-a240-471a-a90b-a6d1dae3be51",
- "resource": {
- "resourceType": "Claim",
- "id": "eb9a327a-a240-471a-a90b-a6d1dae3be51",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "1991-02-17T17:09:51-05:00",
- "end": "1991-02-17T17:48:51-05:00"
- },
- "created": "1991-02-17T17:48:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:bba78847-cbbf-4b57-9a45-986329576a5a"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:42f3794f-fdbd-441c-8f97-5066ef23d9b6"
- }
- ]
- }
- ],
- "total": {
- "value": 8.56,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0946421b-75d6-4369-8be5-a2524d92bd01",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "0946421b-75d6-4369-8be5-a2524d92bd01",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "1870230",
- "display": "NDA020800 0.3 ML Epinephrine 1 MG/ML Auto-Injector"
- }
- ],
- "text": "NDA020800 0.3 ML Epinephrine 1 MG/ML Auto-Injector"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:42f3794f-fdbd-441c-8f97-5066ef23d9b6"
- },
- "authoredOn": "1991-02-17T17:09:51-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- },
- "dosageInstruction": [
- {
- "sequence": 1,
- "asNeededBoolean": true
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:8fdcc2c9-28ed-460a-a336-f6eca5005cd9",
- "resource": {
- "resourceType": "Claim",
- "id": "8fdcc2c9-28ed-460a-a336-f6eca5005cd9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "1991-02-17T17:09:51-05:00",
- "end": "1991-02-17T17:48:51-05:00"
- },
- "created": "1991-02-17T17:48:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:0946421b-75d6-4369-8be5-a2524d92bd01"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:42f3794f-fdbd-441c-8f97-5066ef23d9b6"
- }
- ]
- }
- ],
- "total": {
- "value": 412.13,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f3efb58e-77fc-49f7-b2da-dd72a3ecf1e7",
- "resource": {
- "resourceType": "Claim",
- "id": "f3efb58e-77fc-49f7-b2da-dd72a3ecf1e7",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "1991-02-17T17:09:51-05:00",
- "end": "1991-02-17T17:48:51-05:00"
- },
- "created": "1991-02-17T17:48:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:42f3794f-fdbd-441c-8f97-5066ef23d9b6"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d0b4e0de-6a9e-4eb1-87b1-e9d68d099f49",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d0b4e0de-6a9e-4eb1-87b1-e9d68d099f49",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f3efb58e-77fc-49f7-b2da-dd72a3ecf1e7"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "1991-02-17T17:48:51-05:00",
- "end": "1992-02-17T17:48:51-05:00"
- },
- "created": "1991-02-17T17:48:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f3efb58e-77fc-49f7-b2da-dd72a3ecf1e7"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "servicedPeriod": {
- "start": "1991-02-17T17:09:51-05:00",
- "end": "1991-02-17T17:48:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:42f3794f-fdbd-441c-8f97-5066ef23d9b6"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:334884fb-ab1b-4d4b-9a16-4b2d927cd5ef",
- "resource": {
- "resourceType": "Encounter",
- "id": "334884fb-ab1b-4d4b-9a16-4b2d927cd5ef",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "IMP"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183452005",
- "display": "Encounter Inpatient"
- }
- ],
- "text": "Encounter Inpatient"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2004-05-10T18:09:51-04:00",
- "end": "2004-05-11T18:09:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "82423001",
- "display": "Chronic pain"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:cec3987f-cfe3-41e0-b23b-9f9255f9aaae",
- "resource": {
- "resourceType": "Condition",
- "id": "cec3987f-cfe3-41e0-b23b-9f9255f9aaae",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "82423001",
- "display": "Chronic pain"
- }
- ],
- "text": "Chronic pain"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:334884fb-ab1b-4d4b-9a16-4b2d927cd5ef"
- },
- "onsetDateTime": "2004-05-10T18:09:51-04:00",
- "recordedDate": "2004-05-10T18:09:51-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:f67bcf34-6049-4337-a3af-04a2682bc00e",
- "resource": {
- "resourceType": "Claim",
- "id": "f67bcf34-6049-4337-a3af-04a2682bc00e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2004-05-10T18:09:51-04:00",
- "end": "2004-05-11T18:09:51-04:00"
- },
- "created": "2004-05-11T18:09:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:cec3987f-cfe3-41e0-b23b-9f9255f9aaae"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183452005",
- "display": "Encounter Inpatient"
- }
- ],
- "text": "Encounter Inpatient"
- },
- "encounter": [
- {
- "reference": "urn:uuid:334884fb-ab1b-4d4b-9a16-4b2d927cd5ef"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "82423001",
- "display": "Chronic pain"
- }
- ],
- "text": "Chronic pain"
- }
- }
- ],
- "total": {
- "value": 77.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:ab02ac02-16c7-40e5-80f5-f42b5c22e5bd",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "ab02ac02-16c7-40e5-80f5-f42b5c22e5bd",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f67bcf34-6049-4337-a3af-04a2682bc00e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2004-05-11T18:09:51-04:00",
- "end": "2005-05-11T18:09:51-04:00"
- },
- "created": "2004-05-11T18:09:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f67bcf34-6049-4337-a3af-04a2682bc00e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:cec3987f-cfe3-41e0-b23b-9f9255f9aaae"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183452005",
- "display": "Encounter Inpatient"
- }
- ],
- "text": "Encounter Inpatient"
- },
- "servicedPeriod": {
- "start": "2004-05-10T18:09:51-04:00",
- "end": "2004-05-11T18:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:334884fb-ab1b-4d4b-9a16-4b2d927cd5ef"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "82423001",
- "display": "Chronic pain"
- }
- ],
- "text": "Chronic pain"
- },
- "servicedPeriod": {
- "start": "2004-05-10T18:09:51-04:00",
- "end": "2004-05-11T18:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 77.49,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8973ce12-f8ea-47f3-9dfc-319a926c36b3",
- "resource": {
- "resourceType": "Encounter",
- "id": "8973ce12-f8ea-47f3-9dfc-319a926c36b3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "IMP"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183452005",
- "display": "Encounter Inpatient"
- }
- ],
- "text": "Encounter Inpatient"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2005-01-11T17:09:51-05:00",
- "end": "2005-01-12T17:24:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "196416002",
- "display": "Impacted molars"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:cc4fe2b5-091f-4867-b2ad-c3a02135362d",
- "resource": {
- "resourceType": "Condition",
- "id": "cc4fe2b5-091f-4867-b2ad-c3a02135362d",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "196416002",
- "display": "Impacted molars"
- }
- ],
- "text": "Impacted molars"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:8973ce12-f8ea-47f3-9dfc-319a926c36b3"
- },
- "onsetDateTime": "2005-01-11T17:09:51-05:00",
- "recordedDate": "2005-01-11T17:09:51-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:2db4d617-9cce-4779-9a9f-962265016f8e",
- "resource": {
- "resourceType": "Claim",
- "id": "2db4d617-9cce-4779-9a9f-962265016f8e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2005-01-11T17:09:51-05:00",
- "end": "2005-01-12T17:24:51-05:00"
- },
- "created": "2005-01-12T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:cc4fe2b5-091f-4867-b2ad-c3a02135362d"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183452005",
- "display": "Encounter Inpatient"
- }
- ],
- "text": "Encounter Inpatient"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8973ce12-f8ea-47f3-9dfc-319a926c36b3"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "196416002",
- "display": "Impacted molars"
- }
- ],
- "text": "Impacted molars"
- }
- }
- ],
- "total": {
- "value": 77.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:af1edd25-5c29-4121-9abc-ed86fa4f53d5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "af1edd25-5c29-4121-9abc-ed86fa4f53d5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "2db4d617-9cce-4779-9a9f-962265016f8e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2005-01-12T17:24:51-05:00",
- "end": "2006-01-12T17:24:51-05:00"
- },
- "created": "2005-01-12T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:2db4d617-9cce-4779-9a9f-962265016f8e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:cc4fe2b5-091f-4867-b2ad-c3a02135362d"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183452005",
- "display": "Encounter Inpatient"
- }
- ],
- "text": "Encounter Inpatient"
- },
- "servicedPeriod": {
- "start": "2005-01-11T17:09:51-05:00",
- "end": "2005-01-12T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8973ce12-f8ea-47f3-9dfc-319a926c36b3"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "196416002",
- "display": "Impacted molars"
- }
- ],
- "text": "Impacted molars"
- },
- "servicedPeriod": {
- "start": "2005-01-11T17:09:51-05:00",
- "end": "2005-01-12T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 77.49,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:114d47b8-0274-4cb7-82ff-598b201b3a87",
- "resource": {
- "resourceType": "Encounter",
- "id": "114d47b8-0274-4cb7-82ff-598b201b3a87",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "IMP"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183452005",
- "display": "Encounter Inpatient"
- }
- ],
- "text": "Encounter Inpatient"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2005-03-10T17:09:51-05:00",
- "end": "2005-03-11T17:09:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "124171000119105",
- "display": "Chronic intractable migraine without aura"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c0838358-08c3-4d2f-a74b-4e132dbafc3f",
- "resource": {
- "resourceType": "Condition",
- "id": "c0838358-08c3-4d2f-a74b-4e132dbafc3f",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "124171000119105",
- "display": "Chronic intractable migraine without aura"
- }
- ],
- "text": "Chronic intractable migraine without aura"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:114d47b8-0274-4cb7-82ff-598b201b3a87"
- },
- "onsetDateTime": "2005-03-10T17:09:51-05:00",
- "recordedDate": "2005-03-10T17:09:51-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:9a065d4c-de6a-4a94-8a79-ad1afd3f8d42",
- "resource": {
- "resourceType": "Claim",
- "id": "9a065d4c-de6a-4a94-8a79-ad1afd3f8d42",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2005-03-10T17:09:51-05:00",
- "end": "2005-03-11T17:09:51-05:00"
- },
- "created": "2005-03-11T17:09:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:c0838358-08c3-4d2f-a74b-4e132dbafc3f"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183452005",
- "display": "Encounter Inpatient"
- }
- ],
- "text": "Encounter Inpatient"
- },
- "encounter": [
- {
- "reference": "urn:uuid:114d47b8-0274-4cb7-82ff-598b201b3a87"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "124171000119105",
- "display": "Chronic intractable migraine without aura"
- }
- ],
- "text": "Chronic intractable migraine without aura"
- }
- }
- ],
- "total": {
- "value": 77.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d84db57c-60ea-4591-8eaa-2100c07ee7e2",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d84db57c-60ea-4591-8eaa-2100c07ee7e2",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "9a065d4c-de6a-4a94-8a79-ad1afd3f8d42"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2005-03-11T17:09:51-05:00",
- "end": "2006-03-11T17:09:51-05:00"
- },
- "created": "2005-03-11T17:09:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:9a065d4c-de6a-4a94-8a79-ad1afd3f8d42"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:c0838358-08c3-4d2f-a74b-4e132dbafc3f"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183452005",
- "display": "Encounter Inpatient"
- }
- ],
- "text": "Encounter Inpatient"
- },
- "servicedPeriod": {
- "start": "2005-03-10T17:09:51-05:00",
- "end": "2005-03-11T17:09:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:114d47b8-0274-4cb7-82ff-598b201b3a87"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "124171000119105",
- "display": "Chronic intractable migraine without aura"
- }
- ],
- "text": "Chronic intractable migraine without aura"
- },
- "servicedPeriod": {
- "start": "2005-03-10T17:09:51-05:00",
- "end": "2005-03-11T17:09:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 77.49,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:d1145c19-cf1c-46d6-9b85-f18120780b64",
- "resource": {
- "resourceType": "Encounter",
- "id": "d1145c19-cf1c-46d6-9b85-f18120780b64",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2008-11-10T17:09:51-05:00",
- "end": "2008-11-10T18:09:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:4d40e4f3-62da-4c96-a6d8-040f727dd5bb",
- "resource": {
- "resourceType": "Condition",
- "id": "4d40e4f3-62da-4c96-a6d8-040f727dd5bb",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ],
- "text": "Drug overdose"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d1145c19-cf1c-46d6-9b85-f18120780b64"
- },
- "onsetDateTime": "2008-11-10T17:09:51-05:00",
- "recordedDate": "2008-11-10T17:09:51-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:3fcd0a8f-8c89-49d5-9b0a-0fcff82cffa3",
- "resource": {
- "resourceType": "Claim",
- "id": "3fcd0a8f-8c89-49d5-9b0a-0fcff82cffa3",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2008-11-10T17:09:51-05:00",
- "end": "2008-11-10T18:09:51-05:00"
- },
- "created": "2008-11-10T18:09:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:4d40e4f3-62da-4c96-a6d8-040f727dd5bb"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d1145c19-cf1c-46d6-9b85-f18120780b64"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ],
- "text": "Drug overdose"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4ce4ed00-de93-4a66-872f-d12ec1075dff",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "4ce4ed00-de93-4a66-872f-d12ec1075dff",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3fcd0a8f-8c89-49d5-9b0a-0fcff82cffa3"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2008-11-10T18:09:51-05:00",
- "end": "2009-11-10T18:09:51-05:00"
- },
- "created": "2008-11-10T18:09:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3fcd0a8f-8c89-49d5-9b0a-0fcff82cffa3"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:4d40e4f3-62da-4c96-a6d8-040f727dd5bb"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "servicedPeriod": {
- "start": "2008-11-10T17:09:51-05:00",
- "end": "2008-11-10T18:09:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:d1145c19-cf1c-46d6-9b85-f18120780b64"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ],
- "text": "Drug overdose"
- },
- "servicedPeriod": {
- "start": "2008-11-10T17:09:51-05:00",
- "end": "2008-11-10T18:09:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:01748ef2-1759-413a-907b-0cab80181099",
- "resource": {
- "resourceType": "Encounter",
- "id": "01748ef2-1759-413a-907b-0cab80181099",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2009-04-13T18:09:51-04:00",
- "end": "2009-04-13T19:09:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:387b5545-8a46-442a-b6e7-31cd3529139a",
- "resource": {
- "resourceType": "CareTeam",
- "id": "387b5545-8a46-442a-b6e7-31cd3529139a",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:01748ef2-1759-413a-907b-0cab80181099"
- },
- "period": {
- "start": "2009-04-13T18:09:51-04:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ],
- "text": "Drug overdose"
- },
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ],
- "text": "Drug overdose"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:0b2ab953-8615-4a68-9982-f2b22386293a",
- "resource": {
- "resourceType": "CarePlan",
- "id": "0b2ab953-8615-4a68-9982-f2b22386293a",
- "text": {
- "status": "generated",
- "div": "Care Plan for Care plan (record artifact).
Activities:
- Care plan (record artifact)
- Care plan (record artifact)
- Care plan (record artifact)
Care plan is meant to treat Drug overdose.
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "734163000",
- "display": "Care plan (record artifact)"
- }
- ],
- "text": "Care plan (record artifact)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:01748ef2-1759-413a-907b-0cab80181099"
- },
- "period": {
- "start": "2009-04-13T18:09:51-04:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:387b5545-8a46-442a-b6e7-31cd3529139a"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:4d40e4f3-62da-4c96-a6d8-040f727dd5bb"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "60112009",
- "display": "Drug addiction counseling"
- }
- ],
- "text": "Drug addiction counseling"
- },
- "status": "in-progress",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "61480009",
- "display": "Drug detoxification"
- }
- ],
- "text": "Drug detoxification"
- },
- "status": "in-progress",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266707007",
- "display": "Drug addiction therapy"
- }
- ],
- "text": "Drug addiction therapy"
- },
- "status": "in-progress",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:aaaabc80-9133-41fc-b029-c314ad9356fa",
- "resource": {
- "resourceType": "Claim",
- "id": "aaaabc80-9133-41fc-b029-c314ad9356fa",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2009-04-13T18:09:51-04:00",
- "end": "2009-04-13T19:09:51-04:00"
- },
- "created": "2009-04-13T19:09:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "encounter": [
- {
- "reference": "urn:uuid:01748ef2-1759-413a-907b-0cab80181099"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:fe8a33b3-3666-47f5-a075-6c2dab61266b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "fe8a33b3-3666-47f5-a075-6c2dab61266b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "aaaabc80-9133-41fc-b029-c314ad9356fa"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2009-04-13T19:09:51-04:00",
- "end": "2010-04-13T19:09:51-04:00"
- },
- "created": "2009-04-13T19:09:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:aaaabc80-9133-41fc-b029-c314ad9356fa"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "servicedPeriod": {
- "start": "2009-04-13T18:09:51-04:00",
- "end": "2009-04-13T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:01748ef2-1759-413a-907b-0cab80181099"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a741d055-96b2-4177-a781-419ae52ee75c",
- "resource": {
- "resourceType": "Encounter",
- "id": "a741d055-96b2-4177-a781-419ae52ee75c",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2010-05-10T18:09:51-04:00",
- "end": "2010-05-10T19:09:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:5defbb33-7796-4d4d-839e-d26e5b3e6e5a",
- "resource": {
- "resourceType": "Claim",
- "id": "5defbb33-7796-4d4d-839e-d26e5b3e6e5a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2010-05-10T18:09:51-04:00",
- "end": "2010-05-10T19:09:51-04:00"
- },
- "created": "2010-05-10T19:09:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a741d055-96b2-4177-a781-419ae52ee75c"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:00ba379c-d724-4b52-81b0-10d64ef288df",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "00ba379c-d724-4b52-81b0-10d64ef288df",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5defbb33-7796-4d4d-839e-d26e5b3e6e5a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2010-05-10T19:09:51-04:00",
- "end": "2011-05-10T19:09:51-04:00"
- },
- "created": "2010-05-10T19:09:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5defbb33-7796-4d4d-839e-d26e5b3e6e5a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "servicedPeriod": {
- "start": "2010-05-10T18:09:51-04:00",
- "end": "2010-05-10T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:a741d055-96b2-4177-a781-419ae52ee75c"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:97ae8416-da02-47d3-a172-6f96f9734776",
- "resource": {
- "resourceType": "Encounter",
- "id": "97ae8416-da02-47d3-a172-6f96f9734776",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2010-10-11T18:09:51-04:00",
- "end": "2010-10-11T19:09:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:456ac32c-aa63-49b4-aa73-8f1a5b5347af",
- "resource": {
- "resourceType": "Claim",
- "id": "456ac32c-aa63-49b4-aa73-8f1a5b5347af",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2010-10-11T18:09:51-04:00",
- "end": "2010-10-11T19:09:51-04:00"
- },
- "created": "2010-10-11T19:09:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "encounter": [
- {
- "reference": "urn:uuid:97ae8416-da02-47d3-a172-6f96f9734776"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3b7c5d38-5760-4eb7-a9dc-8cbdeefbd5af",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3b7c5d38-5760-4eb7-a9dc-8cbdeefbd5af",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "456ac32c-aa63-49b4-aa73-8f1a5b5347af"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2010-10-11T19:09:51-04:00",
- "end": "2011-10-11T19:09:51-04:00"
- },
- "created": "2010-10-11T19:09:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:456ac32c-aa63-49b4-aa73-8f1a5b5347af"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "servicedPeriod": {
- "start": "2010-10-11T18:09:51-04:00",
- "end": "2010-10-11T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:97ae8416-da02-47d3-a172-6f96f9734776"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:af684d1d-087f-49eb-9677-cabec82a2aa5",
- "resource": {
- "resourceType": "Encounter",
- "id": "af684d1d-087f-49eb-9677-cabec82a2aa5",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2010-10-25T18:09:51-04:00",
- "end": "2010-10-25T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:19070059-74d9-434b-a818-5e7db8410d21",
- "resource": {
- "resourceType": "Claim",
- "id": "19070059-74d9-434b-a818-5e7db8410d21",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2010-10-25T18:09:51-04:00",
- "end": "2010-10-25T18:24:51-04:00"
- },
- "created": "2010-10-25T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:af684d1d-087f-49eb-9677-cabec82a2aa5"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:aa405f1f-b78b-4ec2-a895-3744471e7a78",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "aa405f1f-b78b-4ec2-a895-3744471e7a78",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "19070059-74d9-434b-a818-5e7db8410d21"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2010-10-25T18:24:51-04:00",
- "end": "2011-10-25T18:24:51-04:00"
- },
- "created": "2010-10-25T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:19070059-74d9-434b-a818-5e7db8410d21"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-10-25T18:09:51-04:00",
- "end": "2010-10-25T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:af684d1d-087f-49eb-9677-cabec82a2aa5"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:06e6f354-d977-4be2-8af6-7215bb3bce1e",
- "resource": {
- "resourceType": "Encounter",
- "id": "06e6f354-d977-4be2-8af6-7215bb3bce1e",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2011-01-27T17:09:51-05:00",
- "end": "2011-01-27T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:5bb7415b-3200-4a85-a3f3-cae015e06a65",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "5bb7415b-3200-4a85-a3f3-cae015e06a65",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "831533",
- "display": "Errin 28 Day Pack"
- }
- ],
- "text": "Errin 28 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:06e6f354-d977-4be2-8af6-7215bb3bce1e"
- },
- "authoredOn": "2011-01-27T17:09:51-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:60e84f0a-f00d-49dd-aa4e-6aa76705cfc5",
- "resource": {
- "resourceType": "Claim",
- "id": "60e84f0a-f00d-49dd-aa4e-6aa76705cfc5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2011-01-27T17:09:51-05:00",
- "end": "2011-01-27T17:24:51-05:00"
- },
- "created": "2011-01-27T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:5bb7415b-3200-4a85-a3f3-cae015e06a65"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:06e6f354-d977-4be2-8af6-7215bb3bce1e"
- }
- ]
- }
- ],
- "total": {
- "value": 27.86,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9c3a274f-87e3-43d0-8fe2-36af3449ddcf",
- "resource": {
- "resourceType": "Claim",
- "id": "9c3a274f-87e3-43d0-8fe2-36af3449ddcf",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2011-01-27T17:09:51-05:00",
- "end": "2011-01-27T17:24:51-05:00"
- },
- "created": "2011-01-27T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:06e6f354-d977-4be2-8af6-7215bb3bce1e"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:8df70e0b-427c-4c6a-a385-bb43dcee6a74",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "8df70e0b-427c-4c6a-a385-bb43dcee6a74",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "9c3a274f-87e3-43d0-8fe2-36af3449ddcf"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2011-01-27T17:24:51-05:00",
- "end": "2012-01-27T17:24:51-05:00"
- },
- "created": "2011-01-27T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:9c3a274f-87e3-43d0-8fe2-36af3449ddcf"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2011-01-27T17:09:51-05:00",
- "end": "2011-01-27T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:06e6f354-d977-4be2-8af6-7215bb3bce1e"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:6fbd4269-610a-4d5f-8066-927930a80a6f",
- "resource": {
- "resourceType": "Encounter",
- "id": "6fbd4269-610a-4d5f-8066-927930a80a6f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2011-04-20T18:09:51-04:00",
- "end": "2011-04-20T19:09:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f69a62ff-1487-4ea7-acfd-2457326e5a81",
- "resource": {
- "resourceType": "Claim",
- "id": "f69a62ff-1487-4ea7-acfd-2457326e5a81",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2011-04-20T18:09:51-04:00",
- "end": "2011-04-20T19:09:51-04:00"
- },
- "created": "2011-04-20T19:09:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "encounter": [
- {
- "reference": "urn:uuid:6fbd4269-610a-4d5f-8066-927930a80a6f"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d9f715c3-d4de-46ae-bd22-ba8cb4bb4989",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d9f715c3-d4de-46ae-bd22-ba8cb4bb4989",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f69a62ff-1487-4ea7-acfd-2457326e5a81"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2011-04-20T19:09:51-04:00",
- "end": "2012-04-20T19:09:51-04:00"
- },
- "created": "2011-04-20T19:09:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f69a62ff-1487-4ea7-acfd-2457326e5a81"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "servicedPeriod": {
- "start": "2011-04-20T18:09:51-04:00",
- "end": "2011-04-20T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:6fbd4269-610a-4d5f-8066-927930a80a6f"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:5a887dbe-e09d-4eb3-bcfe-0fdf5d050f3e",
- "resource": {
- "resourceType": "Encounter",
- "id": "5a887dbe-e09d-4eb3-bcfe-0fdf5d050f3e",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "IMP"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "56876005",
- "display": "Drug rehabilitation and detoxification"
- }
- ],
- "text": "Drug rehabilitation and detoxification"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2011-04-27T18:09:51-04:00",
- "end": "2011-04-28T18:09:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2bd560fc-9cce-4387-8c36-550a50ee987c",
- "resource": {
- "resourceType": "Observation",
- "id": "2bd560fc-9cce-4387-8c36-550a50ee987c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:5a887dbe-e09d-4eb3-bcfe-0fdf5d050f3e"
- },
- "effectiveDateTime": "2011-04-27T18:09:51-04:00",
- "issued": "2011-04-27T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 3.122387758513024,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:89c46fdc-9eb9-44bf-9565-0fedb5bf3fcd",
- "resource": {
- "resourceType": "Claim",
- "id": "89c46fdc-9eb9-44bf-9565-0fedb5bf3fcd",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2011-04-27T18:09:51-04:00",
- "end": "2011-04-28T18:09:51-04:00"
- },
- "created": "2011-04-28T18:09:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "56876005",
- "display": "Drug rehabilitation and detoxification"
- }
- ],
- "text": "Drug rehabilitation and detoxification"
- },
- "encounter": [
- {
- "reference": "urn:uuid:5a887dbe-e09d-4eb3-bcfe-0fdf5d050f3e"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:df6bf933-4d08-44c6-8933-c9d73e7f3c01",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "df6bf933-4d08-44c6-8933-c9d73e7f3c01",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "89c46fdc-9eb9-44bf-9565-0fedb5bf3fcd"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2011-04-28T18:09:51-04:00",
- "end": "2012-04-28T18:09:51-04:00"
- },
- "created": "2011-04-28T18:09:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:89c46fdc-9eb9-44bf-9565-0fedb5bf3fcd"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "56876005",
- "display": "Drug rehabilitation and detoxification"
- }
- ],
- "text": "Drug rehabilitation and detoxification"
- },
- "servicedPeriod": {
- "start": "2011-04-27T18:09:51-04:00",
- "end": "2011-04-28T18:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:5a887dbe-e09d-4eb3-bcfe-0fdf5d050f3e"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:aedc46e8-66aa-4db4-92f2-18603d9d41e3",
- "resource": {
- "resourceType": "Encounter",
- "id": "aedc46e8-66aa-4db4-92f2-18603d9d41e3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2011-08-10T18:09:51-04:00",
- "end": "2011-08-10T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f5102391-75d3-49ab-8145-8b62e76a0653",
- "resource": {
- "resourceType": "Claim",
- "id": "f5102391-75d3-49ab-8145-8b62e76a0653",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2011-08-10T18:09:51-04:00",
- "end": "2011-08-10T18:24:51-04:00"
- },
- "created": "2011-08-10T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:aedc46e8-66aa-4db4-92f2-18603d9d41e3"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:470f2c43-3a24-4dbc-9fc8-edac79010440",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "470f2c43-3a24-4dbc-9fc8-edac79010440",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f5102391-75d3-49ab-8145-8b62e76a0653"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2011-08-10T18:24:51-04:00",
- "end": "2012-08-10T18:24:51-04:00"
- },
- "created": "2011-08-10T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f5102391-75d3-49ab-8145-8b62e76a0653"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2011-08-10T18:09:51-04:00",
- "end": "2011-08-10T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:aedc46e8-66aa-4db4-92f2-18603d9d41e3"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:43b8611b-b031-4feb-83ce-86781e0285b3",
- "resource": {
- "resourceType": "Encounter",
- "id": "43b8611b-b031-4feb-83ce-86781e0285b3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2011-09-09T18:09:51-04:00",
- "end": "2011-09-09T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:69626c88-cf1f-4b91-a980-a244dce8d8bc",
- "resource": {
- "resourceType": "Claim",
- "id": "69626c88-cf1f-4b91-a980-a244dce8d8bc",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2011-09-09T18:09:51-04:00",
- "end": "2011-09-09T18:24:51-04:00"
- },
- "created": "2011-09-09T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:43b8611b-b031-4feb-83ce-86781e0285b3"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:eb0bf4ea-4f30-4f5c-b06f-11e7bea1cabc",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "eb0bf4ea-4f30-4f5c-b06f-11e7bea1cabc",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "69626c88-cf1f-4b91-a980-a244dce8d8bc"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2011-09-09T18:24:51-04:00",
- "end": "2012-09-09T18:24:51-04:00"
- },
- "created": "2011-09-09T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:69626c88-cf1f-4b91-a980-a244dce8d8bc"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2011-09-09T18:09:51-04:00",
- "end": "2011-09-09T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:43b8611b-b031-4feb-83ce-86781e0285b3"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3392c33e-e29e-468a-9fac-c07b361a0b80",
- "resource": {
- "resourceType": "Encounter",
- "id": "3392c33e-e29e-468a-9fac-c07b361a0b80",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2011-10-09T18:09:51-04:00",
- "end": "2011-10-09T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:7f1ea791-190f-420e-9685-53952e43046d",
- "resource": {
- "resourceType": "Claim",
- "id": "7f1ea791-190f-420e-9685-53952e43046d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2011-10-09T18:09:51-04:00",
- "end": "2011-10-09T18:24:51-04:00"
- },
- "created": "2011-10-09T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3392c33e-e29e-468a-9fac-c07b361a0b80"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:93d9af1d-7118-41c7-92da-2e1f356894cc",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "93d9af1d-7118-41c7-92da-2e1f356894cc",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "7f1ea791-190f-420e-9685-53952e43046d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2011-10-09T18:24:51-04:00",
- "end": "2012-10-09T18:24:51-04:00"
- },
- "created": "2011-10-09T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:7f1ea791-190f-420e-9685-53952e43046d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2011-10-09T18:09:51-04:00",
- "end": "2011-10-09T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3392c33e-e29e-468a-9fac-c07b361a0b80"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a0cba627-bd3a-46ef-8af4-abd0d64e9ea4",
- "resource": {
- "resourceType": "Encounter",
- "id": "a0cba627-bd3a-46ef-8af4-abd0d64e9ea4",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2012-01-22T17:09:51-05:00",
- "end": "2012-01-22T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f6f86c99-4699-4f2f-b39e-46876f5c628f",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "f6f86c99-4699-4f2f-b39e-46876f5c628f",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "748856",
- "display": "Yaz 28 Day Pack"
- }
- ],
- "text": "Yaz 28 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:a0cba627-bd3a-46ef-8af4-abd0d64e9ea4"
- },
- "authoredOn": "2012-01-22T17:09:51-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:80c63113-8f26-4852-bb9a-4b2268be343b",
- "resource": {
- "resourceType": "Claim",
- "id": "80c63113-8f26-4852-bb9a-4b2268be343b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2012-01-22T17:09:51-05:00",
- "end": "2012-01-22T17:24:51-05:00"
- },
- "created": "2012-01-22T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:f6f86c99-4699-4f2f-b39e-46876f5c628f"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a0cba627-bd3a-46ef-8af4-abd0d64e9ea4"
- }
- ]
- }
- ],
- "total": {
- "value": 47.14,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d3547bb1-02cc-4588-9da3-41a1e3b856b7",
- "resource": {
- "resourceType": "Claim",
- "id": "d3547bb1-02cc-4588-9da3-41a1e3b856b7",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2012-01-22T17:09:51-05:00",
- "end": "2012-01-22T17:24:51-05:00"
- },
- "created": "2012-01-22T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a0cba627-bd3a-46ef-8af4-abd0d64e9ea4"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0d57e774-3bd6-4d16-87ae-c8876640122a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0d57e774-3bd6-4d16-87ae-c8876640122a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d3547bb1-02cc-4588-9da3-41a1e3b856b7"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2012-01-22T17:24:51-05:00",
- "end": "2013-01-22T17:24:51-05:00"
- },
- "created": "2012-01-22T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d3547bb1-02cc-4588-9da3-41a1e3b856b7"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2012-01-22T17:09:51-05:00",
- "end": "2012-01-22T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:a0cba627-bd3a-46ef-8af4-abd0d64e9ea4"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:b31e375e-96dd-3a49-8fbf-563512101637",
- "resource": {
- "resourceType": "Organization",
- "id": "b31e375e-96dd-3a49-8fbf-563512101637",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "b31e375e-96dd-3a49-8fbf-563512101637"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "DEVITA CHIROPRACTIC OFFICE PC",
- "telecom": [
- {
- "system": "phone",
- "value": "978-263-9336"
- }
- ],
- "address": [
- {
- "line": [
- "271 GREAT RD"
- ],
- "city": "ACTON",
- "state": "MA",
- "postalCode": "01720-4772",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-0000000062b6",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "25270"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Yost751",
- "given": [
- "Keesha623"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Keesha623.Yost751@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "271 GREAT RD"
- ],
- "city": "ACTON",
- "state": "MA",
- "postalCode": "01720-4772",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61",
- "resource": {
- "resourceType": "Encounter",
- "id": "d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6",
- "display": "Dr. Keesha623 Yost751"
- }
- }
- ],
- "period": {
- "start": "2012-05-10T18:09:51-04:00",
- "end": "2012-05-10T18:39:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:b31e375e-96dd-3a49-8fbf-563512101637",
- "display": "DEVITA CHIROPRACTIC OFFICE PC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:bcd5af47-ac6b-4d4d-8671-4046c6783f62",
- "resource": {
- "resourceType": "Observation",
- "id": "bcd5af47-ac6b-4d4d-8671-4046c6783f62",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 162.6383245610669,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c93e985c-40f0-437a-b680-f2500f28ca41",
- "resource": {
- "resourceType": "Observation",
- "id": "c93e985c-40f0-437a-b680-f2500f28ca41",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 3.883436774176619,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cdd31ee5-bfa7-4ffb-8041-7d491162928f",
- "resource": {
- "resourceType": "Observation",
- "id": "cdd31ee5-bfa7-4ffb-8041-7d491162928f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 50.57232149123916,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4a810a2c-6623-4350-9c68-eecd86487fd6",
- "resource": {
- "resourceType": "Observation",
- "id": "4a810a2c-6623-4350-9c68-eecd86487fd6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 19.119085118119436,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:39719710-f1e1-4996-a05b-3648a331a557",
- "resource": {
- "resourceType": "Observation",
- "id": "39719710-f1e1-4996-a05b-3648a331a557",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 77.20368113305032,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 103.48400579484418,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:91cf0af1-efdb-466f-8736-c1d40412005e",
- "resource": {
- "resourceType": "Observation",
- "id": "91cf0af1-efdb-466f-8736-c1d40412005e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 8.080843423165618,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:98bf40ff-c5b9-406d-885b-082f76719e75",
- "resource": {
- "resourceType": "Observation",
- "id": "98bf40ff-c5b9-406d-885b-082f76719e75",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 4.030397236180412,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:79a53000-c8be-4508-b4e2-3701f0f587e8",
- "resource": {
- "resourceType": "Observation",
- "id": "79a53000-c8be-4508-b4e2-3701f0f587e8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 16.676643684640872,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fe864ffc-643a-4152-9238-551000003d24",
- "resource": {
- "resourceType": "Observation",
- "id": "fe864ffc-643a-4152-9238-551000003d24",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 40.46545449837604,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3ab4f27e-419f-4832-97cd-f0526e4d4d57",
- "resource": {
- "resourceType": "Observation",
- "id": "3ab4f27e-419f-4832-97cd-f0526e4d4d57",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 89.98933184075162,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fd46a7ad-5c92-4be1-8244-5e199ae33efd",
- "resource": {
- "resourceType": "Observation",
- "id": "fd46a7ad-5c92-4be1-8244-5e199ae33efd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 31.34117380891709,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8a20dba5-1823-49f3-b461-70d7f351273e",
- "resource": {
- "resourceType": "Observation",
- "id": "8a20dba5-1823-49f3-b461-70d7f351273e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 33.35253098583646,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:92e88eb2-861b-4fd2-a76d-8c30ce71b044",
- "resource": {
- "resourceType": "Observation",
- "id": "92e88eb2-861b-4fd2-a76d-8c30ce71b044",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 44.12912457776983,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1b3650bd-4639-4065-8927-89cf63cb7b3d",
- "resource": {
- "resourceType": "Observation",
- "id": "1b3650bd-4639-4065-8927-89cf63cb7b3d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 365.3680446647578,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:22fe8478-a742-4092-b946-03a3a3c4f238",
- "resource": {
- "resourceType": "Observation",
- "id": "22fe8478-a742-4092-b946-03a3a3c4f238",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 352.49473079710793,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:527f6bb5-4007-44cc-a837-89b26cc9f04d",
- "resource": {
- "resourceType": "Observation",
- "id": "527f6bb5-4007-44cc-a837-89b26cc9f04d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 11.603562454213224,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6a0b61a4-b36a-43bd-bdb8-11f2c8a1cc95",
- "resource": {
- "resourceType": "Observation",
- "id": "6a0b61a4-b36a-43bd-bdb8-11f2c8a1cc95",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b82802f4-1e9d-455d-aa9f-7072c6be718d",
- "resource": {
- "resourceType": "Procedure",
- "id": "b82802f4-1e9d-455d-aa9f-7072c6be718d",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "performedPeriod": {
- "start": "2012-05-10T18:09:51-04:00",
- "end": "2012-05-10T18:24:51-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:78772690-8836-4d11-a7c8-df6a6982ffc9",
- "resource": {
- "resourceType": "Immunization",
- "id": "78772690-8836-4d11-a7c8-df6a6982ffc9",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "occurrenceDateTime": "2012-05-10T18:09:51-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:ad333532-5c2d-4279-946a-335ecea6ce70",
- "resource": {
- "resourceType": "Immunization",
- "id": "ad333532-5c2d-4279-946a-335ecea6ce70",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "occurrenceDateTime": "2012-05-10T18:09:51-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:9d5d4651-000c-4a79-87d4-6dc2039ad248",
- "resource": {
- "resourceType": "Immunization",
- "id": "9d5d4651-000c-4a79-87d4-6dc2039ad248",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "43",
- "display": "Hep B, adult"
- }
- ],
- "text": "Hep B, adult"
- },
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "occurrenceDateTime": "2012-05-10T18:09:51-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:f0099c93-e7fa-4d72-b641-1aa22099febd",
- "resource": {
- "resourceType": "Immunization",
- "id": "f0099c93-e7fa-4d72-b641-1aa22099febd",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "occurrenceDateTime": "2012-05-10T18:09:51-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:f84db6ae-2a09-4057-9468-94fa64f82aa2",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "f84db6ae-2a09-4057-9468-94fa64f82aa2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- },
- "effectiveDateTime": "2012-05-10T18:09:51-04:00",
- "issued": "2012-05-10T18:09:51.311-04:00",
- "result": [
- {
- "reference": "urn:uuid:91cf0af1-efdb-466f-8736-c1d40412005e",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:98bf40ff-c5b9-406d-885b-082f76719e75",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:79a53000-c8be-4508-b4e2-3701f0f587e8",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:fe864ffc-643a-4152-9238-551000003d24",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:3ab4f27e-419f-4832-97cd-f0526e4d4d57",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:fd46a7ad-5c92-4be1-8244-5e199ae33efd",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:8a20dba5-1823-49f3-b461-70d7f351273e",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:92e88eb2-861b-4fd2-a76d-8c30ce71b044",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:1b3650bd-4639-4065-8927-89cf63cb7b3d",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:22fe8478-a742-4092-b946-03a3a3c4f238",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:527f6bb5-4007-44cc-a837-89b26cc9f04d",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:ad89ce16-ca4f-441d-a9d6-7a22aa791d07",
- "resource": {
- "resourceType": "Claim",
- "id": "ad89ce16-ca4f-441d-a9d6-7a22aa791d07",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2012-05-10T18:09:51-04:00",
- "end": "2012-05-10T18:39:51-04:00"
- },
- "created": "2012-05-10T18:39:51-04:00",
- "provider": {
- "reference": "urn:uuid:b31e375e-96dd-3a49-8fbf-563512101637",
- "display": "DEVITA CHIROPRACTIC OFFICE PC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:78772690-8836-4d11-a7c8-df6a6982ffc9"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:ad333532-5c2d-4279-946a-335ecea6ce70"
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:9d5d4651-000c-4a79-87d4-6dc2039ad248"
- }
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:f0099c93-e7fa-4d72-b641-1aa22099febd"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:b82802f4-1e9d-455d-aa9f-7072c6be718d"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "43",
- "display": "Hep B, adult"
- }
- ],
- "text": "Hep B, adult"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 6,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 513.66,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:fb9da7a4-7b12-4516-8997-df03494ab4f3",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "fb9da7a4-7b12-4516-8997-df03494ab4f3",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ad89ce16-ca4f-441d-a9d6-7a22aa791d07"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2012-05-10T18:39:51-04:00",
- "end": "2013-05-10T18:39:51-04:00"
- },
- "created": "2012-05-10T18:39:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ad89ce16-ca4f-441d-a9d6-7a22aa791d07"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-05-10T18:09:51-04:00",
- "end": "2012-05-10T18:39:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:d3a5bb5c-77f4-46cd-b9ac-122af1cc1b61"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2012-05-10T18:09:51-04:00",
- "end": "2012-05-10T18:39:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "servicedPeriod": {
- "start": "2012-05-10T18:09:51-04:00",
- "end": "2012-05-10T18:39:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "43",
- "display": "Hep B, adult"
- }
- ],
- "text": "Hep B, adult"
- },
- "servicedPeriod": {
- "start": "2012-05-10T18:09:51-04:00",
- "end": "2012-05-10T18:39:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "servicedPeriod": {
- "start": "2012-05-10T18:09:51-04:00",
- "end": "2012-05-10T18:39:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 6,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-05-10T18:09:51-04:00",
- "end": "2012-05-10T18:39:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 513.66,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 102.732,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 410.928,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 513.66,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 513.66,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 860.5920000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:2558ab48-1bbe-452c-adbb-a2beff7941c5",
- "resource": {
- "resourceType": "Encounter",
- "id": "2558ab48-1bbe-452c-adbb-a2beff7941c5",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2012-06-26T18:09:51-04:00",
- "end": "2012-06-26T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:851a8fee-f461-4060-aea2-b6c943b44b88",
- "resource": {
- "resourceType": "Claim",
- "id": "851a8fee-f461-4060-aea2-b6c943b44b88",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2012-06-26T18:09:51-04:00",
- "end": "2012-06-26T18:24:51-04:00"
- },
- "created": "2012-06-26T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:2558ab48-1bbe-452c-adbb-a2beff7941c5"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9e3157dc-e4a0-4e13-9aca-003d963c64ca",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9e3157dc-e4a0-4e13-9aca-003d963c64ca",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "851a8fee-f461-4060-aea2-b6c943b44b88"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2012-06-26T18:24:51-04:00",
- "end": "2013-06-26T18:24:51-04:00"
- },
- "created": "2012-06-26T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:851a8fee-f461-4060-aea2-b6c943b44b88"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-06-26T18:09:51-04:00",
- "end": "2012-06-26T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:2558ab48-1bbe-452c-adbb-a2beff7941c5"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:459c4ff9-67a4-4e2b-8035-fdea0cf06b64",
- "resource": {
- "resourceType": "Encounter",
- "id": "459c4ff9-67a4-4e2b-8035-fdea0cf06b64",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b9b9fcc8-754a-45e1-857d-993eb9e8cbae",
- "resource": {
- "resourceType": "Claim",
- "id": "b9b9fcc8-754a-45e1-857d-993eb9e8cbae",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "created": "2012-07-26T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:459c4ff9-67a4-4e2b-8035-fdea0cf06b64"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e59755c7-9901-4a07-9523-4e400d95c137",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "e59755c7-9901-4a07-9523-4e400d95c137",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b9b9fcc8-754a-45e1-857d-993eb9e8cbae"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2012-07-26T18:24:51-04:00",
- "end": "2013-07-26T18:24:51-04:00"
- },
- "created": "2012-07-26T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b9b9fcc8-754a-45e1-857d-993eb9e8cbae"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:459c4ff9-67a4-4e2b-8035-fdea0cf06b64"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f",
- "resource": {
- "resourceType": "Encounter",
- "id": "0d4522cc-02a8-4c85-9258-f4e57b55de3f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "resource": {
- "resourceType": "Condition",
- "id": "727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "onsetDateTime": "2012-07-26T18:09:51-04:00",
- "abatementDateTime": "2013-02-07T17:09:51-05:00",
- "recordedDate": "2012-07-26T18:09:51-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:88f68b39-3256-4e2c-a178-391d9e88de36",
- "resource": {
- "resourceType": "Procedure",
- "id": "88f68b39-3256-4e2c-a178-391d9e88de36",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:0434abdc-1a8f-4043-8f79-8f4dc50624ed",
- "resource": {
- "resourceType": "Procedure",
- "id": "0434abdc-1a8f-4043-8f79-8f4dc50624ed",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:26596ff9-f8c6-44d7-9d1f-333d6d283a59",
- "resource": {
- "resourceType": "Procedure",
- "id": "26596ff9-f8c6-44d7-9d1f-333d6d283a59",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:4ffebf95-9e9f-4ce9-b36b-2da6aca7bda1",
- "resource": {
- "resourceType": "Procedure",
- "id": "4ffebf95-9e9f-4ce9-b36b-2da6aca7bda1",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:679420a1-1b6a-4941-a632-5b638cd22cd0",
- "resource": {
- "resourceType": "Procedure",
- "id": "679420a1-1b6a-4941-a632-5b638cd22cd0",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "44608003",
- "display": "Blood typing, RH typing"
- }
- ],
- "text": "Blood typing, RH typing"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:a52ff5ec-832b-48ab-8377-d919e219c02e",
- "resource": {
- "resourceType": "Procedure",
- "id": "a52ff5ec-832b-48ab-8377-d919e219c02e",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:e2220c57-ced2-485e-b2ae-725fcb4a9472",
- "resource": {
- "resourceType": "Procedure",
- "id": "e2220c57-ced2-485e-b2ae-725fcb4a9472",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "47758006",
- "display": "Hepatitis B Surface Antigen Measurement"
- }
- ],
- "text": "Hepatitis B Surface Antigen Measurement"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:f902d95a-139f-488b-9841-b0e74e254d3e",
- "resource": {
- "resourceType": "Procedure",
- "id": "f902d95a-139f-488b-9841-b0e74e254d3e",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "31676001",
- "display": "Human immunodeficiency virus antigen test"
- }
- ],
- "text": "Human immunodeficiency virus antigen test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:a1e13355-f4ed-4de4-a86f-039f93d4a16c",
- "resource": {
- "resourceType": "Procedure",
- "id": "a1e13355-f4ed-4de4-a86f-039f93d4a16c",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "310861008",
- "display": "Chlamydia antigen test"
- }
- ],
- "text": "Chlamydia antigen test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:224fe8aa-0293-4697-9dac-3a5382ef524f",
- "resource": {
- "resourceType": "Procedure",
- "id": "224fe8aa-0293-4697-9dac-3a5382ef524f",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "165829005",
- "display": "Gonorrhea infection test"
- }
- ],
- "text": "Gonorrhea infection test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:32672a36-d452-4d2a-b917-d8435e9c4441",
- "resource": {
- "resourceType": "Procedure",
- "id": "32672a36-d452-4d2a-b917-d8435e9c4441",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269828009",
- "display": "Syphilis infection test"
- }
- ],
- "text": "Syphilis infection test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:c75eee62-07d2-40e1-b7c5-6f3316b1bbca",
- "resource": {
- "resourceType": "Procedure",
- "id": "c75eee62-07d2-40e1-b7c5-6f3316b1bbca",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117010004",
- "display": "Urine culture"
- }
- ],
- "text": "Urine culture"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:5fd64842-af33-4476-be15-676f4778aaf5",
- "resource": {
- "resourceType": "Procedure",
- "id": "5fd64842-af33-4476-be15-676f4778aaf5",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "90226004",
- "display": "Cytopathology procedure, preparation of smear, genital source"
- }
- ],
- "text": "Cytopathology procedure, preparation of smear, genital source"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:3bf5be9b-3f3e-4837-920a-fdb2f8082ef2",
- "resource": {
- "resourceType": "Procedure",
- "id": "3bf5be9b-3f3e-4837-920a-fdb2f8082ef2",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "395123002",
- "display": "Urine screening test for diabetes"
- }
- ],
- "text": "Urine screening test for diabetes"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:5dc2908e-1946-42b4-b36a-17339e9c99f2",
- "resource": {
- "resourceType": "Procedure",
- "id": "5dc2908e-1946-42b4-b36a-17339e9c99f2",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104375008",
- "display": "Hepatitis C antibody test"
- }
- ],
- "text": "Hepatitis C antibody test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:b9065421-f56b-4abf-97c8-52206dd300c1",
- "resource": {
- "resourceType": "Procedure",
- "id": "b9065421-f56b-4abf-97c8-52206dd300c1",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169690007",
- "display": "Rubella screening"
- }
- ],
- "text": "Rubella screening"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:6db40fd5-65e2-4add-a902-9215c590fa7a",
- "resource": {
- "resourceType": "Procedure",
- "id": "6db40fd5-65e2-4add-a902-9215c590fa7a",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104326007",
- "display": "Measurement of Varicella-zoster virus antibody"
- }
- ],
- "text": "Measurement of Varicella-zoster virus antibody"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:3fc3b53a-a56b-4665-bd3d-bedc668cf48a",
- "resource": {
- "resourceType": "Procedure",
- "id": "3fc3b53a-a56b-4665-bd3d-bedc668cf48a",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "28163009",
- "display": "Skin test for tuberculosis"
- }
- ],
- "text": "Skin test for tuberculosis"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:be906f1c-8b93-4022-a1c6-6f08e85857bc",
- "resource": {
- "resourceType": "Procedure",
- "id": "be906f1c-8b93-4022-a1c6-6f08e85857bc",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "167271000",
- "display": "Urine protein test"
- }
- ],
- "text": "Urine protein test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:6135a98e-f483-4510-a833-e19ecbe9f64a",
- "resource": {
- "resourceType": "Procedure",
- "id": "6135a98e-f483-4510-a833-e19ecbe9f64a",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination of mother"
- }
- ],
- "text": "Physical examination of mother"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "performedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:82fbdf8f-bb24-4fc8-b55d-15c2276f0a08",
- "resource": {
- "resourceType": "CareTeam",
- "id": "82fbdf8f-bb24-4fc8-b55d-15c2276f0a08",
- "status": "inactive",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "period": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2013-02-07T17:09:51-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:c9fb389f-2dfa-4693-b536-8d4ef463b63a",
- "resource": {
- "resourceType": "CarePlan",
- "id": "c9fb389f-2dfa-4693-b536-8d4ef463b63a",
- "text": {
- "status": "generated",
- "div": "Care Plan for Routine antenatal care.
Activities:
- Routine antenatal care
- Routine antenatal care
- Routine antenatal care
Care plan is meant to treat Normal pregnancy.
"
- },
- "status": "completed",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "134435003",
- "display": "Routine antenatal care"
- }
- ],
- "text": "Routine antenatal care"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- },
- "period": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2013-02-07T17:09:51-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:82fbdf8f-bb24-4fc8-b55d-15c2276f0a08"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "135892000",
- "display": "Antenatal education"
- }
- ],
- "text": "Antenatal education"
- },
- "status": "completed",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "713076009",
- "display": "Antenatal risk assessment"
- }
- ],
- "text": "Antenatal risk assessment"
- },
- "status": "completed",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "312404004",
- "display": "Antenatal blood tests"
- }
- ],
- "text": "Antenatal blood tests"
- },
- "status": "completed",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:0098710a-8687-4210-8f02-ddc75347aa9e",
- "resource": {
- "resourceType": "Claim",
- "id": "0098710a-8687-4210-8f02-ddc75347aa9e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "created": "2012-07-26T23:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:88f68b39-3256-4e2c-a178-391d9e88de36"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:0434abdc-1a8f-4043-8f79-8f4dc50624ed"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:26596ff9-f8c6-44d7-9d1f-333d6d283a59"
- }
- },
- {
- "sequence": 4,
- "procedureReference": {
- "reference": "urn:uuid:4ffebf95-9e9f-4ce9-b36b-2da6aca7bda1"
- }
- },
- {
- "sequence": 5,
- "procedureReference": {
- "reference": "urn:uuid:679420a1-1b6a-4941-a632-5b638cd22cd0"
- }
- },
- {
- "sequence": 6,
- "procedureReference": {
- "reference": "urn:uuid:a52ff5ec-832b-48ab-8377-d919e219c02e"
- }
- },
- {
- "sequence": 7,
- "procedureReference": {
- "reference": "urn:uuid:e2220c57-ced2-485e-b2ae-725fcb4a9472"
- }
- },
- {
- "sequence": 8,
- "procedureReference": {
- "reference": "urn:uuid:f902d95a-139f-488b-9841-b0e74e254d3e"
- }
- },
- {
- "sequence": 9,
- "procedureReference": {
- "reference": "urn:uuid:a1e13355-f4ed-4de4-a86f-039f93d4a16c"
- }
- },
- {
- "sequence": 10,
- "procedureReference": {
- "reference": "urn:uuid:224fe8aa-0293-4697-9dac-3a5382ef524f"
- }
- },
- {
- "sequence": 11,
- "procedureReference": {
- "reference": "urn:uuid:32672a36-d452-4d2a-b917-d8435e9c4441"
- }
- },
- {
- "sequence": 12,
- "procedureReference": {
- "reference": "urn:uuid:c75eee62-07d2-40e1-b7c5-6f3316b1bbca"
- }
- },
- {
- "sequence": 13,
- "procedureReference": {
- "reference": "urn:uuid:5fd64842-af33-4476-be15-676f4778aaf5"
- }
- },
- {
- "sequence": 14,
- "procedureReference": {
- "reference": "urn:uuid:3bf5be9b-3f3e-4837-920a-fdb2f8082ef2"
- }
- },
- {
- "sequence": 15,
- "procedureReference": {
- "reference": "urn:uuid:5dc2908e-1946-42b4-b36a-17339e9c99f2"
- }
- },
- {
- "sequence": 16,
- "procedureReference": {
- "reference": "urn:uuid:b9065421-f56b-4abf-97c8-52206dd300c1"
- }
- },
- {
- "sequence": 17,
- "procedureReference": {
- "reference": "urn:uuid:6db40fd5-65e2-4add-a902-9215c590fa7a"
- }
- },
- {
- "sequence": 18,
- "procedureReference": {
- "reference": "urn:uuid:3fc3b53a-a56b-4665-bd3d-bedc668cf48a"
- }
- },
- {
- "sequence": 19,
- "procedureReference": {
- "reference": "urn:uuid:be906f1c-8b93-4022-a1c6-6f08e85857bc"
- }
- },
- {
- "sequence": 20,
- "procedureReference": {
- "reference": "urn:uuid:6135a98e-f483-4510-a833-e19ecbe9f64a"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "net": {
- "value": 5404.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "net": {
- "value": 11985.11,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 5888.78,
- "currency": "USD"
- }
- },
- {
- "sequence": 6,
- "procedureSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 4510.31,
- "currency": "USD"
- }
- },
- {
- "sequence": 7,
- "procedureSequence": [
- 5
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "44608003",
- "display": "Blood typing, RH typing"
- }
- ],
- "text": "Blood typing, RH typing"
- },
- "net": {
- "value": 3657.33,
- "currency": "USD"
- }
- },
- {
- "sequence": 8,
- "procedureSequence": [
- 6
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "net": {
- "value": 3375.09,
- "currency": "USD"
- }
- },
- {
- "sequence": 9,
- "procedureSequence": [
- 7
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "47758006",
- "display": "Hepatitis B Surface Antigen Measurement"
- }
- ],
- "text": "Hepatitis B Surface Antigen Measurement"
- },
- "net": {
- "value": 2322.72,
- "currency": "USD"
- }
- },
- {
- "sequence": 10,
- "procedureSequence": [
- 8
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "31676001",
- "display": "Human immunodeficiency virus antigen test"
- }
- ],
- "text": "Human immunodeficiency virus antigen test"
- },
- "net": {
- "value": 1667.83,
- "currency": "USD"
- }
- },
- {
- "sequence": 11,
- "procedureSequence": [
- 9
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "310861008",
- "display": "Chlamydia antigen test"
- }
- ],
- "text": "Chlamydia antigen test"
- },
- "net": {
- "value": 2784.27,
- "currency": "USD"
- }
- },
- {
- "sequence": 12,
- "procedureSequence": [
- 10
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "165829005",
- "display": "Gonorrhea infection test"
- }
- ],
- "text": "Gonorrhea infection test"
- },
- "net": {
- "value": 3207.83,
- "currency": "USD"
- }
- },
- {
- "sequence": 13,
- "procedureSequence": [
- 11
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269828009",
- "display": "Syphilis infection test"
- }
- ],
- "text": "Syphilis infection test"
- },
- "net": {
- "value": 2407.06,
- "currency": "USD"
- }
- },
- {
- "sequence": 14,
- "procedureSequence": [
- 12
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117010004",
- "display": "Urine culture"
- }
- ],
- "text": "Urine culture"
- },
- "net": {
- "value": 3952.90,
- "currency": "USD"
- }
- },
- {
- "sequence": 15,
- "procedureSequence": [
- 13
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "90226004",
- "display": "Cytopathology procedure, preparation of smear, genital source"
- }
- ],
- "text": "Cytopathology procedure, preparation of smear, genital source"
- },
- "net": {
- "value": 3026.63,
- "currency": "USD"
- }
- },
- {
- "sequence": 16,
- "procedureSequence": [
- 14
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "395123002",
- "display": "Urine screening test for diabetes"
- }
- ],
- "text": "Urine screening test for diabetes"
- },
- "net": {
- "value": 3065.34,
- "currency": "USD"
- }
- },
- {
- "sequence": 17,
- "procedureSequence": [
- 15
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104375008",
- "display": "Hepatitis C antibody test"
- }
- ],
- "text": "Hepatitis C antibody test"
- },
- "net": {
- "value": 3522.23,
- "currency": "USD"
- }
- },
- {
- "sequence": 18,
- "procedureSequence": [
- 16
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169690007",
- "display": "Rubella screening"
- }
- ],
- "text": "Rubella screening"
- },
- "net": {
- "value": 2820.01,
- "currency": "USD"
- }
- },
- {
- "sequence": 19,
- "procedureSequence": [
- 17
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104326007",
- "display": "Measurement of Varicella-zoster virus antibody"
- }
- ],
- "text": "Measurement of Varicella-zoster virus antibody"
- },
- "net": {
- "value": 2247.76,
- "currency": "USD"
- }
- },
- {
- "sequence": 20,
- "procedureSequence": [
- 18
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "28163009",
- "display": "Skin test for tuberculosis"
- }
- ],
- "text": "Skin test for tuberculosis"
- },
- "net": {
- "value": 2648.66,
- "currency": "USD"
- }
- },
- {
- "sequence": 21,
- "procedureSequence": [
- 19
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "167271000",
- "display": "Urine protein test"
- }
- ],
- "text": "Urine protein test"
- },
- "net": {
- "value": 1787.85,
- "currency": "USD"
- }
- },
- {
- "sequence": 22,
- "procedureSequence": [
- 20
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination of mother"
- }
- ],
- "text": "Physical examination of mother"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5943c67b-6607-4c2a-9f5e-ebe14d515e8f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5943c67b-6607-4c2a-9f5e-ebe14d515e8f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "0098710a-8687-4210-8f02-ddc75347aa9e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2012-07-26T23:24:51-04:00",
- "end": "2013-07-26T23:24:51-04:00"
- },
- "created": "2012-07-26T23:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:0098710a-8687-4210-8f02-ddc75347aa9e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:0d4522cc-02a8-4c85-9258-f4e57b55de3f"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 5404.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1080.9040000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4323.616000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5404.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5404.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 11985.11,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2397.0220000000004,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 9588.088000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 11985.11,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 11985.11,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 5888.78,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1177.756,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4711.024,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5888.78,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5888.78,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 6,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 4510.31,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 902.0620000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3608.2480000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4510.31,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4510.31,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 7,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "44608003",
- "display": "Blood typing, RH typing"
- }
- ],
- "text": "Blood typing, RH typing"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3657.33,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 731.466,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2925.864,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3657.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3657.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 8,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3375.09,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 675.018,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2700.072,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3375.09,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3375.09,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 9,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "47758006",
- "display": "Hepatitis B Surface Antigen Measurement"
- }
- ],
- "text": "Hepatitis B Surface Antigen Measurement"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2322.72,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 464.544,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1858.176,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2322.72,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2322.72,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 10,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "31676001",
- "display": "Human immunodeficiency virus antigen test"
- }
- ],
- "text": "Human immunodeficiency virus antigen test"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1667.83,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 333.56600000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1334.2640000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1667.83,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1667.83,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 11,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "310861008",
- "display": "Chlamydia antigen test"
- }
- ],
- "text": "Chlamydia antigen test"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2784.27,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 556.854,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2227.416,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2784.27,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2784.27,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 12,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "165829005",
- "display": "Gonorrhea infection test"
- }
- ],
- "text": "Gonorrhea infection test"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3207.83,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 641.566,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2566.264,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3207.83,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3207.83,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 13,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269828009",
- "display": "Syphilis infection test"
- }
- ],
- "text": "Syphilis infection test"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2407.06,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 481.41200000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1925.6480000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2407.06,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2407.06,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 14,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117010004",
- "display": "Urine culture"
- }
- ],
- "text": "Urine culture"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3952.90,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 790.58,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3162.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3952.90,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3952.90,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 15,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "90226004",
- "display": "Cytopathology procedure, preparation of smear, genital source"
- }
- ],
- "text": "Cytopathology procedure, preparation of smear, genital source"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3026.63,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 605.326,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2421.304,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3026.63,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3026.63,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 16,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "395123002",
- "display": "Urine screening test for diabetes"
- }
- ],
- "text": "Urine screening test for diabetes"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3065.34,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 613.0680000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2452.2720000000004,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3065.34,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3065.34,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 17,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104375008",
- "display": "Hepatitis C antibody test"
- }
- ],
- "text": "Hepatitis C antibody test"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3522.23,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 704.446,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2817.784,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3522.23,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3522.23,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 18,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169690007",
- "display": "Rubella screening"
- }
- ],
- "text": "Rubella screening"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2820.01,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 564.0020000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2256.0080000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2820.01,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2820.01,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 19,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104326007",
- "display": "Measurement of Varicella-zoster virus antibody"
- }
- ],
- "text": "Measurement of Varicella-zoster virus antibody"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2247.76,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 449.5520000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1798.2080000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2247.76,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2247.76,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 20,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "28163009",
- "display": "Skin test for tuberculosis"
- }
- ],
- "text": "Skin test for tuberculosis"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2648.66,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 529.732,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2118.928,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2648.66,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2648.66,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 21,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "167271000",
- "display": "Urine protein test"
- }
- ],
- "text": "Urine protein test"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1787.85,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 357.57,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1430.28,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1787.85,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1787.85,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 22,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination of mother"
- }
- ],
- "text": "Physical examination of mother"
- },
- "servicedPeriod": {
- "start": "2012-07-26T18:09:51-04:00",
- "end": "2012-07-26T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 56639.104,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:e76079c5-e9d8-4a54-9490-f5a277ee5385",
- "resource": {
- "resourceType": "Encounter",
- "id": "e76079c5-e9d8-4a54-9490-f5a277ee5385",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2012-08-23T18:09:51-04:00",
- "end": "2012-08-23T19:09:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:02ce72ae-99a6-41ac-bc4a-2ae44a0e0ed5",
- "resource": {
- "resourceType": "Procedure",
- "id": "02ce72ae-99a6-41ac-bc4a-2ae44a0e0ed5",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e76079c5-e9d8-4a54-9490-f5a277ee5385"
- },
- "performedPeriod": {
- "start": "2012-08-23T18:09:51-04:00",
- "end": "2012-08-23T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:8d01ef80-37e9-4a21-9e39-3c3d97fa2486",
- "resource": {
- "resourceType": "Procedure",
- "id": "8d01ef80-37e9-4a21-9e39-3c3d97fa2486",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e76079c5-e9d8-4a54-9490-f5a277ee5385"
- },
- "performedPeriod": {
- "start": "2012-08-23T18:09:51-04:00",
- "end": "2012-08-23T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:862153bc-af16-412a-9d3d-0ae8be680fc0",
- "resource": {
- "resourceType": "Procedure",
- "id": "862153bc-af16-412a-9d3d-0ae8be680fc0",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "443529005",
- "display": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- }
- ],
- "text": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e76079c5-e9d8-4a54-9490-f5a277ee5385"
- },
- "performedPeriod": {
- "start": "2012-08-23T18:09:51-04:00",
- "end": "2012-08-23T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:f4ea7304-c6a4-4611-8f8c-a530a5c65c97",
- "resource": {
- "resourceType": "Claim",
- "id": "f4ea7304-c6a4-4611-8f8c-a530a5c65c97",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2012-08-23T18:09:51-04:00",
- "end": "2012-08-23T19:09:51-04:00"
- },
- "created": "2012-08-23T19:09:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:02ce72ae-99a6-41ac-bc4a-2ae44a0e0ed5"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:8d01ef80-37e9-4a21-9e39-3c3d97fa2486"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:862153bc-af16-412a-9d3d-0ae8be680fc0"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e76079c5-e9d8-4a54-9490-f5a277ee5385"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 7953.27,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 5379.11,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "443529005",
- "display": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- }
- ],
- "text": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- },
- "net": {
- "value": 2852.72,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:41f33d55-80bb-467b-b79a-08944fca5c93",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "41f33d55-80bb-467b-b79a-08944fca5c93",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f4ea7304-c6a4-4611-8f8c-a530a5c65c97"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2012-08-23T19:09:51-04:00",
- "end": "2013-08-23T19:09:51-04:00"
- },
- "created": "2012-08-23T19:09:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f4ea7304-c6a4-4611-8f8c-a530a5c65c97"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2012-08-23T18:09:51-04:00",
- "end": "2012-08-23T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:e76079c5-e9d8-4a54-9490-f5a277ee5385"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2012-08-23T18:09:51-04:00",
- "end": "2012-08-23T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 7953.27,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1590.6540000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 6362.616000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7953.27,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7953.27,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2012-08-23T18:09:51-04:00",
- "end": "2012-08-23T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 5379.11,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1075.822,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4303.288,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5379.11,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5379.11,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "443529005",
- "display": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- }
- ],
- "text": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- },
- "servicedPeriod": {
- "start": "2012-08-23T18:09:51-04:00",
- "end": "2012-08-23T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2852.72,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 570.544,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2282.176,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2852.72,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2852.72,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 12948.08,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:5ae55884-89af-4bf5-9e5f-82b5dd673bf4",
- "resource": {
- "resourceType": "Encounter",
- "id": "5ae55884-89af-4bf5-9e5f-82b5dd673bf4",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2012-09-20T18:09:51-04:00",
- "end": "2012-09-20T19:24:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:0d730e3f-de84-4210-953e-f6da34efd0ff",
- "resource": {
- "resourceType": "Procedure",
- "id": "0d730e3f-de84-4210-953e-f6da34efd0ff",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271442007",
- "display": "Fetal anatomy study"
- }
- ],
- "text": "Fetal anatomy study"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:5ae55884-89af-4bf5-9e5f-82b5dd673bf4"
- },
- "performedPeriod": {
- "start": "2012-09-20T18:09:51-04:00",
- "end": "2012-09-20T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:2b68e210-a0fd-4dc9-bc14-9d958a0547ef",
- "resource": {
- "resourceType": "Procedure",
- "id": "2b68e210-a0fd-4dc9-bc14-9d958a0547ef",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "275833003",
- "display": "Alpha-fetoprotein test"
- }
- ],
- "text": "Alpha-fetoprotein test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:5ae55884-89af-4bf5-9e5f-82b5dd673bf4"
- },
- "performedPeriod": {
- "start": "2012-09-20T18:09:51-04:00",
- "end": "2012-09-20T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:23e82ac1-6e9d-4c3d-9482-5e417a1f2d58",
- "resource": {
- "resourceType": "Procedure",
- "id": "23e82ac1-6e9d-4c3d-9482-5e417a1f2d58",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:5ae55884-89af-4bf5-9e5f-82b5dd673bf4"
- },
- "performedPeriod": {
- "start": "2012-09-20T18:09:51-04:00",
- "end": "2012-09-20T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:94aaef27-3f96-4614-9374-ffe658d5d3c6",
- "resource": {
- "resourceType": "Procedure",
- "id": "94aaef27-3f96-4614-9374-ffe658d5d3c6",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:5ae55884-89af-4bf5-9e5f-82b5dd673bf4"
- },
- "performedPeriod": {
- "start": "2012-09-20T18:09:51-04:00",
- "end": "2012-09-20T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:35be256a-3994-4510-8333-d84c439541d1",
- "resource": {
- "resourceType": "Claim",
- "id": "35be256a-3994-4510-8333-d84c439541d1",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2012-09-20T18:09:51-04:00",
- "end": "2012-09-20T19:24:51-04:00"
- },
- "created": "2012-09-20T19:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:0d730e3f-de84-4210-953e-f6da34efd0ff"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:2b68e210-a0fd-4dc9-bc14-9d958a0547ef"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:23e82ac1-6e9d-4c3d-9482-5e417a1f2d58"
- }
- },
- {
- "sequence": 4,
- "procedureReference": {
- "reference": "urn:uuid:94aaef27-3f96-4614-9374-ffe658d5d3c6"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:5ae55884-89af-4bf5-9e5f-82b5dd673bf4"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271442007",
- "display": "Fetal anatomy study"
- }
- ],
- "text": "Fetal anatomy study"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "275833003",
- "display": "Alpha-fetoprotein test"
- }
- ],
- "text": "Alpha-fetoprotein test"
- },
- "net": {
- "value": 1557.98,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 10212.70,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "procedureSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 7354.11,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3582525f-05ac-45e1-898a-bf1d116a51e9",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3582525f-05ac-45e1-898a-bf1d116a51e9",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "35be256a-3994-4510-8333-d84c439541d1"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2012-09-20T19:24:51-04:00",
- "end": "2013-09-20T19:24:51-04:00"
- },
- "created": "2012-09-20T19:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:35be256a-3994-4510-8333-d84c439541d1"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2012-09-20T18:09:51-04:00",
- "end": "2012-09-20T19:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:5ae55884-89af-4bf5-9e5f-82b5dd673bf4"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271442007",
- "display": "Fetal anatomy study"
- }
- ],
- "text": "Fetal anatomy study"
- },
- "servicedPeriod": {
- "start": "2012-09-20T18:09:51-04:00",
- "end": "2012-09-20T19:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "275833003",
- "display": "Alpha-fetoprotein test"
- }
- ],
- "text": "Alpha-fetoprotein test"
- },
- "servicedPeriod": {
- "start": "2012-09-20T18:09:51-04:00",
- "end": "2012-09-20T19:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1557.98,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 311.596,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1246.384,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1557.98,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1557.98,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2012-09-20T18:09:51-04:00",
- "end": "2012-09-20T19:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 10212.70,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2042.5400000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 8170.160000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 10212.70,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 10212.70,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2012-09-20T18:09:51-04:00",
- "end": "2012-09-20T19:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 7354.11,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1470.8220000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 5883.2880000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7354.11,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7354.11,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 15713.152000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c90995e5-3107-4e56-bd3b-357dc059427b",
- "resource": {
- "resourceType": "Encounter",
- "id": "c90995e5-3107-4e56-bd3b-357dc059427b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2012-10-18T18:09:51-04:00",
- "end": "2012-10-18T18:54:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f58a8b3a-87af-40c0-affa-e5a02cf99330",
- "resource": {
- "resourceType": "Procedure",
- "id": "f58a8b3a-87af-40c0-affa-e5a02cf99330",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:c90995e5-3107-4e56-bd3b-357dc059427b"
- },
- "performedPeriod": {
- "start": "2012-10-18T18:09:51-04:00",
- "end": "2012-10-18T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:19133453-ac2b-4008-8ebc-d94ec62f9283",
- "resource": {
- "resourceType": "Procedure",
- "id": "19133453-ac2b-4008-8ebc-d94ec62f9283",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:c90995e5-3107-4e56-bd3b-357dc059427b"
- },
- "performedPeriod": {
- "start": "2012-10-18T18:09:51-04:00",
- "end": "2012-10-18T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:dd6fbfaa-1e8e-4950-9a89-6f58ee7f09be",
- "resource": {
- "resourceType": "Claim",
- "id": "dd6fbfaa-1e8e-4950-9a89-6f58ee7f09be",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2012-10-18T18:09:51-04:00",
- "end": "2012-10-18T18:54:51-04:00"
- },
- "created": "2012-10-18T18:54:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:f58a8b3a-87af-40c0-affa-e5a02cf99330"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:19133453-ac2b-4008-8ebc-d94ec62f9283"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c90995e5-3107-4e56-bd3b-357dc059427b"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 8556.75,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 6247.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0cb03c85-8707-444f-a81c-4d1fe182eb86",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0cb03c85-8707-444f-a81c-4d1fe182eb86",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "dd6fbfaa-1e8e-4950-9a89-6f58ee7f09be"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2012-10-18T18:54:51-04:00",
- "end": "2013-10-18T18:54:51-04:00"
- },
- "created": "2012-10-18T18:54:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:dd6fbfaa-1e8e-4950-9a89-6f58ee7f09be"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2012-10-18T18:09:51-04:00",
- "end": "2012-10-18T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c90995e5-3107-4e56-bd3b-357dc059427b"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2012-10-18T18:09:51-04:00",
- "end": "2012-10-18T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 8556.75,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1711.3500000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 6845.400000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 8556.75,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 8556.75,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2012-10-18T18:09:51-04:00",
- "end": "2012-10-18T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 6247.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1249.5040000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4998.0160000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6247.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6247.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 11843.416000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:ed0f3bfb-d078-4c72-b28c-0fbf461e904c",
- "resource": {
- "resourceType": "Encounter",
- "id": "ed0f3bfb-d078-4c72-b28c-0fbf461e904c",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2012-11-15T17:09:51-05:00",
- "end": "2012-11-15T17:54:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:9a70f8b6-0f8c-4694-a5ce-a214065ad165",
- "resource": {
- "resourceType": "Procedure",
- "id": "9a70f8b6-0f8c-4694-a5ce-a214065ad165",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:ed0f3bfb-d078-4c72-b28c-0fbf461e904c"
- },
- "performedPeriod": {
- "start": "2012-11-15T17:09:51-05:00",
- "end": "2012-11-15T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:25f0dd1c-30c5-43fc-9226-74b2e5780910",
- "resource": {
- "resourceType": "Procedure",
- "id": "25f0dd1c-30c5-43fc-9226-74b2e5780910",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:ed0f3bfb-d078-4c72-b28c-0fbf461e904c"
- },
- "performedPeriod": {
- "start": "2012-11-15T17:09:51-05:00",
- "end": "2012-11-15T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:087d7a8c-32a6-4511-aab3-b911c5b6929b",
- "resource": {
- "resourceType": "Claim",
- "id": "087d7a8c-32a6-4511-aab3-b911c5b6929b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2012-11-15T17:09:51-05:00",
- "end": "2012-11-15T17:54:51-05:00"
- },
- "created": "2012-11-15T17:54:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:9a70f8b6-0f8c-4694-a5ce-a214065ad165"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:25f0dd1c-30c5-43fc-9226-74b2e5780910"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ed0f3bfb-d078-4c72-b28c-0fbf461e904c"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 6252.33,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 5228.99,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b5fe93fa-d253-41c9-b27c-0050c1f99e5c",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "b5fe93fa-d253-41c9-b27c-0050c1f99e5c",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "087d7a8c-32a6-4511-aab3-b911c5b6929b"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2012-11-15T17:54:51-05:00",
- "end": "2013-11-15T17:54:51-05:00"
- },
- "created": "2012-11-15T17:54:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:087d7a8c-32a6-4511-aab3-b911c5b6929b"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2012-11-15T17:09:51-05:00",
- "end": "2012-11-15T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ed0f3bfb-d078-4c72-b28c-0fbf461e904c"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2012-11-15T17:09:51-05:00",
- "end": "2012-11-15T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 6252.33,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1250.4660000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 5001.8640000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6252.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6252.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2012-11-15T17:09:51-05:00",
- "end": "2012-11-15T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 5228.99,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1045.798,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4183.192,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5228.99,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5228.99,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 9185.056,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:e7984aaf-97b2-4ddc-9b10-ae4d0c2ab8b3",
- "resource": {
- "resourceType": "Encounter",
- "id": "e7984aaf-97b2-4ddc-9b10-ae4d0c2ab8b3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T18:39:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:bb2d2255-9647-44e7-acd5-87a60ebb81cb",
- "resource": {
- "resourceType": "Procedure",
- "id": "bb2d2255-9647-44e7-acd5-87a60ebb81cb",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e7984aaf-97b2-4ddc-9b10-ae4d0c2ab8b3"
- },
- "performedPeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:a187ff61-6333-48ae-86df-770908597ff6",
- "resource": {
- "resourceType": "Procedure",
- "id": "a187ff61-6333-48ae-86df-770908597ff6",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399014008",
- "display": "Vaccination for diphtheria, pertussis, and tetanus"
- }
- ],
- "text": "Vaccination for diphtheria, pertussis, and tetanus"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e7984aaf-97b2-4ddc-9b10-ae4d0c2ab8b3"
- },
- "performedPeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:977b9a5f-66c7-4c2c-9ea2-5c329e724539",
- "resource": {
- "resourceType": "Procedure",
- "id": "977b9a5f-66c7-4c2c-9ea2-5c329e724539",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "268556000",
- "display": "Urine screening for glucose"
- }
- ],
- "text": "Urine screening for glucose"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e7984aaf-97b2-4ddc-9b10-ae4d0c2ab8b3"
- },
- "performedPeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:4effe893-a455-4ccc-9061-4ccc2b177321",
- "resource": {
- "resourceType": "Procedure",
- "id": "4effe893-a455-4ccc-9061-4ccc2b177321",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e7984aaf-97b2-4ddc-9b10-ae4d0c2ab8b3"
- },
- "performedPeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:bb3a06b9-417a-4e1b-8d4b-bafe4681c10d",
- "resource": {
- "resourceType": "Procedure",
- "id": "bb3a06b9-417a-4e1b-8d4b-bafe4681c10d",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e7984aaf-97b2-4ddc-9b10-ae4d0c2ab8b3"
- },
- "performedPeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:37e6b4df-be65-486f-847f-80120e60dfeb",
- "resource": {
- "resourceType": "Claim",
- "id": "37e6b4df-be65-486f-847f-80120e60dfeb",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T18:39:51-05:00"
- },
- "created": "2012-12-13T18:39:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:bb2d2255-9647-44e7-acd5-87a60ebb81cb"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:a187ff61-6333-48ae-86df-770908597ff6"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:977b9a5f-66c7-4c2c-9ea2-5c329e724539"
- }
- },
- {
- "sequence": 4,
- "procedureReference": {
- "reference": "urn:uuid:4effe893-a455-4ccc-9061-4ccc2b177321"
- }
- },
- {
- "sequence": 5,
- "procedureReference": {
- "reference": "urn:uuid:bb3a06b9-417a-4e1b-8d4b-bafe4681c10d"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e7984aaf-97b2-4ddc-9b10-ae4d0c2ab8b3"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "net": {
- "value": 1899.83,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399014008",
- "display": "Vaccination for diphtheria, pertussis, and tetanus"
- }
- ],
- "text": "Vaccination for diphtheria, pertussis, and tetanus"
- },
- "net": {
- "value": 4212.50,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "268556000",
- "display": "Urine screening for glucose"
- }
- ],
- "text": "Urine screening for glucose"
- },
- "net": {
- "value": 2056.24,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "procedureSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 9000.01,
- "currency": "USD"
- }
- },
- {
- "sequence": 6,
- "procedureSequence": [
- 5
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 5400.97,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f671f24f-d96f-4859-af1f-bc8e4476234c",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f671f24f-d96f-4859-af1f-bc8e4476234c",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "37e6b4df-be65-486f-847f-80120e60dfeb"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2012-12-13T18:39:51-05:00",
- "end": "2013-12-13T18:39:51-05:00"
- },
- "created": "2012-12-13T18:39:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:37e6b4df-be65-486f-847f-80120e60dfeb"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:e7984aaf-97b2-4ddc-9b10-ae4d0c2ab8b3"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "servicedPeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1899.83,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 379.966,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1519.864,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1899.83,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1899.83,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399014008",
- "display": "Vaccination for diphtheria, pertussis, and tetanus"
- }
- ],
- "text": "Vaccination for diphtheria, pertussis, and tetanus"
- },
- "servicedPeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 4212.50,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 842.5,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3370.0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4212.50,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4212.50,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "268556000",
- "display": "Urine screening for glucose"
- }
- ],
- "text": "Urine screening for glucose"
- },
- "servicedPeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2056.24,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 411.248,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1644.992,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2056.24,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2056.24,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 9000.01,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1800.0020000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 7200.008000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9000.01,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9000.01,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 6,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2012-12-13T17:09:51-05:00",
- "end": "2012-12-13T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 5400.97,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1080.1940000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4320.776000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5400.97,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5400.97,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 18055.640000000003,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a5d3027b-96de-4217-8e4e-632f62068a1d",
- "resource": {
- "resourceType": "Encounter",
- "id": "a5d3027b-96de-4217-8e4e-632f62068a1d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2013-01-10T17:09:51-05:00",
- "end": "2013-01-10T17:54:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b521f10e-be29-4b89-8177-4eb6e50f96de",
- "resource": {
- "resourceType": "Procedure",
- "id": "b521f10e-be29-4b89-8177-4eb6e50f96de",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:a5d3027b-96de-4217-8e4e-632f62068a1d"
- },
- "performedPeriod": {
- "start": "2013-01-10T17:09:51-05:00",
- "end": "2013-01-10T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:a477d860-b165-428c-a2d8-499446f79c5d",
- "resource": {
- "resourceType": "Procedure",
- "id": "a477d860-b165-428c-a2d8-499446f79c5d",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:a5d3027b-96de-4217-8e4e-632f62068a1d"
- },
- "performedPeriod": {
- "start": "2013-01-10T17:09:51-05:00",
- "end": "2013-01-10T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:57d5b839-357a-4714-844b-fd6209f78b84",
- "resource": {
- "resourceType": "Claim",
- "id": "57d5b839-357a-4714-844b-fd6209f78b84",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2013-01-10T17:09:51-05:00",
- "end": "2013-01-10T17:54:51-05:00"
- },
- "created": "2013-01-10T17:54:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:b521f10e-be29-4b89-8177-4eb6e50f96de"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:a477d860-b165-428c-a2d8-499446f79c5d"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a5d3027b-96de-4217-8e4e-632f62068a1d"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 7186.45,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 9009.05,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:34651545-fc51-443c-9f9e-79b28fadf859",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "34651545-fc51-443c-9f9e-79b28fadf859",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "57d5b839-357a-4714-844b-fd6209f78b84"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2013-01-10T17:54:51-05:00",
- "end": "2014-01-10T17:54:51-05:00"
- },
- "created": "2013-01-10T17:54:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:57d5b839-357a-4714-844b-fd6209f78b84"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2013-01-10T17:09:51-05:00",
- "end": "2013-01-10T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:a5d3027b-96de-4217-8e4e-632f62068a1d"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2013-01-10T17:09:51-05:00",
- "end": "2013-01-10T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 7186.45,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1437.29,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 5749.16,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7186.45,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7186.45,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2013-01-10T17:09:51-05:00",
- "end": "2013-01-10T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 9009.05,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1801.81,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 7207.24,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9009.05,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9009.05,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 12956.4,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:ada50e79-8c0d-4587-8b87-b5a93bf27ca4",
- "resource": {
- "resourceType": "Encounter",
- "id": "ada50e79-8c0d-4587-8b87-b5a93bf27ca4",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183460006",
- "display": "Obstetric emergency hospital admission"
- }
- ],
- "text": "Obstetric emergency hospital admission"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2013-02-07T17:09:51-05:00",
- "end": "2013-02-07T18:39:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:033e614f-b095-4c71-ae62-e2fc9e44a555",
- "resource": {
- "resourceType": "Procedure",
- "id": "033e614f-b095-4c71-ae62-e2fc9e44a555",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "18946005",
- "display": "Epidural anesthesia"
- }
- ],
- "text": "Epidural anesthesia"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:ada50e79-8c0d-4587-8b87-b5a93bf27ca4"
- },
- "performedPeriod": {
- "start": "2013-02-07T17:09:51-05:00",
- "end": "2013-02-07T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:49595de6-bf8e-4bf8-9c88-b3461136734e",
- "resource": {
- "resourceType": "Procedure",
- "id": "49595de6-bf8e-4bf8-9c88-b3461136734e",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "65588006",
- "display": "Premature birth of newborn"
- }
- ],
- "text": "Premature birth of newborn"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:ada50e79-8c0d-4587-8b87-b5a93bf27ca4"
- },
- "performedPeriod": {
- "start": "2013-02-07T17:09:51-05:00",
- "end": "2013-02-07T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:803244e8-e4e8-430d-8608-5ca35c5d61ee",
- "resource": {
- "resourceType": "Claim",
- "id": "803244e8-e4e8-430d-8608-5ca35c5d61ee",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2013-02-07T17:09:51-05:00",
- "end": "2013-02-07T18:39:51-05:00"
- },
- "created": "2013-02-07T18:39:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:033e614f-b095-4c71-ae62-e2fc9e44a555"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:49595de6-bf8e-4bf8-9c88-b3461136734e"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183460006",
- "display": "Obstetric emergency hospital admission"
- }
- ],
- "text": "Obstetric emergency hospital admission"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ada50e79-8c0d-4587-8b87-b5a93bf27ca4"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "18946005",
- "display": "Epidural anesthesia"
- }
- ],
- "text": "Epidural anesthesia"
- },
- "net": {
- "value": 2282.74,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "65588006",
- "display": "Premature birth of newborn"
- }
- ],
- "text": "Premature birth of newborn"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b66cab52-2391-4121-b6ef-7c92a4597a67",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "b66cab52-2391-4121-b6ef-7c92a4597a67",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "803244e8-e4e8-430d-8608-5ca35c5d61ee"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2013-02-07T18:39:51-05:00",
- "end": "2014-02-07T18:39:51-05:00"
- },
- "created": "2013-02-07T18:39:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:803244e8-e4e8-430d-8608-5ca35c5d61ee"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183460006",
- "display": "Obstetric emergency hospital admission"
- }
- ],
- "text": "Obstetric emergency hospital admission"
- },
- "servicedPeriod": {
- "start": "2013-02-07T17:09:51-05:00",
- "end": "2013-02-07T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ada50e79-8c0d-4587-8b87-b5a93bf27ca4"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "18946005",
- "display": "Epidural anesthesia"
- }
- ],
- "text": "Epidural anesthesia"
- },
- "servicedPeriod": {
- "start": "2013-02-07T17:09:51-05:00",
- "end": "2013-02-07T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 2282.74,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 456.548,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1826.192,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2282.74,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2282.74,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "65588006",
- "display": "Premature birth of newborn"
- }
- ],
- "text": "Premature birth of newborn"
- },
- "servicedPeriod": {
- "start": "2013-02-07T17:09:51-05:00",
- "end": "2013-02-07T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2239.512,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:9b81c01c-4227-4c08-9c6d-5f08320bdcbe",
- "resource": {
- "resourceType": "Encounter",
- "id": "9b81c01c-4227-4c08-9c6d-5f08320bdcbe",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169762003",
- "display": "Postnatal visit"
- }
- ],
- "text": "Postnatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2013-03-21T18:09:51-04:00",
- "end": "2013-03-21T18:54:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:0bbad48c-778c-46b3-8a1b-ebc187a61e96",
- "resource": {
- "resourceType": "Procedure",
- "id": "0bbad48c-778c-46b3-8a1b-ebc187a61e96",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination following birth"
- }
- ],
- "text": "Physical examination following birth"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:9b81c01c-4227-4c08-9c6d-5f08320bdcbe"
- },
- "performedPeriod": {
- "start": "2013-03-21T18:09:51-04:00",
- "end": "2013-03-21T18:24:51-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:98ef7593-44e0-43b2-898b-c473b7137c50",
- "resource": {
- "resourceType": "Procedure",
- "id": "98ef7593-44e0-43b2-898b-c473b7137c50",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:9b81c01c-4227-4c08-9c6d-5f08320bdcbe"
- },
- "performedPeriod": {
- "start": "2013-03-21T18:09:51-04:00",
- "end": "2013-03-21T18:24:51-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:a71f06c8-cc78-4d6f-8ae8-5a101a9b3112",
- "resource": {
- "resourceType": "Claim",
- "id": "a71f06c8-cc78-4d6f-8ae8-5a101a9b3112",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2013-03-21T18:09:51-04:00",
- "end": "2013-03-21T18:54:51-04:00"
- },
- "created": "2013-03-21T18:54:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:0bbad48c-778c-46b3-8a1b-ebc187a61e96"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:98ef7593-44e0-43b2-898b-c473b7137c50"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169762003",
- "display": "Postnatal visit"
- }
- ],
- "text": "Postnatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:9b81c01c-4227-4c08-9c6d-5f08320bdcbe"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination following birth"
- }
- ],
- "text": "Physical examination following birth"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:8e252d8f-0404-492d-98ea-9173fee2c786",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "8e252d8f-0404-492d-98ea-9173fee2c786",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "a71f06c8-cc78-4d6f-8ae8-5a101a9b3112"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2013-03-21T18:54:51-04:00",
- "end": "2014-03-21T18:54:51-04:00"
- },
- "created": "2013-03-21T18:54:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:a71f06c8-cc78-4d6f-8ae8-5a101a9b3112"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169762003",
- "display": "Postnatal visit"
- }
- ],
- "text": "Postnatal visit"
- },
- "servicedPeriod": {
- "start": "2013-03-21T18:09:51-04:00",
- "end": "2013-03-21T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:9b81c01c-4227-4c08-9c6d-5f08320bdcbe"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination following birth"
- }
- ],
- "text": "Physical examination following birth"
- },
- "servicedPeriod": {
- "start": "2013-03-21T18:09:51-04:00",
- "end": "2013-03-21T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "servicedPeriod": {
- "start": "2013-03-21T18:09:51-04:00",
- "end": "2013-03-21T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 826.64,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:43955f93-091b-4e15-b537-118643da7d60",
- "resource": {
- "resourceType": "Encounter",
- "id": "43955f93-091b-4e15-b537-118643da7d60",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "IMP"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "56876005",
- "display": "Drug rehabilitation and detoxification"
- }
- ],
- "text": "Drug rehabilitation and detoxification"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2013-04-27T18:09:51-04:00",
- "end": "2013-04-28T18:09:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:e77954c5-242c-4f00-8d68-b0dc0adca98c",
- "resource": {
- "resourceType": "Observation",
- "id": "e77954c5-242c-4f00-8d68-b0dc0adca98c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:43955f93-091b-4e15-b537-118643da7d60"
- },
- "effectiveDateTime": "2013-04-27T18:09:51-04:00",
- "issued": "2013-04-27T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 4.573418790268471,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:747cffaa-3805-485d-aca3-fe06748682c0",
- "resource": {
- "resourceType": "Claim",
- "id": "747cffaa-3805-485d-aca3-fe06748682c0",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2013-04-27T18:09:51-04:00",
- "end": "2013-04-28T18:09:51-04:00"
- },
- "created": "2013-04-28T18:09:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "56876005",
- "display": "Drug rehabilitation and detoxification"
- }
- ],
- "text": "Drug rehabilitation and detoxification"
- },
- "encounter": [
- {
- "reference": "urn:uuid:43955f93-091b-4e15-b537-118643da7d60"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3853ce6e-2704-496d-ba50-2220d20d6559",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3853ce6e-2704-496d-ba50-2220d20d6559",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "747cffaa-3805-485d-aca3-fe06748682c0"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2013-04-28T18:09:51-04:00",
- "end": "2014-04-28T18:09:51-04:00"
- },
- "created": "2013-04-28T18:09:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:747cffaa-3805-485d-aca3-fe06748682c0"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "56876005",
- "display": "Drug rehabilitation and detoxification"
- }
- ],
- "text": "Drug rehabilitation and detoxification"
- },
- "servicedPeriod": {
- "start": "2013-04-27T18:09:51-04:00",
- "end": "2013-04-28T18:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:43955f93-091b-4e15-b537-118643da7d60"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:1e1ce3ee-8fb3-42ec-9937-535996553242",
- "resource": {
- "resourceType": "Encounter",
- "id": "1e1ce3ee-8fb3-42ec-9937-535996553242",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2013-05-04T18:09:51-04:00",
- "end": "2013-05-04T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:ca648352-7e8c-4842-a0f5-b49ab9f4248a",
- "resource": {
- "resourceType": "Claim",
- "id": "ca648352-7e8c-4842-a0f5-b49ab9f4248a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2013-05-04T18:09:51-04:00",
- "end": "2013-05-04T18:24:51-04:00"
- },
- "created": "2013-05-04T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:1e1ce3ee-8fb3-42ec-9937-535996553242"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:47832d5a-44bb-408a-8b0f-eefc0dcc431c",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "47832d5a-44bb-408a-8b0f-eefc0dcc431c",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ca648352-7e8c-4842-a0f5-b49ab9f4248a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2013-05-04T18:24:51-04:00",
- "end": "2014-05-04T18:24:51-04:00"
- },
- "created": "2013-05-04T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ca648352-7e8c-4842-a0f5-b49ab9f4248a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2013-05-04T18:09:51-04:00",
- "end": "2013-05-04T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:1e1ce3ee-8fb3-42ec-9937-535996553242"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a0f220b9-ab10-4b99-8c7b-ded435de84d5",
- "resource": {
- "resourceType": "Encounter",
- "id": "a0f220b9-ab10-4b99-8c7b-ded435de84d5",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2013-06-03T18:09:51-04:00",
- "end": "2013-06-03T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:dfe1fb7f-6261-4a53-b829-6bf48d4ea6dc",
- "resource": {
- "resourceType": "Claim",
- "id": "dfe1fb7f-6261-4a53-b829-6bf48d4ea6dc",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2013-06-03T18:09:51-04:00",
- "end": "2013-06-03T18:24:51-04:00"
- },
- "created": "2013-06-03T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a0f220b9-ab10-4b99-8c7b-ded435de84d5"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:70b7daa5-c203-4b38-b1a1-5afb5d706c4a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "70b7daa5-c203-4b38-b1a1-5afb5d706c4a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "dfe1fb7f-6261-4a53-b829-6bf48d4ea6dc"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2013-06-03T18:24:51-04:00",
- "end": "2014-06-03T18:24:51-04:00"
- },
- "created": "2013-06-03T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:dfe1fb7f-6261-4a53-b829-6bf48d4ea6dc"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2013-06-03T18:09:51-04:00",
- "end": "2013-06-03T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:a0f220b9-ab10-4b99-8c7b-ded435de84d5"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:2b71ec9f-04c2-4d2a-a9f7-3531838b6d2d",
- "resource": {
- "resourceType": "Encounter",
- "id": "2b71ec9f-04c2-4d2a-a9f7-3531838b6d2d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2013-10-09T18:09:51-04:00",
- "end": "2013-10-09T19:09:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c412b28b-32ae-486b-aeb4-99fdbd07d088",
- "resource": {
- "resourceType": "Claim",
- "id": "c412b28b-32ae-486b-aeb4-99fdbd07d088",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2013-10-09T18:09:51-04:00",
- "end": "2013-10-09T19:09:51-04:00"
- },
- "created": "2013-10-09T19:09:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "encounter": [
- {
- "reference": "urn:uuid:2b71ec9f-04c2-4d2a-a9f7-3531838b6d2d"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5ae3aa64-7c14-4401-8f52-f52524e8912c",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5ae3aa64-7c14-4401-8f52-f52524e8912c",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c412b28b-32ae-486b-aeb4-99fdbd07d088"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2013-10-09T19:09:51-04:00",
- "end": "2014-10-09T19:09:51-04:00"
- },
- "created": "2013-10-09T19:09:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c412b28b-32ae-486b-aeb4-99fdbd07d088"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "servicedPeriod": {
- "start": "2013-10-09T18:09:51-04:00",
- "end": "2013-10-09T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:2b71ec9f-04c2-4d2a-a9f7-3531838b6d2d"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:4d14bf8b-b4d9-4284-b4d7-a2e040c796c0",
- "resource": {
- "resourceType": "Encounter",
- "id": "4d14bf8b-b4d9-4284-b4d7-a2e040c796c0",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2013-11-06T17:09:51-05:00",
- "end": "2013-11-06T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:75dd4546-e090-409b-a6fe-a6301122294b",
- "resource": {
- "resourceType": "Claim",
- "id": "75dd4546-e090-409b-a6fe-a6301122294b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2013-11-06T17:09:51-05:00",
- "end": "2013-11-06T17:24:51-05:00"
- },
- "created": "2013-11-06T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:4d14bf8b-b4d9-4284-b4d7-a2e040c796c0"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5c443a8d-88bc-416f-8ba2-08c4f64f99dc",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5c443a8d-88bc-416f-8ba2-08c4f64f99dc",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "75dd4546-e090-409b-a6fe-a6301122294b"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2013-11-06T17:24:51-05:00",
- "end": "2014-11-06T17:24:51-05:00"
- },
- "created": "2013-11-06T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:75dd4546-e090-409b-a6fe-a6301122294b"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2013-11-06T17:09:51-05:00",
- "end": "2013-11-06T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:4d14bf8b-b4d9-4284-b4d7-a2e040c796c0"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:b3def874-1336-4cb7-963e-6411c189ea38",
- "resource": {
- "resourceType": "Encounter",
- "id": "b3def874-1336-4cb7-963e-6411c189ea38",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "IMP"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "56876005",
- "display": "Drug rehabilitation and detoxification"
- }
- ],
- "text": "Drug rehabilitation and detoxification"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2014-12-26T17:09:51-05:00",
- "end": "2014-12-27T17:09:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:7b5586b6-8ea0-4571-8883-4ba161861296",
- "resource": {
- "resourceType": "Observation",
- "id": "7b5586b6-8ea0-4571-8883-4ba161861296",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:b3def874-1336-4cb7-963e-6411c189ea38"
- },
- "effectiveDateTime": "2014-12-26T17:09:51-05:00",
- "issued": "2014-12-26T17:09:51.311-05:00",
- "valueQuantity": {
- "value": 4.5990435717385925,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:03955793-cdc5-4b8f-9271-534c242ae65b",
- "resource": {
- "resourceType": "Claim",
- "id": "03955793-cdc5-4b8f-9271-534c242ae65b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2014-12-26T17:09:51-05:00",
- "end": "2014-12-27T17:09:51-05:00"
- },
- "created": "2014-12-27T17:09:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "56876005",
- "display": "Drug rehabilitation and detoxification"
- }
- ],
- "text": "Drug rehabilitation and detoxification"
- },
- "encounter": [
- {
- "reference": "urn:uuid:b3def874-1336-4cb7-963e-6411c189ea38"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:13a9bf65-2787-4db6-b93d-0c5572053c3b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "13a9bf65-2787-4db6-b93d-0c5572053c3b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "03955793-cdc5-4b8f-9271-534c242ae65b"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2014-12-27T17:09:51-05:00",
- "end": "2015-12-27T17:09:51-05:00"
- },
- "created": "2014-12-27T17:09:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:03955793-cdc5-4b8f-9271-534c242ae65b"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "56876005",
- "display": "Drug rehabilitation and detoxification"
- }
- ],
- "text": "Drug rehabilitation and detoxification"
- },
- "servicedPeriod": {
- "start": "2014-12-26T17:09:51-05:00",
- "end": "2014-12-27T17:09:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:b3def874-1336-4cb7-963e-6411c189ea38"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c8f0b4ac-b708-4fe9-8ccb-1b943e17eb14",
- "resource": {
- "resourceType": "Encounter",
- "id": "c8f0b4ac-b708-4fe9-8ccb-1b943e17eb14",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2015-03-11T18:09:51-04:00",
- "end": "2015-03-11T18:34:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:ea843f3b-dafd-479c-96b9-8897085210f3",
- "resource": {
- "resourceType": "Procedure",
- "id": "ea843f3b-dafd-479c-96b9-8897085210f3",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:c8f0b4ac-b708-4fe9-8ccb-1b943e17eb14"
- },
- "performedPeriod": {
- "start": "2015-03-11T18:09:51-04:00",
- "end": "2015-03-11T18:19:51-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:6b19a723-d6dc-4d3c-925f-ed0539d64f4b",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "6b19a723-d6dc-4d3c-925f-ed0539d64f4b",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "1000126",
- "display": "1 ML medroxyprogesterone acetate 150 MG/ML Injection"
- }
- ],
- "text": "1 ML medroxyprogesterone acetate 150 MG/ML Injection"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:c8f0b4ac-b708-4fe9-8ccb-1b943e17eb14"
- },
- "authoredOn": "2015-03-11T18:09:51-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:c03b23ef-d606-4eec-8420-108eab24463b",
- "resource": {
- "resourceType": "Claim",
- "id": "c03b23ef-d606-4eec-8420-108eab24463b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2015-03-11T18:09:51-04:00",
- "end": "2015-03-11T18:34:51-04:00"
- },
- "created": "2015-03-11T18:34:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:6b19a723-d6dc-4d3c-925f-ed0539d64f4b"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c8f0b4ac-b708-4fe9-8ccb-1b943e17eb14"
- }
- ]
- }
- ],
- "total": {
- "value": 409.37,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:ac720732-5f3c-426d-b886-792510f861d6",
- "resource": {
- "resourceType": "Claim",
- "id": "ac720732-5f3c-426d-b886-792510f861d6",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2015-03-11T18:09:51-04:00",
- "end": "2015-03-11T18:34:51-04:00"
- },
- "created": "2015-03-11T18:34:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:ea843f3b-dafd-479c-96b9-8897085210f3"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c8f0b4ac-b708-4fe9-8ccb-1b943e17eb14"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 1917.35,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9d25ee38-a01f-40d1-95c0-80405f4bd7c0",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9d25ee38-a01f-40d1-95c0-80405f4bd7c0",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ac720732-5f3c-426d-b886-792510f861d6"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2015-03-11T18:34:51-04:00",
- "end": "2016-03-11T18:34:51-05:00"
- },
- "created": "2015-03-11T18:34:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ac720732-5f3c-426d-b886-792510f861d6"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2015-03-11T18:09:51-04:00",
- "end": "2015-03-11T18:34:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c8f0b4ac-b708-4fe9-8ccb-1b943e17eb14"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2015-03-11T18:09:51-04:00",
- "end": "2015-03-11T18:34:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1917.35,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 383.47,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1533.88,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1917.35,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1917.35,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1533.88,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:aea4094f-dfb1-4b76-947a-213bd87969f1",
- "resource": {
- "resourceType": "Encounter",
- "id": "aea4094f-dfb1-4b76-947a-213bd87969f1",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6",
- "display": "Dr. Keesha623 Yost751"
- }
- }
- ],
- "period": {
- "start": "2015-05-14T18:09:51-04:00",
- "end": "2015-05-14T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:b31e375e-96dd-3a49-8fbf-563512101637",
- "display": "DEVITA CHIROPRACTIC OFFICE PC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:fdfaa406-1087-49a8-8350-c7d0cfc23672",
- "resource": {
- "resourceType": "Observation",
- "id": "fdfaa406-1087-49a8-8350-c7d0cfc23672",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:aea4094f-dfb1-4b76-947a-213bd87969f1"
- },
- "effectiveDateTime": "2015-05-14T18:09:51-04:00",
- "issued": "2015-05-14T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 162.6383245610669,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c218f7e4-f8d9-472c-ab61-a51d0bbb055c",
- "resource": {
- "resourceType": "Observation",
- "id": "c218f7e4-f8d9-472c-ab61-a51d0bbb055c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:aea4094f-dfb1-4b76-947a-213bd87969f1"
- },
- "effectiveDateTime": "2015-05-14T18:09:51-04:00",
- "issued": "2015-05-14T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 0.4566047198112768,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f1878a59-5bdf-490d-a081-bf41b36000c0",
- "resource": {
- "resourceType": "Observation",
- "id": "f1878a59-5bdf-490d-a081-bf41b36000c0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:aea4094f-dfb1-4b76-947a-213bd87969f1"
- },
- "effectiveDateTime": "2015-05-14T18:09:51-04:00",
- "issued": "2015-05-14T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 55.69928711860946,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e21d46af-9b29-47cf-9f84-adb9f2076366",
- "resource": {
- "resourceType": "Observation",
- "id": "e21d46af-9b29-47cf-9f84-adb9f2076366",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:aea4094f-dfb1-4b76-947a-213bd87969f1"
- },
- "effectiveDateTime": "2015-05-14T18:09:51-04:00",
- "issued": "2015-05-14T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 21.05735667332867,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5e999a16-6941-4ac8-ad41-896edb63ae46",
- "resource": {
- "resourceType": "Observation",
- "id": "5e999a16-6941-4ac8-ad41-896edb63ae46",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:aea4094f-dfb1-4b76-947a-213bd87969f1"
- },
- "effectiveDateTime": "2015-05-14T18:09:51-04:00",
- "issued": "2015-05-14T18:09:51.311-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 78.57739925166217,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 104.5297966829361,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:aa81a3c2-f95b-4b4d-8378-09e49b4e1937",
- "resource": {
- "resourceType": "Observation",
- "id": "aa81a3c2-f95b-4b4d-8378-09e49b4e1937",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:aea4094f-dfb1-4b76-947a-213bd87969f1"
- },
- "effectiveDateTime": "2015-05-14T18:09:51-04:00",
- "issued": "2015-05-14T18:09:51.311-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8c7d32ac-1f64-45ef-bf7e-f00519b9b3b4",
- "resource": {
- "resourceType": "Immunization",
- "id": "8c7d32ac-1f64-45ef-bf7e-f00519b9b3b4",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:aea4094f-dfb1-4b76-947a-213bd87969f1"
- },
- "occurrenceDateTime": "2015-05-14T18:09:51-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:8cc14b6c-677d-4f03-98b3-f3cb46050170",
- "resource": {
- "resourceType": "Claim",
- "id": "8cc14b6c-677d-4f03-98b3-f3cb46050170",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2015-05-14T18:09:51-04:00",
- "end": "2015-05-14T18:24:51-04:00"
- },
- "created": "2015-05-14T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:b31e375e-96dd-3a49-8fbf-563512101637",
- "display": "DEVITA CHIROPRACTIC OFFICE PC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:8c7d32ac-1f64-45ef-bf7e-f00519b9b3b4"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:aea4094f-dfb1-4b76-947a-213bd87969f1"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f18b0388-ffca-4dd4-98eb-56f3f907b241",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f18b0388-ffca-4dd4-98eb-56f3f907b241",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "8cc14b6c-677d-4f03-98b3-f3cb46050170"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2015-05-14T18:24:51-04:00",
- "end": "2016-05-14T18:24:51-04:00"
- },
- "created": "2015-05-14T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:8cc14b6c-677d-4f03-98b3-f3cb46050170"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-05-14T18:09:51-04:00",
- "end": "2015-05-14T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:aea4094f-dfb1-4b76-947a-213bd87969f1"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2015-05-14T18:09:51-04:00",
- "end": "2015-05-14T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:436e428f-a5d8-41a9-bdb9-b8091e0766df",
- "resource": {
- "resourceType": "Encounter",
- "id": "436e428f-a5d8-41a9-bdb9-b8091e0766df",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2015-06-18T18:09:51-04:00",
- "end": "2015-06-18T18:41:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:783285e5-0db9-4991-9ff3-10599afe2fbe",
- "resource": {
- "resourceType": "Procedure",
- "id": "783285e5-0db9-4991-9ff3-10599afe2fbe",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:436e428f-a5d8-41a9-bdb9-b8091e0766df"
- },
- "performedPeriod": {
- "start": "2015-06-18T18:09:51-04:00",
- "end": "2015-06-18T18:26:51-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:794dd83b-f1d9-49cc-9d2d-ad7452058bfc",
- "resource": {
- "resourceType": "Claim",
- "id": "794dd83b-f1d9-49cc-9d2d-ad7452058bfc",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2015-06-18T18:09:51-04:00",
- "end": "2015-06-18T18:41:51-04:00"
- },
- "created": "2015-06-18T18:41:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:783285e5-0db9-4991-9ff3-10599afe2fbe"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:436e428f-a5d8-41a9-bdb9-b8091e0766df"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 3787.76,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:15e90078-5c90-408e-b5d9-067c43eec070",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "15e90078-5c90-408e-b5d9-067c43eec070",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "794dd83b-f1d9-49cc-9d2d-ad7452058bfc"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2015-06-18T18:41:51-04:00",
- "end": "2016-06-18T18:41:51-04:00"
- },
- "created": "2015-06-18T18:41:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:794dd83b-f1d9-49cc-9d2d-ad7452058bfc"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2015-06-18T18:09:51-04:00",
- "end": "2015-06-18T18:41:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:436e428f-a5d8-41a9-bdb9-b8091e0766df"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2015-06-18T18:09:51-04:00",
- "end": "2015-06-18T18:41:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3787.76,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 757.5520000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3030.2080000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3787.76,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3787.76,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 3030.2080000000005,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:18c8d1e0-94b6-49ea-b1cd-74bcdf3b415b",
- "resource": {
- "resourceType": "Encounter",
- "id": "18c8d1e0-94b6-49ea-b1cd-74bcdf3b415b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2015-09-04T18:09:51-04:00",
- "end": "2015-09-04T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:1d982e1b-706e-47db-ac95-069e8af7c8a5",
- "resource": {
- "resourceType": "Claim",
- "id": "1d982e1b-706e-47db-ac95-069e8af7c8a5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2015-09-04T18:09:51-04:00",
- "end": "2015-09-04T18:24:51-04:00"
- },
- "created": "2015-09-04T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:18c8d1e0-94b6-49ea-b1cd-74bcdf3b415b"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:17a6ba1c-6ec3-41f4-9d27-b8cce18b57b4",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "17a6ba1c-6ec3-41f4-9d27-b8cce18b57b4",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "1d982e1b-706e-47db-ac95-069e8af7c8a5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2015-09-04T18:24:51-04:00",
- "end": "2016-09-04T18:24:51-04:00"
- },
- "created": "2015-09-04T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:1d982e1b-706e-47db-ac95-069e8af7c8a5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-09-04T18:09:51-04:00",
- "end": "2015-09-04T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:18c8d1e0-94b6-49ea-b1cd-74bcdf3b415b"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:7cfb298b-f209-473f-9cf8-9e7b4d3f2e60",
- "resource": {
- "resourceType": "Encounter",
- "id": "7cfb298b-f209-473f-9cf8-9e7b4d3f2e60",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2015-09-17T18:09:51-04:00",
- "end": "2015-09-17T18:42:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:817a8b88-ff0e-41f2-926a-cd191b5b55fc",
- "resource": {
- "resourceType": "Procedure",
- "id": "817a8b88-ff0e-41f2-926a-cd191b5b55fc",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:7cfb298b-f209-473f-9cf8-9e7b4d3f2e60"
- },
- "performedPeriod": {
- "start": "2015-09-17T18:09:51-04:00",
- "end": "2015-09-17T18:27:51-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d8e1781b-bc04-4f2e-871d-c1ec34fde6ea",
- "resource": {
- "resourceType": "Claim",
- "id": "d8e1781b-bc04-4f2e-871d-c1ec34fde6ea",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2015-09-17T18:09:51-04:00",
- "end": "2015-09-17T18:42:51-04:00"
- },
- "created": "2015-09-17T18:42:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:817a8b88-ff0e-41f2-926a-cd191b5b55fc"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:7cfb298b-f209-473f-9cf8-9e7b4d3f2e60"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2932.19,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:07e558b5-974e-4f06-9f3a-0a498aa24dad",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "07e558b5-974e-4f06-9f3a-0a498aa24dad",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d8e1781b-bc04-4f2e-871d-c1ec34fde6ea"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2015-09-17T18:42:51-04:00",
- "end": "2016-09-17T18:42:51-04:00"
- },
- "created": "2015-09-17T18:42:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d8e1781b-bc04-4f2e-871d-c1ec34fde6ea"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2015-09-17T18:09:51-04:00",
- "end": "2015-09-17T18:42:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:7cfb298b-f209-473f-9cf8-9e7b4d3f2e60"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2015-09-17T18:09:51-04:00",
- "end": "2015-09-17T18:42:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2932.19,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 586.438,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2345.752,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2932.19,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2932.19,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2345.752,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3e0c26a2-7431-4ddd-b3a7-985e4eef30cf",
- "resource": {
- "resourceType": "Encounter",
- "id": "3e0c26a2-7431-4ddd-b3a7-985e4eef30cf",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2015-10-04T18:09:51-04:00",
- "end": "2015-10-04T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:1e221e46-b77f-450b-9069-1631334eb4e4",
- "resource": {
- "resourceType": "Claim",
- "id": "1e221e46-b77f-450b-9069-1631334eb4e4",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2015-10-04T18:09:51-04:00",
- "end": "2015-10-04T18:24:51-04:00"
- },
- "created": "2015-10-04T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3e0c26a2-7431-4ddd-b3a7-985e4eef30cf"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5728a25e-5e05-4854-857f-3e6fb9a62eaf",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5728a25e-5e05-4854-857f-3e6fb9a62eaf",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "1e221e46-b77f-450b-9069-1631334eb4e4"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2015-10-04T18:24:51-04:00",
- "end": "2016-10-04T18:24:51-04:00"
- },
- "created": "2015-10-04T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:1e221e46-b77f-450b-9069-1631334eb4e4"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-10-04T18:09:51-04:00",
- "end": "2015-10-04T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3e0c26a2-7431-4ddd-b3a7-985e4eef30cf"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:ac15f766-e971-4d9c-a912-ea14cf0de137",
- "resource": {
- "resourceType": "Encounter",
- "id": "ac15f766-e971-4d9c-a912-ea14cf0de137",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2015-11-03T17:09:51-05:00",
- "end": "2015-11-03T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:e55daed4-0521-4fa8-92eb-36d2fa43f911",
- "resource": {
- "resourceType": "Claim",
- "id": "e55daed4-0521-4fa8-92eb-36d2fa43f911",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2015-11-03T17:09:51-05:00",
- "end": "2015-11-03T17:24:51-05:00"
- },
- "created": "2015-11-03T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ac15f766-e971-4d9c-a912-ea14cf0de137"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:22ddfd8e-fe66-49f4-9b89-472070443dc6",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "22ddfd8e-fe66-49f4-9b89-472070443dc6",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "e55daed4-0521-4fa8-92eb-36d2fa43f911"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2015-11-03T17:24:51-05:00",
- "end": "2016-11-03T17:24:51-04:00"
- },
- "created": "2015-11-03T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:e55daed4-0521-4fa8-92eb-36d2fa43f911"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-11-03T17:09:51-05:00",
- "end": "2015-11-03T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ac15f766-e971-4d9c-a912-ea14cf0de137"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:680fc006-41cf-4d59-88d7-90d252dec296",
- "resource": {
- "resourceType": "Encounter",
- "id": "680fc006-41cf-4d59-88d7-90d252dec296",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2015-12-03T17:09:51-05:00",
- "end": "2015-12-03T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:734976e9-5ecf-4219-885b-cc3cdfcb129c",
- "resource": {
- "resourceType": "Claim",
- "id": "734976e9-5ecf-4219-885b-cc3cdfcb129c",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2015-12-03T17:09:51-05:00",
- "end": "2015-12-03T17:24:51-05:00"
- },
- "created": "2015-12-03T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:680fc006-41cf-4d59-88d7-90d252dec296"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:c3e3b69f-2607-4075-a349-9e397c790992",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "c3e3b69f-2607-4075-a349-9e397c790992",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "734976e9-5ecf-4219-885b-cc3cdfcb129c"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2015-12-03T17:24:51-05:00",
- "end": "2016-12-03T17:24:51-05:00"
- },
- "created": "2015-12-03T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:734976e9-5ecf-4219-885b-cc3cdfcb129c"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-12-03T17:09:51-05:00",
- "end": "2015-12-03T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:680fc006-41cf-4d59-88d7-90d252dec296"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:00c53ccc-15ce-41d2-a6b3-d140734f2d31",
- "resource": {
- "resourceType": "Encounter",
- "id": "00c53ccc-15ce-41d2-a6b3-d140734f2d31",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2015-12-17T17:09:51-05:00",
- "end": "2015-12-17T17:43:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d492a2ad-de7f-40bf-94aa-eeb2c323aad3",
- "resource": {
- "resourceType": "Procedure",
- "id": "d492a2ad-de7f-40bf-94aa-eeb2c323aad3",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:00c53ccc-15ce-41d2-a6b3-d140734f2d31"
- },
- "performedPeriod": {
- "start": "2015-12-17T17:09:51-05:00",
- "end": "2015-12-17T17:28:51-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d130e9f4-f6ca-426b-89a4-069714b85fad",
- "resource": {
- "resourceType": "Claim",
- "id": "d130e9f4-f6ca-426b-89a4-069714b85fad",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2015-12-17T17:09:51-05:00",
- "end": "2015-12-17T17:43:51-05:00"
- },
- "created": "2015-12-17T17:43:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:d492a2ad-de7f-40bf-94aa-eeb2c323aad3"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:00c53ccc-15ce-41d2-a6b3-d140734f2d31"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2500.93,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:6955d672-25fa-4136-92b9-19ca67d0e53f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "6955d672-25fa-4136-92b9-19ca67d0e53f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d130e9f4-f6ca-426b-89a4-069714b85fad"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2015-12-17T17:43:51-05:00",
- "end": "2016-12-17T17:43:51-05:00"
- },
- "created": "2015-12-17T17:43:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d130e9f4-f6ca-426b-89a4-069714b85fad"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2015-12-17T17:09:51-05:00",
- "end": "2015-12-17T17:43:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:00c53ccc-15ce-41d2-a6b3-d140734f2d31"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2015-12-17T17:09:51-05:00",
- "end": "2015-12-17T17:43:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2500.93,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 500.186,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2000.744,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2500.93,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2500.93,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2000.744,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c9236ebf-6da9-465a-a054-0e3ae94554c7",
- "resource": {
- "resourceType": "Encounter",
- "id": "c9236ebf-6da9-465a-a054-0e3ae94554c7",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-01-02T17:09:51-05:00",
- "end": "2016-01-02T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:e0e3fcb9-5f23-4f3f-8e2e-fdf9ebbfb47a",
- "resource": {
- "resourceType": "Claim",
- "id": "e0e3fcb9-5f23-4f3f-8e2e-fdf9ebbfb47a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-01-02T17:09:51-05:00",
- "end": "2016-01-02T17:24:51-05:00"
- },
- "created": "2016-01-02T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c9236ebf-6da9-465a-a054-0e3ae94554c7"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:75949147-11f7-4623-a4c0-d7ba7183de55",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "75949147-11f7-4623-a4c0-d7ba7183de55",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "e0e3fcb9-5f23-4f3f-8e2e-fdf9ebbfb47a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-01-02T17:24:51-05:00",
- "end": "2017-01-02T17:24:51-05:00"
- },
- "created": "2016-01-02T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:e0e3fcb9-5f23-4f3f-8e2e-fdf9ebbfb47a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-01-02T17:09:51-05:00",
- "end": "2016-01-02T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c9236ebf-6da9-465a-a054-0e3ae94554c7"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:fc2c9c46-e113-4e49-8ae7-b903c60859fe",
- "resource": {
- "resourceType": "Encounter",
- "id": "fc2c9c46-e113-4e49-8ae7-b903c60859fe",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-02-01T17:09:51-05:00",
- "end": "2016-02-01T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:29efd213-99e9-4a1f-855a-a6d54c310b28",
- "resource": {
- "resourceType": "Claim",
- "id": "29efd213-99e9-4a1f-855a-a6d54c310b28",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-02-01T17:09:51-05:00",
- "end": "2016-02-01T17:24:51-05:00"
- },
- "created": "2016-02-01T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:fc2c9c46-e113-4e49-8ae7-b903c60859fe"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5fbdfcf3-6561-4f90-b08c-9bc05b5d277f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5fbdfcf3-6561-4f90-b08c-9bc05b5d277f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "29efd213-99e9-4a1f-855a-a6d54c310b28"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-02-01T17:24:51-05:00",
- "end": "2017-02-01T17:24:51-05:00"
- },
- "created": "2016-02-01T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:29efd213-99e9-4a1f-855a-a6d54c310b28"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-02-01T17:09:51-05:00",
- "end": "2016-02-01T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:fc2c9c46-e113-4e49-8ae7-b903c60859fe"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:aaccbde3-eec9-4432-a0c3-f25e1563cc6f",
- "resource": {
- "resourceType": "Encounter",
- "id": "aaccbde3-eec9-4432-a0c3-f25e1563cc6f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-03-02T17:09:51-05:00",
- "end": "2016-03-02T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:cd4ccf87-4f3f-4f5a-ae5f-2ee668d0915b",
- "resource": {
- "resourceType": "Claim",
- "id": "cd4ccf87-4f3f-4f5a-ae5f-2ee668d0915b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-03-02T17:09:51-05:00",
- "end": "2016-03-02T17:24:51-05:00"
- },
- "created": "2016-03-02T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:aaccbde3-eec9-4432-a0c3-f25e1563cc6f"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9c1611a1-6f97-4910-826e-c4e953226c9b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9c1611a1-6f97-4910-826e-c4e953226c9b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "cd4ccf87-4f3f-4f5a-ae5f-2ee668d0915b"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-03-02T17:24:51-05:00",
- "end": "2017-03-02T17:24:51-05:00"
- },
- "created": "2016-03-02T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:cd4ccf87-4f3f-4f5a-ae5f-2ee668d0915b"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-03-02T17:09:51-05:00",
- "end": "2016-03-02T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:aaccbde3-eec9-4432-a0c3-f25e1563cc6f"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:dc0fa2f8-16ed-416d-b73c-2fd91f2aef80",
- "resource": {
- "resourceType": "Encounter",
- "id": "dc0fa2f8-16ed-416d-b73c-2fd91f2aef80",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-03-17T18:09:51-04:00",
- "end": "2016-03-17T18:36:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:6f2795e5-ab3a-4aaa-8cf2-836b8febd093",
- "resource": {
- "resourceType": "Procedure",
- "id": "6f2795e5-ab3a-4aaa-8cf2-836b8febd093",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:dc0fa2f8-16ed-416d-b73c-2fd91f2aef80"
- },
- "performedPeriod": {
- "start": "2016-03-17T18:09:51-04:00",
- "end": "2016-03-17T18:21:51-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:5ace82f7-f22e-41b5-998b-1e3d757e7954",
- "resource": {
- "resourceType": "Claim",
- "id": "5ace82f7-f22e-41b5-998b-1e3d757e7954",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-03-17T18:09:51-04:00",
- "end": "2016-03-17T18:36:51-04:00"
- },
- "created": "2016-03-17T18:36:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:6f2795e5-ab3a-4aaa-8cf2-836b8febd093"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "encounter": [
- {
- "reference": "urn:uuid:dc0fa2f8-16ed-416d-b73c-2fd91f2aef80"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "net": {
- "value": 2538.47,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9e1236e9-2a6a-4dd0-a866-0c4f5ddba38a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9e1236e9-2a6a-4dd0-a866-0c4f5ddba38a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5ace82f7-f22e-41b5-998b-1e3d757e7954"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-03-17T18:36:51-04:00",
- "end": "2017-03-17T18:36:51-04:00"
- },
- "created": "2016-03-17T18:36:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5ace82f7-f22e-41b5-998b-1e3d757e7954"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308335008",
- "display": "Patient encounter procedure"
- }
- ],
- "text": "Patient encounter procedure"
- },
- "servicedPeriod": {
- "start": "2016-03-17T18:09:51-04:00",
- "end": "2016-03-17T18:36:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:dc0fa2f8-16ed-416d-b73c-2fd91f2aef80"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "76601001",
- "display": "Intramuscular injection"
- }
- ],
- "text": "Intramuscular injection"
- },
- "servicedPeriod": {
- "start": "2016-03-17T18:09:51-04:00",
- "end": "2016-03-17T18:36:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2538.47,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 507.69399999999996,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2030.7759999999998,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2538.47,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2538.47,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 2030.7759999999998,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:ba963428-e314-4451-b2b3-889561e25089",
- "resource": {
- "resourceType": "Encounter",
- "id": "ba963428-e314-4451-b2b3-889561e25089",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-04-01T18:09:51-04:00",
- "end": "2016-04-01T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:87e64d26-880f-4781-9256-72cd89bdfdb1",
- "resource": {
- "resourceType": "Claim",
- "id": "87e64d26-880f-4781-9256-72cd89bdfdb1",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-04-01T18:09:51-04:00",
- "end": "2016-04-01T18:24:51-04:00"
- },
- "created": "2016-04-01T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ba963428-e314-4451-b2b3-889561e25089"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:325f3c8a-0a21-4e50-9ed1-0f5b6bbc0b4e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "325f3c8a-0a21-4e50-9ed1-0f5b6bbc0b4e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "87e64d26-880f-4781-9256-72cd89bdfdb1"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-04-01T18:24:51-04:00",
- "end": "2017-04-01T18:24:51-04:00"
- },
- "created": "2016-04-01T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:87e64d26-880f-4781-9256-72cd89bdfdb1"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-04-01T18:09:51-04:00",
- "end": "2016-04-01T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ba963428-e314-4451-b2b3-889561e25089"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:ddb6dc62-cbdd-4c10-9ee7-c7bae250e0f3",
- "resource": {
- "resourceType": "Encounter",
- "id": "ddb6dc62-cbdd-4c10-9ee7-c7bae250e0f3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-04-14T18:09:51-04:00",
- "end": "2016-04-14T18:24:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f4c57f08-4232-4ba5-b4ac-d6d2c2faceb8",
- "resource": {
- "resourceType": "Condition",
- "id": "f4c57f08-4232-4ba5-b4ac-d6d2c2faceb8",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:ddb6dc62-cbdd-4c10-9ee7-c7bae250e0f3"
- },
- "onsetDateTime": "2016-04-14T18:09:51-04:00",
- "abatementDateTime": "2016-04-21T18:09:51-04:00",
- "recordedDate": "2016-04-14T18:09:51-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:3a333d38-6b8c-41be-9fa6-ef2e1dffdbf7",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "3a333d38-6b8c-41be-9fa6-ef2e1dffdbf7",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "1043400",
- "display": "Acetaminophen 21.7 MG/ML / Dextromethorphan Hydrobromide 1 MG/ML / doxylamine succinate 0.417 MG/ML Oral Solution"
- }
- ],
- "text": "Acetaminophen 21.7 MG/ML / Dextromethorphan Hydrobromide 1 MG/ML / doxylamine succinate 0.417 MG/ML Oral Solution"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:ddb6dc62-cbdd-4c10-9ee7-c7bae250e0f3"
- },
- "authoredOn": "2016-04-14T18:09:51-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:f4c57f08-4232-4ba5-b4ac-d6d2c2faceb8"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:d62e5278-e3de-436a-b90e-3f5206c8ad8c",
- "resource": {
- "resourceType": "Claim",
- "id": "d62e5278-e3de-436a-b90e-3f5206c8ad8c",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-04-14T18:09:51-04:00",
- "end": "2016-04-14T18:24:51-04:00"
- },
- "created": "2016-04-14T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:3a333d38-6b8c-41be-9fa6-ef2e1dffdbf7"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ddb6dc62-cbdd-4c10-9ee7-c7bae250e0f3"
- }
- ]
- }
- ],
- "total": {
- "value": 8.24,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:083d7e1c-f897-4e20-bb6e-b96aa1daf2c7",
- "resource": {
- "resourceType": "CareTeam",
- "id": "083d7e1c-f897-4e20-bb6e-b96aa1daf2c7",
- "status": "inactive",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:ddb6dc62-cbdd-4c10-9ee7-c7bae250e0f3"
- },
- "period": {
- "start": "2016-04-14T18:09:51-04:00",
- "end": "2018-05-17T18:09:51-04:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:f0852a61-7da2-4576-94b8-e06db71dd0af",
- "resource": {
- "resourceType": "CarePlan",
- "id": "f0852a61-7da2-4576-94b8-e06db71dd0af",
- "text": {
- "status": "generated",
- "div": "Care Plan for Respiratory therapy.
Activities:
- Respiratory therapy
- Respiratory therapy
Care plan is meant to treat Acute bronchitis (disorder).
"
- },
- "status": "completed",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "53950000",
- "display": "Respiratory therapy"
- }
- ],
- "text": "Respiratory therapy"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:ddb6dc62-cbdd-4c10-9ee7-c7bae250e0f3"
- },
- "period": {
- "start": "2016-04-14T18:09:51-04:00",
- "end": "2018-05-17T18:09:51-04:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:083d7e1c-f897-4e20-bb6e-b96aa1daf2c7"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:f4c57f08-4232-4ba5-b4ac-d6d2c2faceb8"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "304510005",
- "display": "Recommendation to avoid exercise"
- }
- ],
- "text": "Recommendation to avoid exercise"
- },
- "status": "completed",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "371605008",
- "display": "Deep breathing and coughing exercises"
- }
- ],
- "text": "Deep breathing and coughing exercises"
- },
- "status": "completed",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:7865f427-7efa-4b2e-b6db-86fa8c7f0c8b",
- "resource": {
- "resourceType": "Claim",
- "id": "7865f427-7efa-4b2e-b6db-86fa8c7f0c8b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-04-14T18:09:51-04:00",
- "end": "2016-04-14T18:24:51-04:00"
- },
- "created": "2016-04-14T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:f4c57f08-4232-4ba5-b4ac-d6d2c2faceb8"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ddb6dc62-cbdd-4c10-9ee7-c7bae250e0f3"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:89b1ae55-9d6e-412c-9139-61a0c3716ba5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "89b1ae55-9d6e-412c-9139-61a0c3716ba5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "7865f427-7efa-4b2e-b6db-86fa8c7f0c8b"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-04-14T18:24:51-04:00",
- "end": "2017-04-14T18:24:51-04:00"
- },
- "created": "2016-04-14T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:7865f427-7efa-4b2e-b6db-86fa8c7f0c8b"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:f4c57f08-4232-4ba5-b4ac-d6d2c2faceb8"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2016-04-14T18:09:51-04:00",
- "end": "2016-04-14T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ddb6dc62-cbdd-4c10-9ee7-c7bae250e0f3"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2016-04-14T18:09:51-04:00",
- "end": "2016-04-14T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:7116c200-6663-3503-8314-1ee16845e5d3",
- "resource": {
- "resourceType": "Organization",
- "id": "7116c200-6663-3503-8314-1ee16845e5d3",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "7116c200-6663-3503-8314-1ee16845e5d3"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "SAINTS WALK-IN MEDICAL CENTER - URGENT CARE AND OCCUPATIONAL HEALTH",
- "telecom": [
- {
- "system": "phone",
- "value": "978-458-6868"
- }
- ],
- "address": [
- {
- "line": [
- "85 PARKHURST ROAD"
- ],
- "city": "CHELMSFORD",
- "state": "MA",
- "postalCode": "1824",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-000000016c60",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-000000016c60",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "93280"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Jakubowski832",
- "given": [
- "Isiah14"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Isiah14.Jakubowski832@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "85 PARKHURST ROAD"
- ],
- "city": "CHELMSFORD",
- "state": "MA",
- "postalCode": "1824",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:f8013560-1305-4aec-be80-d4995c46bd8d",
- "resource": {
- "resourceType": "Encounter",
- "id": "f8013560-1305-4aec-be80-d4995c46bd8d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c60",
- "display": "Dr. Isiah14 Jakubowski832"
- }
- }
- ],
- "period": {
- "start": "2016-04-21T18:09:51-04:00",
- "end": "2016-04-21T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:7116c200-6663-3503-8314-1ee16845e5d3",
- "display": "SAINTS WALK-IN MEDICAL CENTER - URGENT CARE AND OCCUPATIONAL HEALTH"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:5c83ab1d-3104-4de1-bd00-0b4607f041ea",
- "resource": {
- "resourceType": "Immunization",
- "id": "5c83ab1d-3104-4de1-bd00-0b4607f041ea",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:f8013560-1305-4aec-be80-d4995c46bd8d"
- },
- "occurrenceDateTime": "2016-04-21T18:09:51-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:33d1150b-927e-449d-8bcb-abffaadd9cf5",
- "resource": {
- "resourceType": "Claim",
- "id": "33d1150b-927e-449d-8bcb-abffaadd9cf5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-04-21T18:09:51-04:00",
- "end": "2016-04-21T18:24:51-04:00"
- },
- "created": "2016-04-21T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:7116c200-6663-3503-8314-1ee16845e5d3",
- "display": "SAINTS WALK-IN MEDICAL CENTER - URGENT CARE AND OCCUPATIONAL HEALTH"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:5c83ab1d-3104-4de1-bd00-0b4607f041ea"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f8013560-1305-4aec-be80-d4995c46bd8d"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4f12fae6-c8a1-4963-8020-18f34b87a49b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "4f12fae6-c8a1-4963-8020-18f34b87a49b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c60"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c60"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "33d1150b-927e-449d-8bcb-abffaadd9cf5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-04-21T18:24:51-04:00",
- "end": "2017-04-21T18:24:51-04:00"
- },
- "created": "2016-04-21T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c60"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:33d1150b-927e-449d-8bcb-abffaadd9cf5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016c60"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-04-21T18:09:51-04:00",
- "end": "2016-04-21T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f8013560-1305-4aec-be80-d4995c46bd8d"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2016-04-21T18:09:51-04:00",
- "end": "2016-04-21T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a8598017-1513-4457-9390-2fa730d5d058",
- "resource": {
- "resourceType": "Encounter",
- "id": "a8598017-1513-4457-9390-2fa730d5d058",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-05-01T18:09:51-04:00",
- "end": "2016-05-01T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:de8bef96-4bf9-4013-a43d-2d481ae83297",
- "resource": {
- "resourceType": "Claim",
- "id": "de8bef96-4bf9-4013-a43d-2d481ae83297",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-05-01T18:09:51-04:00",
- "end": "2016-05-01T18:24:51-04:00"
- },
- "created": "2016-05-01T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a8598017-1513-4457-9390-2fa730d5d058"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:a7d8d310-47f0-4e48-a5ba-7a525d38fab5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "a7d8d310-47f0-4e48-a5ba-7a525d38fab5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "de8bef96-4bf9-4013-a43d-2d481ae83297"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-05-01T18:24:51-04:00",
- "end": "2017-05-01T18:24:51-04:00"
- },
- "created": "2016-05-01T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:de8bef96-4bf9-4013-a43d-2d481ae83297"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-05-01T18:09:51-04:00",
- "end": "2016-05-01T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:a8598017-1513-4457-9390-2fa730d5d058"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8a8ddbb9-45c8-47d9-a7b0-294927637c55",
- "resource": {
- "resourceType": "Encounter",
- "id": "8a8ddbb9-45c8-47d9-a7b0-294927637c55",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-05-31T18:09:51-04:00",
- "end": "2016-05-31T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:805eb239-c78a-4101-bbc0-79e5272ba4e2",
- "resource": {
- "resourceType": "Claim",
- "id": "805eb239-c78a-4101-bbc0-79e5272ba4e2",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-05-31T18:09:51-04:00",
- "end": "2016-05-31T18:24:51-04:00"
- },
- "created": "2016-05-31T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8a8ddbb9-45c8-47d9-a7b0-294927637c55"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:686afca3-6c8a-4ac2-be05-7ac7f02718ba",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "686afca3-6c8a-4ac2-be05-7ac7f02718ba",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "805eb239-c78a-4101-bbc0-79e5272ba4e2"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-05-31T18:24:51-04:00",
- "end": "2017-05-31T18:24:51-04:00"
- },
- "created": "2016-05-31T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:805eb239-c78a-4101-bbc0-79e5272ba4e2"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-05-31T18:09:51-04:00",
- "end": "2016-05-31T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8a8ddbb9-45c8-47d9-a7b0-294927637c55"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:1f00b3a6-86f1-47b2-b2ba-9269cd841999",
- "resource": {
- "resourceType": "Encounter",
- "id": "1f00b3a6-86f1-47b2-b2ba-9269cd841999",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-06-30T18:09:51-04:00",
- "end": "2016-06-30T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:4920be4c-a49b-4ba6-a26c-fcc79021e605",
- "resource": {
- "resourceType": "Claim",
- "id": "4920be4c-a49b-4ba6-a26c-fcc79021e605",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-06-30T18:09:51-04:00",
- "end": "2016-06-30T18:24:51-04:00"
- },
- "created": "2016-06-30T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:1f00b3a6-86f1-47b2-b2ba-9269cd841999"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:bffd7e63-abe3-495f-8b71-0a0e4301cd9d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "bffd7e63-abe3-495f-8b71-0a0e4301cd9d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "4920be4c-a49b-4ba6-a26c-fcc79021e605"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-06-30T18:24:51-04:00",
- "end": "2017-06-30T18:24:51-04:00"
- },
- "created": "2016-06-30T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:4920be4c-a49b-4ba6-a26c-fcc79021e605"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-06-30T18:09:51-04:00",
- "end": "2016-06-30T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:1f00b3a6-86f1-47b2-b2ba-9269cd841999"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f",
- "resource": {
- "resourceType": "Encounter",
- "id": "6472106c-af58-476e-98ef-f3575a5f678f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "resource": {
- "resourceType": "Condition",
- "id": "3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "onsetDateTime": "2016-07-14T18:09:51-04:00",
- "abatementDateTime": "2017-02-16T17:09:51-05:00",
- "recordedDate": "2016-07-14T18:09:51-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:9ef60e45-8571-4d7a-8696-2285fa7f5709",
- "resource": {
- "resourceType": "Procedure",
- "id": "9ef60e45-8571-4d7a-8696-2285fa7f5709",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:4805efa4-dff0-4e68-8568-375f315a7f97",
- "resource": {
- "resourceType": "Procedure",
- "id": "4805efa4-dff0-4e68-8568-375f315a7f97",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:f42988ba-7d3a-4cca-88c3-f5873bd8b60c",
- "resource": {
- "resourceType": "Procedure",
- "id": "f42988ba-7d3a-4cca-88c3-f5873bd8b60c",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:71337c6b-af65-44d2-9e11-9deb4e23e116",
- "resource": {
- "resourceType": "Procedure",
- "id": "71337c6b-af65-44d2-9e11-9deb4e23e116",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:c2eb36a8-d785-4176-8289-4724d9d9a2c9",
- "resource": {
- "resourceType": "Procedure",
- "id": "c2eb36a8-d785-4176-8289-4724d9d9a2c9",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "44608003",
- "display": "Blood typing, RH typing"
- }
- ],
- "text": "Blood typing, RH typing"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:1bd5a52f-9547-4365-92d5-e659625961c3",
- "resource": {
- "resourceType": "Procedure",
- "id": "1bd5a52f-9547-4365-92d5-e659625961c3",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:840ff626-3c82-4fc5-8c14-4cf6f211cbf7",
- "resource": {
- "resourceType": "Procedure",
- "id": "840ff626-3c82-4fc5-8c14-4cf6f211cbf7",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "47758006",
- "display": "Hepatitis B Surface Antigen Measurement"
- }
- ],
- "text": "Hepatitis B Surface Antigen Measurement"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:f791ef5f-1aa9-465c-8c68-49200e14586f",
- "resource": {
- "resourceType": "Procedure",
- "id": "f791ef5f-1aa9-465c-8c68-49200e14586f",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "31676001",
- "display": "Human immunodeficiency virus antigen test"
- }
- ],
- "text": "Human immunodeficiency virus antigen test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d4805121-5b45-4284-b64b-0f1620cd7b3e",
- "resource": {
- "resourceType": "Procedure",
- "id": "d4805121-5b45-4284-b64b-0f1620cd7b3e",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "310861008",
- "display": "Chlamydia antigen test"
- }
- ],
- "text": "Chlamydia antigen test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:4ddd067d-a544-4ef2-b0e1-595dd3296f3b",
- "resource": {
- "resourceType": "Procedure",
- "id": "4ddd067d-a544-4ef2-b0e1-595dd3296f3b",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "165829005",
- "display": "Gonorrhea infection test"
- }
- ],
- "text": "Gonorrhea infection test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:7b14c9b3-77f2-43b7-a03f-03e81180b333",
- "resource": {
- "resourceType": "Procedure",
- "id": "7b14c9b3-77f2-43b7-a03f-03e81180b333",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269828009",
- "display": "Syphilis infection test"
- }
- ],
- "text": "Syphilis infection test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:5788fc6f-54a7-4352-a7ce-160cf69ed392",
- "resource": {
- "resourceType": "Procedure",
- "id": "5788fc6f-54a7-4352-a7ce-160cf69ed392",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117010004",
- "display": "Urine culture"
- }
- ],
- "text": "Urine culture"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:431781ed-ba9b-4bf4-8daf-066e30b0b5f5",
- "resource": {
- "resourceType": "Procedure",
- "id": "431781ed-ba9b-4bf4-8daf-066e30b0b5f5",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "90226004",
- "display": "Cytopathology procedure, preparation of smear, genital source"
- }
- ],
- "text": "Cytopathology procedure, preparation of smear, genital source"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:fbf67105-ddb0-40fc-830e-2170cde8d5d3",
- "resource": {
- "resourceType": "Procedure",
- "id": "fbf67105-ddb0-40fc-830e-2170cde8d5d3",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "395123002",
- "display": "Urine screening test for diabetes"
- }
- ],
- "text": "Urine screening test for diabetes"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d43df0ef-4d48-493b-a86b-fdccdf024564",
- "resource": {
- "resourceType": "Procedure",
- "id": "d43df0ef-4d48-493b-a86b-fdccdf024564",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104375008",
- "display": "Hepatitis C antibody test"
- }
- ],
- "text": "Hepatitis C antibody test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:a4d57e3d-34dd-422f-bf96-60445fc82c16",
- "resource": {
- "resourceType": "Procedure",
- "id": "a4d57e3d-34dd-422f-bf96-60445fc82c16",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169690007",
- "display": "Rubella screening"
- }
- ],
- "text": "Rubella screening"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:52c91aaf-6c7e-462f-8884-a324a3625df6",
- "resource": {
- "resourceType": "Procedure",
- "id": "52c91aaf-6c7e-462f-8884-a324a3625df6",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104326007",
- "display": "Measurement of Varicella-zoster virus antibody"
- }
- ],
- "text": "Measurement of Varicella-zoster virus antibody"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:32ca0d7f-3dff-4c07-a757-b49844e979f3",
- "resource": {
- "resourceType": "Procedure",
- "id": "32ca0d7f-3dff-4c07-a757-b49844e979f3",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "28163009",
- "display": "Skin test for tuberculosis"
- }
- ],
- "text": "Skin test for tuberculosis"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:839775f8-cc59-4255-803d-700232cf2532",
- "resource": {
- "resourceType": "Procedure",
- "id": "839775f8-cc59-4255-803d-700232cf2532",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "167271000",
- "display": "Urine protein test"
- }
- ],
- "text": "Urine protein test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:7b3ce37a-6236-4b75-879c-2b94b13fb9b4",
- "resource": {
- "resourceType": "Procedure",
- "id": "7b3ce37a-6236-4b75-879c-2b94b13fb9b4",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination of mother"
- }
- ],
- "text": "Physical examination of mother"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "performedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:56796706-2d31-43bd-8fae-92d9cbdd686d",
- "resource": {
- "resourceType": "CareTeam",
- "id": "56796706-2d31-43bd-8fae-92d9cbdd686d",
- "status": "inactive",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "period": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2017-02-16T17:09:51-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:00b0d706-d9a7-4e8d-816b-19945ff206f7",
- "resource": {
- "resourceType": "CarePlan",
- "id": "00b0d706-d9a7-4e8d-816b-19945ff206f7",
- "text": {
- "status": "generated",
- "div": "Care Plan for Routine antenatal care.
Activities:
- Routine antenatal care
- Routine antenatal care
- Routine antenatal care
Care plan is meant to treat Normal pregnancy.
"
- },
- "status": "completed",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "134435003",
- "display": "Routine antenatal care"
- }
- ],
- "text": "Routine antenatal care"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- },
- "period": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2017-02-16T17:09:51-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:56796706-2d31-43bd-8fae-92d9cbdd686d"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "135892000",
- "display": "Antenatal education"
- }
- ],
- "text": "Antenatal education"
- },
- "status": "completed",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "713076009",
- "display": "Antenatal risk assessment"
- }
- ],
- "text": "Antenatal risk assessment"
- },
- "status": "completed",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "312404004",
- "display": "Antenatal blood tests"
- }
- ],
- "text": "Antenatal blood tests"
- },
- "status": "completed",
- "location": {
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:5aaac81a-a2e7-4604-b24f-44550779ad8e",
- "resource": {
- "resourceType": "Claim",
- "id": "5aaac81a-a2e7-4604-b24f-44550779ad8e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "created": "2016-07-14T23:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:9ef60e45-8571-4d7a-8696-2285fa7f5709"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:4805efa4-dff0-4e68-8568-375f315a7f97"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:f42988ba-7d3a-4cca-88c3-f5873bd8b60c"
- }
- },
- {
- "sequence": 4,
- "procedureReference": {
- "reference": "urn:uuid:71337c6b-af65-44d2-9e11-9deb4e23e116"
- }
- },
- {
- "sequence": 5,
- "procedureReference": {
- "reference": "urn:uuid:c2eb36a8-d785-4176-8289-4724d9d9a2c9"
- }
- },
- {
- "sequence": 6,
- "procedureReference": {
- "reference": "urn:uuid:1bd5a52f-9547-4365-92d5-e659625961c3"
- }
- },
- {
- "sequence": 7,
- "procedureReference": {
- "reference": "urn:uuid:840ff626-3c82-4fc5-8c14-4cf6f211cbf7"
- }
- },
- {
- "sequence": 8,
- "procedureReference": {
- "reference": "urn:uuid:f791ef5f-1aa9-465c-8c68-49200e14586f"
- }
- },
- {
- "sequence": 9,
- "procedureReference": {
- "reference": "urn:uuid:d4805121-5b45-4284-b64b-0f1620cd7b3e"
- }
- },
- {
- "sequence": 10,
- "procedureReference": {
- "reference": "urn:uuid:4ddd067d-a544-4ef2-b0e1-595dd3296f3b"
- }
- },
- {
- "sequence": 11,
- "procedureReference": {
- "reference": "urn:uuid:7b14c9b3-77f2-43b7-a03f-03e81180b333"
- }
- },
- {
- "sequence": 12,
- "procedureReference": {
- "reference": "urn:uuid:5788fc6f-54a7-4352-a7ce-160cf69ed392"
- }
- },
- {
- "sequence": 13,
- "procedureReference": {
- "reference": "urn:uuid:431781ed-ba9b-4bf4-8daf-066e30b0b5f5"
- }
- },
- {
- "sequence": 14,
- "procedureReference": {
- "reference": "urn:uuid:fbf67105-ddb0-40fc-830e-2170cde8d5d3"
- }
- },
- {
- "sequence": 15,
- "procedureReference": {
- "reference": "urn:uuid:d43df0ef-4d48-493b-a86b-fdccdf024564"
- }
- },
- {
- "sequence": 16,
- "procedureReference": {
- "reference": "urn:uuid:a4d57e3d-34dd-422f-bf96-60445fc82c16"
- }
- },
- {
- "sequence": 17,
- "procedureReference": {
- "reference": "urn:uuid:52c91aaf-6c7e-462f-8884-a324a3625df6"
- }
- },
- {
- "sequence": 18,
- "procedureReference": {
- "reference": "urn:uuid:32ca0d7f-3dff-4c07-a757-b49844e979f3"
- }
- },
- {
- "sequence": 19,
- "procedureReference": {
- "reference": "urn:uuid:839775f8-cc59-4255-803d-700232cf2532"
- }
- },
- {
- "sequence": 20,
- "procedureReference": {
- "reference": "urn:uuid:7b3ce37a-6236-4b75-879c-2b94b13fb9b4"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "net": {
- "value": 7475.83,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "net": {
- "value": 10428.09,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 7260.98,
- "currency": "USD"
- }
- },
- {
- "sequence": 6,
- "procedureSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 4661.56,
- "currency": "USD"
- }
- },
- {
- "sequence": 7,
- "procedureSequence": [
- 5
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "44608003",
- "display": "Blood typing, RH typing"
- }
- ],
- "text": "Blood typing, RH typing"
- },
- "net": {
- "value": 2232.68,
- "currency": "USD"
- }
- },
- {
- "sequence": 8,
- "procedureSequence": [
- 6
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "net": {
- "value": 2835.36,
- "currency": "USD"
- }
- },
- {
- "sequence": 9,
- "procedureSequence": [
- 7
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "47758006",
- "display": "Hepatitis B Surface Antigen Measurement"
- }
- ],
- "text": "Hepatitis B Surface Antigen Measurement"
- },
- "net": {
- "value": 2245.85,
- "currency": "USD"
- }
- },
- {
- "sequence": 10,
- "procedureSequence": [
- 8
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "31676001",
- "display": "Human immunodeficiency virus antigen test"
- }
- ],
- "text": "Human immunodeficiency virus antigen test"
- },
- "net": {
- "value": 3247.76,
- "currency": "USD"
- }
- },
- {
- "sequence": 11,
- "procedureSequence": [
- 9
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "310861008",
- "display": "Chlamydia antigen test"
- }
- ],
- "text": "Chlamydia antigen test"
- },
- "net": {
- "value": 1972.77,
- "currency": "USD"
- }
- },
- {
- "sequence": 12,
- "procedureSequence": [
- 10
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "165829005",
- "display": "Gonorrhea infection test"
- }
- ],
- "text": "Gonorrhea infection test"
- },
- "net": {
- "value": 3151.47,
- "currency": "USD"
- }
- },
- {
- "sequence": 13,
- "procedureSequence": [
- 11
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269828009",
- "display": "Syphilis infection test"
- }
- ],
- "text": "Syphilis infection test"
- },
- "net": {
- "value": 1556.56,
- "currency": "USD"
- }
- },
- {
- "sequence": 14,
- "procedureSequence": [
- 12
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117010004",
- "display": "Urine culture"
- }
- ],
- "text": "Urine culture"
- },
- "net": {
- "value": 2046.23,
- "currency": "USD"
- }
- },
- {
- "sequence": 15,
- "procedureSequence": [
- 13
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "90226004",
- "display": "Cytopathology procedure, preparation of smear, genital source"
- }
- ],
- "text": "Cytopathology procedure, preparation of smear, genital source"
- },
- "net": {
- "value": 1895.10,
- "currency": "USD"
- }
- },
- {
- "sequence": 16,
- "procedureSequence": [
- 14
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "395123002",
- "display": "Urine screening test for diabetes"
- }
- ],
- "text": "Urine screening test for diabetes"
- },
- "net": {
- "value": 1714.60,
- "currency": "USD"
- }
- },
- {
- "sequence": 17,
- "procedureSequence": [
- 15
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104375008",
- "display": "Hepatitis C antibody test"
- }
- ],
- "text": "Hepatitis C antibody test"
- },
- "net": {
- "value": 2390.06,
- "currency": "USD"
- }
- },
- {
- "sequence": 18,
- "procedureSequence": [
- 16
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169690007",
- "display": "Rubella screening"
- }
- ],
- "text": "Rubella screening"
- },
- "net": {
- "value": 2238.56,
- "currency": "USD"
- }
- },
- {
- "sequence": 19,
- "procedureSequence": [
- 17
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104326007",
- "display": "Measurement of Varicella-zoster virus antibody"
- }
- ],
- "text": "Measurement of Varicella-zoster virus antibody"
- },
- "net": {
- "value": 3527.43,
- "currency": "USD"
- }
- },
- {
- "sequence": 20,
- "procedureSequence": [
- 18
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "28163009",
- "display": "Skin test for tuberculosis"
- }
- ],
- "text": "Skin test for tuberculosis"
- },
- "net": {
- "value": 2273.37,
- "currency": "USD"
- }
- },
- {
- "sequence": 21,
- "procedureSequence": [
- 19
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "167271000",
- "display": "Urine protein test"
- }
- ],
- "text": "Urine protein test"
- },
- "net": {
- "value": 2781.18,
- "currency": "USD"
- }
- },
- {
- "sequence": 22,
- "procedureSequence": [
- 20
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination of mother"
- }
- ],
- "text": "Physical examination of mother"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:699b7d39-6a4e-472d-a16f-a2e7100f131f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "699b7d39-6a4e-472d-a16f-a2e7100f131f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5aaac81a-a2e7-4604-b24f-44550779ad8e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-07-14T23:24:51-04:00",
- "end": "2017-07-14T23:24:51-04:00"
- },
- "created": "2016-07-14T23:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5aaac81a-a2e7-4604-b24f-44550779ad8e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:6472106c-af58-476e-98ef-f3575a5f678f"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 7475.83,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1495.1660000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 5980.664000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7475.83,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7475.83,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 10428.09,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2085.618,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 8342.472,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 10428.09,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 10428.09,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 7260.98,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1452.196,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 5808.784,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7260.98,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7260.98,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 6,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 4661.56,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 932.3120000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3729.2480000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4661.56,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4661.56,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 7,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "44608003",
- "display": "Blood typing, RH typing"
- }
- ],
- "text": "Blood typing, RH typing"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2232.68,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 446.536,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1786.144,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2232.68,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2232.68,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 8,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2835.36,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 567.072,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2268.288,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2835.36,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2835.36,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 9,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "47758006",
- "display": "Hepatitis B Surface Antigen Measurement"
- }
- ],
- "text": "Hepatitis B Surface Antigen Measurement"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2245.85,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 449.17,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1796.68,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2245.85,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2245.85,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 10,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "31676001",
- "display": "Human immunodeficiency virus antigen test"
- }
- ],
- "text": "Human immunodeficiency virus antigen test"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3247.76,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 649.5520000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2598.2080000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3247.76,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3247.76,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 11,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "310861008",
- "display": "Chlamydia antigen test"
- }
- ],
- "text": "Chlamydia antigen test"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1972.77,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 394.55400000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1578.2160000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1972.77,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1972.77,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 12,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "165829005",
- "display": "Gonorrhea infection test"
- }
- ],
- "text": "Gonorrhea infection test"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3151.47,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 630.294,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2521.176,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3151.47,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3151.47,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 13,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269828009",
- "display": "Syphilis infection test"
- }
- ],
- "text": "Syphilis infection test"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1556.56,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 311.312,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1245.248,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1556.56,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1556.56,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 14,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "117010004",
- "display": "Urine culture"
- }
- ],
- "text": "Urine culture"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2046.23,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 409.24600000000004,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1636.9840000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2046.23,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2046.23,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 15,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "90226004",
- "display": "Cytopathology procedure, preparation of smear, genital source"
- }
- ],
- "text": "Cytopathology procedure, preparation of smear, genital source"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1895.10,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 379.02,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1516.08,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1895.10,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1895.10,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 16,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "395123002",
- "display": "Urine screening test for diabetes"
- }
- ],
- "text": "Urine screening test for diabetes"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1714.60,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 342.92,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1371.68,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1714.60,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1714.60,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 17,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104375008",
- "display": "Hepatitis C antibody test"
- }
- ],
- "text": "Hepatitis C antibody test"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2390.06,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 478.012,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1912.048,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2390.06,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2390.06,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 18,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169690007",
- "display": "Rubella screening"
- }
- ],
- "text": "Rubella screening"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2238.56,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 447.712,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1790.848,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2238.56,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2238.56,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 19,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104326007",
- "display": "Measurement of Varicella-zoster virus antibody"
- }
- ],
- "text": "Measurement of Varicella-zoster virus antibody"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3527.43,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 705.486,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2821.944,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3527.43,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3527.43,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 20,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "28163009",
- "display": "Skin test for tuberculosis"
- }
- ],
- "text": "Skin test for tuberculosis"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2273.37,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 454.674,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1818.696,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2273.37,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2273.37,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 21,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "167271000",
- "display": "Urine protein test"
- }
- ],
- "text": "Urine protein test"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2781.18,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 556.236,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2224.944,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2781.18,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2781.18,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 22,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination of mother"
- }
- ],
- "text": "Physical examination of mother"
- },
- "servicedPeriod": {
- "start": "2016-07-14T18:09:51-04:00",
- "end": "2016-07-14T23:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 53161.672,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f27e5696-3f29-46de-a8dc-13a692dfabe3",
- "resource": {
- "resourceType": "Encounter",
- "id": "f27e5696-3f29-46de-a8dc-13a692dfabe3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-07-30T18:09:51-04:00",
- "end": "2016-07-30T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:fa338932-fc4a-42c8-aa1c-86926de8818c",
- "resource": {
- "resourceType": "Claim",
- "id": "fa338932-fc4a-42c8-aa1c-86926de8818c",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-07-30T18:09:51-04:00",
- "end": "2016-07-30T18:24:51-04:00"
- },
- "created": "2016-07-30T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f27e5696-3f29-46de-a8dc-13a692dfabe3"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9e524063-3a13-431e-9060-fb83e2af6768",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9e524063-3a13-431e-9060-fb83e2af6768",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "fa338932-fc4a-42c8-aa1c-86926de8818c"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-07-30T18:24:51-04:00",
- "end": "2017-07-30T18:24:51-04:00"
- },
- "created": "2016-07-30T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:fa338932-fc4a-42c8-aa1c-86926de8818c"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-07-30T18:09:51-04:00",
- "end": "2016-07-30T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f27e5696-3f29-46de-a8dc-13a692dfabe3"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a1b052e5-92a0-47dd-a936-98ef493647da",
- "resource": {
- "resourceType": "Encounter",
- "id": "a1b052e5-92a0-47dd-a936-98ef493647da",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-08-11T18:09:51-04:00",
- "end": "2016-08-11T19:09:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d6b313d7-9e92-4b5e-bdaf-544dacf34394",
- "resource": {
- "resourceType": "Procedure",
- "id": "d6b313d7-9e92-4b5e-bdaf-544dacf34394",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:a1b052e5-92a0-47dd-a936-98ef493647da"
- },
- "performedPeriod": {
- "start": "2016-08-11T18:09:51-04:00",
- "end": "2016-08-11T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:017367ad-9ca3-4af7-b2c5-baf516b13358",
- "resource": {
- "resourceType": "Procedure",
- "id": "017367ad-9ca3-4af7-b2c5-baf516b13358",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:a1b052e5-92a0-47dd-a936-98ef493647da"
- },
- "performedPeriod": {
- "start": "2016-08-11T18:09:51-04:00",
- "end": "2016-08-11T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:b6b05a7a-1333-46f4-8c90-5d5f5225656d",
- "resource": {
- "resourceType": "Procedure",
- "id": "b6b05a7a-1333-46f4-8c90-5d5f5225656d",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "443529005",
- "display": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- }
- ],
- "text": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:a1b052e5-92a0-47dd-a936-98ef493647da"
- },
- "performedPeriod": {
- "start": "2016-08-11T18:09:51-04:00",
- "end": "2016-08-11T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:821f7cfb-72dc-482b-a28e-902fed9bcb22",
- "resource": {
- "resourceType": "Claim",
- "id": "821f7cfb-72dc-482b-a28e-902fed9bcb22",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-08-11T18:09:51-04:00",
- "end": "2016-08-11T19:09:51-04:00"
- },
- "created": "2016-08-11T19:09:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:d6b313d7-9e92-4b5e-bdaf-544dacf34394"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:017367ad-9ca3-4af7-b2c5-baf516b13358"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:b6b05a7a-1333-46f4-8c90-5d5f5225656d"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a1b052e5-92a0-47dd-a936-98ef493647da"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 8588.17,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 9006.37,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "443529005",
- "display": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- }
- ],
- "text": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- },
- "net": {
- "value": 2410.57,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3ca654b3-6583-4b5c-aca4-6bb2e54c3039",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3ca654b3-6583-4b5c-aca4-6bb2e54c3039",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "821f7cfb-72dc-482b-a28e-902fed9bcb22"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-08-11T19:09:51-04:00",
- "end": "2017-08-11T19:09:51-04:00"
- },
- "created": "2016-08-11T19:09:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:821f7cfb-72dc-482b-a28e-902fed9bcb22"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2016-08-11T18:09:51-04:00",
- "end": "2016-08-11T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:a1b052e5-92a0-47dd-a936-98ef493647da"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2016-08-11T18:09:51-04:00",
- "end": "2016-08-11T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 8588.17,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1717.634,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 6870.536,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 8588.17,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 8588.17,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2016-08-11T18:09:51-04:00",
- "end": "2016-08-11T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 9006.37,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1801.2740000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 7205.096000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9006.37,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9006.37,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "443529005",
- "display": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- }
- ],
- "text": "Screening for chromosomal aneuploidy in prenatal amniotic fluid"
- },
- "servicedPeriod": {
- "start": "2016-08-11T18:09:51-04:00",
- "end": "2016-08-11T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2410.57,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 482.11400000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1928.4560000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2410.57,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2410.57,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 16004.088000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:cf17c287-370b-4599-abfd-5945d368850e",
- "resource": {
- "resourceType": "Encounter",
- "id": "cf17c287-370b-4599-abfd-5945d368850e",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-08-29T18:09:51-04:00",
- "end": "2016-08-29T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:7080e4d9-348e-48ea-b060-21a66dc46af9",
- "resource": {
- "resourceType": "Claim",
- "id": "7080e4d9-348e-48ea-b060-21a66dc46af9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-08-29T18:09:51-04:00",
- "end": "2016-08-29T18:24:51-04:00"
- },
- "created": "2016-08-29T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:cf17c287-370b-4599-abfd-5945d368850e"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:2238e8e3-2ced-47dc-81b1-c50f96adaa8f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "2238e8e3-2ced-47dc-81b1-c50f96adaa8f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "7080e4d9-348e-48ea-b060-21a66dc46af9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-08-29T18:24:51-04:00",
- "end": "2017-08-29T18:24:51-04:00"
- },
- "created": "2016-08-29T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:7080e4d9-348e-48ea-b060-21a66dc46af9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-08-29T18:09:51-04:00",
- "end": "2016-08-29T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:cf17c287-370b-4599-abfd-5945d368850e"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:e31bc800-7992-484d-8fe0-f3b436ae82bc",
- "resource": {
- "resourceType": "Encounter",
- "id": "e31bc800-7992-484d-8fe0-f3b436ae82bc",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-09-08T18:09:51-04:00",
- "end": "2016-09-08T19:24:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:369bffe7-0fe6-46da-bbc1-92a4daa78358",
- "resource": {
- "resourceType": "Procedure",
- "id": "369bffe7-0fe6-46da-bbc1-92a4daa78358",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271442007",
- "display": "Fetal anatomy study"
- }
- ],
- "text": "Fetal anatomy study"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e31bc800-7992-484d-8fe0-f3b436ae82bc"
- },
- "performedPeriod": {
- "start": "2016-09-08T18:09:51-04:00",
- "end": "2016-09-08T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:ce5973d9-3480-4a9d-a25d-bd116fcf78b1",
- "resource": {
- "resourceType": "Procedure",
- "id": "ce5973d9-3480-4a9d-a25d-bd116fcf78b1",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "275833003",
- "display": "Alpha-fetoprotein test"
- }
- ],
- "text": "Alpha-fetoprotein test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e31bc800-7992-484d-8fe0-f3b436ae82bc"
- },
- "performedPeriod": {
- "start": "2016-09-08T18:09:51-04:00",
- "end": "2016-09-08T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:feb298f4-6a83-4e64-be0d-41ea3fdaa5fe",
- "resource": {
- "resourceType": "Procedure",
- "id": "feb298f4-6a83-4e64-be0d-41ea3fdaa5fe",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e31bc800-7992-484d-8fe0-f3b436ae82bc"
- },
- "performedPeriod": {
- "start": "2016-09-08T18:09:51-04:00",
- "end": "2016-09-08T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d4aa31ba-8b55-48c1-bbbf-7257296c6cfb",
- "resource": {
- "resourceType": "Procedure",
- "id": "d4aa31ba-8b55-48c1-bbbf-7257296c6cfb",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:e31bc800-7992-484d-8fe0-f3b436ae82bc"
- },
- "performedPeriod": {
- "start": "2016-09-08T18:09:51-04:00",
- "end": "2016-09-08T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:91d2da71-90ae-4a56-a2b4-7057fa654cad",
- "resource": {
- "resourceType": "Claim",
- "id": "91d2da71-90ae-4a56-a2b4-7057fa654cad",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-09-08T18:09:51-04:00",
- "end": "2016-09-08T19:24:51-04:00"
- },
- "created": "2016-09-08T19:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:369bffe7-0fe6-46da-bbc1-92a4daa78358"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:ce5973d9-3480-4a9d-a25d-bd116fcf78b1"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:feb298f4-6a83-4e64-be0d-41ea3fdaa5fe"
- }
- },
- {
- "sequence": 4,
- "procedureReference": {
- "reference": "urn:uuid:d4aa31ba-8b55-48c1-bbbf-7257296c6cfb"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e31bc800-7992-484d-8fe0-f3b436ae82bc"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271442007",
- "display": "Fetal anatomy study"
- }
- ],
- "text": "Fetal anatomy study"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "275833003",
- "display": "Alpha-fetoprotein test"
- }
- ],
- "text": "Alpha-fetoprotein test"
- },
- "net": {
- "value": 1518.69,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 4258.70,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "procedureSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 5629.76,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9df5aefb-6945-43f0-af3b-f09ec4af76b0",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9df5aefb-6945-43f0-af3b-f09ec4af76b0",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "91d2da71-90ae-4a56-a2b4-7057fa654cad"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-09-08T19:24:51-04:00",
- "end": "2017-09-08T19:24:51-04:00"
- },
- "created": "2016-09-08T19:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:91d2da71-90ae-4a56-a2b4-7057fa654cad"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2016-09-08T18:09:51-04:00",
- "end": "2016-09-08T19:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:e31bc800-7992-484d-8fe0-f3b436ae82bc"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271442007",
- "display": "Fetal anatomy study"
- }
- ],
- "text": "Fetal anatomy study"
- },
- "servicedPeriod": {
- "start": "2016-09-08T18:09:51-04:00",
- "end": "2016-09-08T19:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "275833003",
- "display": "Alpha-fetoprotein test"
- }
- ],
- "text": "Alpha-fetoprotein test"
- },
- "servicedPeriod": {
- "start": "2016-09-08T18:09:51-04:00",
- "end": "2016-09-08T19:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1518.69,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 303.738,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1214.952,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1518.69,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1518.69,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2016-09-08T18:09:51-04:00",
- "end": "2016-09-08T19:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 4258.70,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 851.74,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3406.96,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4258.70,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 4258.70,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2016-09-08T18:09:51-04:00",
- "end": "2016-09-08T19:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 5629.76,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1125.952,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4503.808,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5629.76,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5629.76,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 9539.04,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:5d2bcf18-11d4-47f5-8adb-1ad4e1292a2d",
- "resource": {
- "resourceType": "Encounter",
- "id": "5d2bcf18-11d4-47f5-8adb-1ad4e1292a2d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-09-28T18:09:51-04:00",
- "end": "2016-09-28T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:fbbbe93d-827f-4a04-bbf7-47dd427fd286",
- "resource": {
- "resourceType": "Claim",
- "id": "fbbbe93d-827f-4a04-bbf7-47dd427fd286",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-09-28T18:09:51-04:00",
- "end": "2016-09-28T18:24:51-04:00"
- },
- "created": "2016-09-28T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:5d2bcf18-11d4-47f5-8adb-1ad4e1292a2d"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:de9ee081-9946-4a5a-97dc-df8ee41492a6",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "de9ee081-9946-4a5a-97dc-df8ee41492a6",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "fbbbe93d-827f-4a04-bbf7-47dd427fd286"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-09-28T18:24:51-04:00",
- "end": "2017-09-28T18:24:51-04:00"
- },
- "created": "2016-09-28T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:fbbbe93d-827f-4a04-bbf7-47dd427fd286"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-09-28T18:09:51-04:00",
- "end": "2016-09-28T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:5d2bcf18-11d4-47f5-8adb-1ad4e1292a2d"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:0dd052b6-69af-4d70-8184-36785b48148c",
- "resource": {
- "resourceType": "Encounter",
- "id": "0dd052b6-69af-4d70-8184-36785b48148c",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-10-06T18:09:51-04:00",
- "end": "2016-10-06T18:54:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:67ef11e6-ac46-4cca-bfd8-a25d9a461e71",
- "resource": {
- "resourceType": "Procedure",
- "id": "67ef11e6-ac46-4cca-bfd8-a25d9a461e71",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0dd052b6-69af-4d70-8184-36785b48148c"
- },
- "performedPeriod": {
- "start": "2016-10-06T18:09:51-04:00",
- "end": "2016-10-06T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:a42d8233-995f-429c-b2ac-cc1afcf8d38a",
- "resource": {
- "resourceType": "Procedure",
- "id": "a42d8233-995f-429c-b2ac-cc1afcf8d38a",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0dd052b6-69af-4d70-8184-36785b48148c"
- },
- "performedPeriod": {
- "start": "2016-10-06T18:09:51-04:00",
- "end": "2016-10-06T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:6e8b0e94-55de-406b-853f-ecf8823d826a",
- "resource": {
- "resourceType": "Claim",
- "id": "6e8b0e94-55de-406b-853f-ecf8823d826a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-10-06T18:09:51-04:00",
- "end": "2016-10-06T18:54:51-04:00"
- },
- "created": "2016-10-06T18:54:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:67ef11e6-ac46-4cca-bfd8-a25d9a461e71"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:a42d8233-995f-429c-b2ac-cc1afcf8d38a"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:0dd052b6-69af-4d70-8184-36785b48148c"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 5068.74,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 7222.12,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:c87cbe4f-e607-48a1-a52f-147311c401e8",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "c87cbe4f-e607-48a1-a52f-147311c401e8",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "6e8b0e94-55de-406b-853f-ecf8823d826a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-10-06T18:54:51-04:00",
- "end": "2017-10-06T18:54:51-04:00"
- },
- "created": "2016-10-06T18:54:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:6e8b0e94-55de-406b-853f-ecf8823d826a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2016-10-06T18:09:51-04:00",
- "end": "2016-10-06T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:0dd052b6-69af-4d70-8184-36785b48148c"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2016-10-06T18:09:51-04:00",
- "end": "2016-10-06T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 5068.74,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1013.748,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4054.992,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5068.74,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5068.74,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2016-10-06T18:09:51-04:00",
- "end": "2016-10-06T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 7222.12,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1444.424,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 5777.696,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7222.12,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7222.12,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 9832.688,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:bfc21742-a7c0-4fbc-9573-0e7fb968eb6a",
- "resource": {
- "resourceType": "Encounter",
- "id": "bfc21742-a7c0-4fbc-9573-0e7fb968eb6a",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-10-28T18:09:51-04:00",
- "end": "2016-10-28T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:35c205fb-e852-4270-9157-66dc98de9e32",
- "resource": {
- "resourceType": "Claim",
- "id": "35c205fb-e852-4270-9157-66dc98de9e32",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-10-28T18:09:51-04:00",
- "end": "2016-10-28T18:24:51-04:00"
- },
- "created": "2016-10-28T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:bfc21742-a7c0-4fbc-9573-0e7fb968eb6a"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:7a786e77-44ad-43d6-9278-2bb12c22b674",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "7a786e77-44ad-43d6-9278-2bb12c22b674",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "35c205fb-e852-4270-9157-66dc98de9e32"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-10-28T18:24:51-04:00",
- "end": "2017-10-28T18:24:51-04:00"
- },
- "created": "2016-10-28T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:35c205fb-e852-4270-9157-66dc98de9e32"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-10-28T18:09:51-04:00",
- "end": "2016-10-28T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:bfc21742-a7c0-4fbc-9573-0e7fb968eb6a"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:982152de-5c45-4ef7-9c10-0ed3df1fc75d",
- "resource": {
- "resourceType": "Encounter",
- "id": "982152de-5c45-4ef7-9c10-0ed3df1fc75d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-11-03T18:09:51-04:00",
- "end": "2016-11-03T18:54:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:389de617-881f-4dd5-a1c9-125536b8272c",
- "resource": {
- "resourceType": "Procedure",
- "id": "389de617-881f-4dd5-a1c9-125536b8272c",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:982152de-5c45-4ef7-9c10-0ed3df1fc75d"
- },
- "performedPeriod": {
- "start": "2016-11-03T18:09:51-04:00",
- "end": "2016-11-03T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d50fd046-8bb0-4f86-b9a4-3134dc08339d",
- "resource": {
- "resourceType": "Procedure",
- "id": "d50fd046-8bb0-4f86-b9a4-3134dc08339d",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:982152de-5c45-4ef7-9c10-0ed3df1fc75d"
- },
- "performedPeriod": {
- "start": "2016-11-03T18:09:51-04:00",
- "end": "2016-11-03T18:24:51-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:5adb053d-8075-448c-9606-dea8710502a4",
- "resource": {
- "resourceType": "Claim",
- "id": "5adb053d-8075-448c-9606-dea8710502a4",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-11-03T18:09:51-04:00",
- "end": "2016-11-03T18:54:51-04:00"
- },
- "created": "2016-11-03T18:54:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:389de617-881f-4dd5-a1c9-125536b8272c"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:d50fd046-8bb0-4f86-b9a4-3134dc08339d"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:982152de-5c45-4ef7-9c10-0ed3df1fc75d"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 8534.21,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 5117.29,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4a75b66b-ba92-49b2-9881-64bcbab863af",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "4a75b66b-ba92-49b2-9881-64bcbab863af",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5adb053d-8075-448c-9606-dea8710502a4"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-11-03T18:54:51-04:00",
- "end": "2017-11-03T18:54:51-04:00"
- },
- "created": "2016-11-03T18:54:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5adb053d-8075-448c-9606-dea8710502a4"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2016-11-03T18:09:51-04:00",
- "end": "2016-11-03T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:982152de-5c45-4ef7-9c10-0ed3df1fc75d"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2016-11-03T18:09:51-04:00",
- "end": "2016-11-03T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 8534.21,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1706.8419999999999,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 6827.3679999999995,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 8534.21,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 8534.21,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2016-11-03T18:09:51-04:00",
- "end": "2016-11-03T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 5117.29,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1023.4580000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4093.8320000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5117.29,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5117.29,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 10921.2,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:328c1ea9-5925-44b7-b22e-a0744792d75a",
- "resource": {
- "resourceType": "Encounter",
- "id": "328c1ea9-5925-44b7-b22e-a0744792d75a",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-11-27T17:09:51-05:00",
- "end": "2016-11-27T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:14a3728d-1a29-471a-ac51-514adf2fead6",
- "resource": {
- "resourceType": "Claim",
- "id": "14a3728d-1a29-471a-ac51-514adf2fead6",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-11-27T17:09:51-05:00",
- "end": "2016-11-27T17:24:51-05:00"
- },
- "created": "2016-11-27T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:328c1ea9-5925-44b7-b22e-a0744792d75a"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b984d30a-f6e1-423f-bf34-128a46222429",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "b984d30a-f6e1-423f-bf34-128a46222429",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "14a3728d-1a29-471a-ac51-514adf2fead6"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-11-27T17:24:51-05:00",
- "end": "2017-11-27T17:24:51-05:00"
- },
- "created": "2016-11-27T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:14a3728d-1a29-471a-ac51-514adf2fead6"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-11-27T17:09:51-05:00",
- "end": "2016-11-27T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:328c1ea9-5925-44b7-b22e-a0744792d75a"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:5987c48d-b658-4297-b075-d7017c2824d8",
- "resource": {
- "resourceType": "Encounter",
- "id": "5987c48d-b658-4297-b075-d7017c2824d8",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T18:39:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c13e181a-1ccf-43a1-95cd-690b253d5849",
- "resource": {
- "resourceType": "Procedure",
- "id": "c13e181a-1ccf-43a1-95cd-690b253d5849",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:5987c48d-b658-4297-b075-d7017c2824d8"
- },
- "performedPeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:97cd2b0e-fd94-40e2-b8f0-0f7c10d7b8a9",
- "resource": {
- "resourceType": "Procedure",
- "id": "97cd2b0e-fd94-40e2-b8f0-0f7c10d7b8a9",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399014008",
- "display": "Vaccination for diphtheria, pertussis, and tetanus"
- }
- ],
- "text": "Vaccination for diphtheria, pertussis, and tetanus"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:5987c48d-b658-4297-b075-d7017c2824d8"
- },
- "performedPeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:eb4d6b9f-4171-49b6-9fb7-ff499a653865",
- "resource": {
- "resourceType": "Procedure",
- "id": "eb4d6b9f-4171-49b6-9fb7-ff499a653865",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "268556000",
- "display": "Urine screening for glucose"
- }
- ],
- "text": "Urine screening for glucose"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:5987c48d-b658-4297-b075-d7017c2824d8"
- },
- "performedPeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:51ea5cd7-812e-429b-9d6a-7e6bce206912",
- "resource": {
- "resourceType": "Procedure",
- "id": "51ea5cd7-812e-429b-9d6a-7e6bce206912",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:5987c48d-b658-4297-b075-d7017c2824d8"
- },
- "performedPeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:17841b51-020d-4cf4-86ab-020e50f6e046",
- "resource": {
- "resourceType": "Procedure",
- "id": "17841b51-020d-4cf4-86ab-020e50f6e046",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:5987c48d-b658-4297-b075-d7017c2824d8"
- },
- "performedPeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:c056b0c9-57b7-43da-8bbd-0378e7ba445d",
- "resource": {
- "resourceType": "Claim",
- "id": "c056b0c9-57b7-43da-8bbd-0378e7ba445d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T18:39:51-05:00"
- },
- "created": "2016-12-01T18:39:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:c13e181a-1ccf-43a1-95cd-690b253d5849"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:97cd2b0e-fd94-40e2-b8f0-0f7c10d7b8a9"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:eb4d6b9f-4171-49b6-9fb7-ff499a653865"
- }
- },
- {
- "sequence": 4,
- "procedureReference": {
- "reference": "urn:uuid:51ea5cd7-812e-429b-9d6a-7e6bce206912"
- }
- },
- {
- "sequence": 5,
- "procedureReference": {
- "reference": "urn:uuid:17841b51-020d-4cf4-86ab-020e50f6e046"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:5987c48d-b658-4297-b075-d7017c2824d8"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "net": {
- "value": 1942.94,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399014008",
- "display": "Vaccination for diphtheria, pertussis, and tetanus"
- }
- ],
- "text": "Vaccination for diphtheria, pertussis, and tetanus"
- },
- "net": {
- "value": 3365.55,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "268556000",
- "display": "Urine screening for glucose"
- }
- ],
- "text": "Urine screening for glucose"
- },
- "net": {
- "value": 2574.17,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "procedureSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 3278.80,
- "currency": "USD"
- }
- },
- {
- "sequence": 6,
- "procedureSequence": [
- 5
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 6283.80,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4ec03bc0-10b6-46e2-b0ee-e38709b32932",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "4ec03bc0-10b6-46e2-b0ee-e38709b32932",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c056b0c9-57b7-43da-8bbd-0378e7ba445d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-12-01T18:39:51-05:00",
- "end": "2017-12-01T18:39:51-05:00"
- },
- "created": "2016-12-01T18:39:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c056b0c9-57b7-43da-8bbd-0378e7ba445d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:5987c48d-b658-4297-b075-d7017c2824d8"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "104091002",
- "display": "Hemoglobin / Hematocrit / Platelet count"
- }
- ],
- "text": "Hemoglobin / Hematocrit / Platelet count"
- },
- "servicedPeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1942.94,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 388.588,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1554.352,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1942.94,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1942.94,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399014008",
- "display": "Vaccination for diphtheria, pertussis, and tetanus"
- }
- ],
- "text": "Vaccination for diphtheria, pertussis, and tetanus"
- },
- "servicedPeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3365.55,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 673.1100000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2692.4400000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3365.55,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3365.55,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "268556000",
- "display": "Urine screening for glucose"
- }
- ],
- "text": "Urine screening for glucose"
- },
- "servicedPeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 2574.17,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 514.8340000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2059.3360000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2574.17,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 2574.17,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3278.80,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 655.7600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 2623.0400000000004,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3278.80,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3278.80,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 6,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2016-12-01T17:09:51-05:00",
- "end": "2016-12-01T18:39:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 6283.80,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1256.7600000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 5027.040000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6283.80,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6283.80,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 13956.208000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:92b74f73-0196-4203-829a-f958e955655b",
- "resource": {
- "resourceType": "Encounter",
- "id": "92b74f73-0196-4203-829a-f958e955655b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-12-27T17:09:51-05:00",
- "end": "2016-12-27T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2cf6df09-4b11-46b8-9757-6e95a50c1846",
- "resource": {
- "resourceType": "Claim",
- "id": "2cf6df09-4b11-46b8-9757-6e95a50c1846",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-12-27T17:09:51-05:00",
- "end": "2016-12-27T17:24:51-05:00"
- },
- "created": "2016-12-27T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:92b74f73-0196-4203-829a-f958e955655b"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5f96d5f9-9037-4372-9f14-25158fddfe95",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5f96d5f9-9037-4372-9f14-25158fddfe95",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "2cf6df09-4b11-46b8-9757-6e95a50c1846"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-12-27T17:24:51-05:00",
- "end": "2017-12-27T17:24:51-05:00"
- },
- "created": "2016-12-27T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:2cf6df09-4b11-46b8-9757-6e95a50c1846"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-12-27T17:09:51-05:00",
- "end": "2016-12-27T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:92b74f73-0196-4203-829a-f958e955655b"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:81581d9e-5a0f-497d-8d33-6dbb0ca6db0f",
- "resource": {
- "resourceType": "Encounter",
- "id": "81581d9e-5a0f-497d-8d33-6dbb0ca6db0f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2016-12-29T17:09:51-05:00",
- "end": "2016-12-29T17:54:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:4db920e4-a8c5-4c2c-b953-8adc544e02d7",
- "resource": {
- "resourceType": "Procedure",
- "id": "4db920e4-a8c5-4c2c-b953-8adc544e02d7",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:81581d9e-5a0f-497d-8d33-6dbb0ca6db0f"
- },
- "performedPeriod": {
- "start": "2016-12-29T17:09:51-05:00",
- "end": "2016-12-29T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:e03208f5-2e1d-4a39-9b8a-0bd7e91d195f",
- "resource": {
- "resourceType": "Procedure",
- "id": "e03208f5-2e1d-4a39-9b8a-0bd7e91d195f",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:81581d9e-5a0f-497d-8d33-6dbb0ca6db0f"
- },
- "performedPeriod": {
- "start": "2016-12-29T17:09:51-05:00",
- "end": "2016-12-29T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:3ee11a6b-bc39-47ed-8aba-f916cfae3155",
- "resource": {
- "resourceType": "Claim",
- "id": "3ee11a6b-bc39-47ed-8aba-f916cfae3155",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2016-12-29T17:09:51-05:00",
- "end": "2016-12-29T17:54:51-05:00"
- },
- "created": "2016-12-29T17:54:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:4db920e4-a8c5-4c2c-b953-8adc544e02d7"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:e03208f5-2e1d-4a39-9b8a-0bd7e91d195f"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:81581d9e-5a0f-497d-8d33-6dbb0ca6db0f"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 8644.88,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 6192.13,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:a9b86b72-fa8a-436b-ab1f-51fa5cb13aa1",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "a9b86b72-fa8a-436b-ab1f-51fa5cb13aa1",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3ee11a6b-bc39-47ed-8aba-f916cfae3155"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2016-12-29T17:54:51-05:00",
- "end": "2017-12-29T17:54:51-05:00"
- },
- "created": "2016-12-29T17:54:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3ee11a6b-bc39-47ed-8aba-f916cfae3155"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2016-12-29T17:09:51-05:00",
- "end": "2016-12-29T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:81581d9e-5a0f-497d-8d33-6dbb0ca6db0f"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2016-12-29T17:09:51-05:00",
- "end": "2016-12-29T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 8644.88,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1728.9759999999999,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 6915.9039999999995,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 8644.88,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 8644.88,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2016-12-29T17:09:51-05:00",
- "end": "2016-12-29T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 6192.13,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1238.4260000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4953.704000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6192.13,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6192.13,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 11869.608,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:e49938e5-8886-40fa-a08d-00bfd041defb",
- "resource": {
- "resourceType": "Encounter",
- "id": "e49938e5-8886-40fa-a08d-00bfd041defb",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:8f597950-6793-45c3-a0e6-6a1c6d5fd880",
- "resource": {
- "resourceType": "Claim",
- "id": "8f597950-6793-45c3-a0e6-6a1c6d5fd880",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T17:24:51-05:00"
- },
- "created": "2017-01-26T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e49938e5-8886-40fa-a08d-00bfd041defb"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:78b2455b-9db7-4cfe-8d20-bd2efd7f23f5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "78b2455b-9db7-4cfe-8d20-bd2efd7f23f5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "8f597950-6793-45c3-a0e6-6a1c6d5fd880"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-01-26T17:24:51-05:00",
- "end": "2018-01-26T17:24:51-05:00"
- },
- "created": "2017-01-26T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:8f597950-6793-45c3-a0e6-6a1c6d5fd880"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:e49938e5-8886-40fa-a08d-00bfd041defb"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:d4589660-48b4-4efe-8aa4-6d03dafdb283",
- "resource": {
- "resourceType": "Encounter",
- "id": "d4589660-48b4-4efe-8aa4-6d03dafdb283",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T18:09:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:76960108-fcfc-4702-a314-e775e411b8b7",
- "resource": {
- "resourceType": "Procedure",
- "id": "76960108-fcfc-4702-a314-e775e411b8b7",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "118001005",
- "display": "Streptococcus pneumoniae group B antigen test"
- }
- ],
- "text": "Streptococcus pneumoniae group B antigen test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d4589660-48b4-4efe-8aa4-6d03dafdb283"
- },
- "performedPeriod": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:17f71f7b-adc0-4e31-b159-25f4774c1f88",
- "resource": {
- "resourceType": "Procedure",
- "id": "17f71f7b-adc0-4e31-b159-25f4774c1f88",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d4589660-48b4-4efe-8aa4-6d03dafdb283"
- },
- "performedPeriod": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:00725b57-4b2f-4465-905d-5a521514b4c2",
- "resource": {
- "resourceType": "Procedure",
- "id": "00725b57-4b2f-4465-905d-5a521514b4c2",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d4589660-48b4-4efe-8aa4-6d03dafdb283"
- },
- "performedPeriod": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:9a0eeddb-92e0-4966-b715-448d4d3ee23d",
- "resource": {
- "resourceType": "Claim",
- "id": "9a0eeddb-92e0-4966-b715-448d4d3ee23d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T18:09:51-05:00"
- },
- "created": "2017-01-26T18:09:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:76960108-fcfc-4702-a314-e775e411b8b7"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:17f71f7b-adc0-4e31-b159-25f4774c1f88"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:00725b57-4b2f-4465-905d-5a521514b4c2"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d4589660-48b4-4efe-8aa4-6d03dafdb283"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "118001005",
- "display": "Streptococcus pneumoniae group B antigen test"
- }
- ],
- "text": "Streptococcus pneumoniae group B antigen test"
- },
- "net": {
- "value": 3757.55,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 9284.83,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 5114.20,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d02ed657-c6ee-43d9-a946-2a323a9e49c1",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d02ed657-c6ee-43d9-a946-2a323a9e49c1",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "9a0eeddb-92e0-4966-b715-448d4d3ee23d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-01-26T18:09:51-05:00",
- "end": "2018-01-26T18:09:51-05:00"
- },
- "created": "2017-01-26T18:09:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:9a0eeddb-92e0-4966-b715-448d4d3ee23d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T18:09:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:d4589660-48b4-4efe-8aa4-6d03dafdb283"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "118001005",
- "display": "Streptococcus pneumoniae group B antigen test"
- }
- ],
- "text": "Streptococcus pneumoniae group B antigen test"
- },
- "servicedPeriod": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T18:09:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 3757.55,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 751.5100000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 3006.0400000000004,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3757.55,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 3757.55,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T18:09:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 9284.83,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1856.9660000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 7427.8640000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9284.83,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9284.83,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2017-01-26T17:09:51-05:00",
- "end": "2017-01-26T18:09:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 5114.20,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1022.84,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4091.36,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5114.20,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5114.20,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 14525.264000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:0497148f-a086-40d2-9cc8-1856855c6fec",
- "resource": {
- "resourceType": "Encounter",
- "id": "0497148f-a086-40d2-9cc8-1856855c6fec",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-02-09T17:09:51-05:00",
- "end": "2017-02-09T17:54:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:6ed56bbd-8136-426c-b6d8-1f533379db2b",
- "resource": {
- "resourceType": "Procedure",
- "id": "6ed56bbd-8136-426c-b6d8-1f533379db2b",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0497148f-a086-40d2-9cc8-1856855c6fec"
- },
- "performedPeriod": {
- "start": "2017-02-09T17:09:51-05:00",
- "end": "2017-02-09T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:e1b626bc-ca67-4431-8b64-e8d709e21f6c",
- "resource": {
- "resourceType": "Procedure",
- "id": "e1b626bc-ca67-4431-8b64-e8d709e21f6c",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:0497148f-a086-40d2-9cc8-1856855c6fec"
- },
- "performedPeriod": {
- "start": "2017-02-09T17:09:51-05:00",
- "end": "2017-02-09T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:adcb96b6-871b-41e2-8c4f-31cee4167638",
- "resource": {
- "resourceType": "Claim",
- "id": "adcb96b6-871b-41e2-8c4f-31cee4167638",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-02-09T17:09:51-05:00",
- "end": "2017-02-09T17:54:51-05:00"
- },
- "created": "2017-02-09T17:54:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:6ed56bbd-8136-426c-b6d8-1f533379db2b"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:e1b626bc-ca67-4431-8b64-e8d709e21f6c"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:0497148f-a086-40d2-9cc8-1856855c6fec"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "net": {
- "value": 5392.97,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "net": {
- "value": 6365.85,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:345b262b-8da0-4f67-824a-544ee1414257",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "345b262b-8da0-4f67-824a-544ee1414257",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "adcb96b6-871b-41e2-8c4f-31cee4167638"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-02-09T17:54:51-05:00",
- "end": "2018-02-09T17:54:51-05:00"
- },
- "created": "2017-02-09T17:54:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:adcb96b6-871b-41e2-8c4f-31cee4167638"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2017-02-09T17:09:51-05:00",
- "end": "2017-02-09T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:0497148f-a086-40d2-9cc8-1856855c6fec"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274804006",
- "display": "Evaluation of uterine fundal height"
- }
- ],
- "text": "Evaluation of uterine fundal height"
- },
- "servicedPeriod": {
- "start": "2017-02-09T17:09:51-05:00",
- "end": "2017-02-09T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 5392.97,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1078.594,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 4314.376,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5392.97,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 5392.97,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225158009",
- "display": "Auscultation of the fetal heart"
- }
- ],
- "text": "Auscultation of the fetal heart"
- },
- "servicedPeriod": {
- "start": "2017-02-09T17:09:51-05:00",
- "end": "2017-02-09T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 6365.85,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1273.17,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 5092.68,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6365.85,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6365.85,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 9407.056,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:65d0e5d3-49e8-452f-92d1-bb6c2388f0b8",
- "resource": {
- "resourceType": "Encounter",
- "id": "65d0e5d3-49e8-452f-92d1-bb6c2388f0b8",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183460006",
- "display": "Obstetric emergency hospital admission"
- }
- ],
- "text": "Obstetric emergency hospital admission"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-02-16T17:09:51-05:00",
- "end": "2017-02-16T18:24:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:ec4f036a-9dda-4de4-b0e7-b4fa448adf7c",
- "resource": {
- "resourceType": "Procedure",
- "id": "ec4f036a-9dda-4de4-b0e7-b4fa448adf7c",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "66348005",
- "display": "Childbirth"
- }
- ],
- "text": "Childbirth"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:65d0e5d3-49e8-452f-92d1-bb6c2388f0b8"
- },
- "performedPeriod": {
- "start": "2017-02-16T17:09:51-05:00",
- "end": "2017-02-16T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:f833b070-e2f3-4f92-909a-c4b427daa3f2",
- "resource": {
- "resourceType": "Claim",
- "id": "f833b070-e2f3-4f92-909a-c4b427daa3f2",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-02-16T17:09:51-05:00",
- "end": "2017-02-16T18:24:51-05:00"
- },
- "created": "2017-02-16T18:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:ec4f036a-9dda-4de4-b0e7-b4fa448adf7c"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183460006",
- "display": "Obstetric emergency hospital admission"
- }
- ],
- "text": "Obstetric emergency hospital admission"
- },
- "encounter": [
- {
- "reference": "urn:uuid:65d0e5d3-49e8-452f-92d1-bb6c2388f0b8"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "66348005",
- "display": "Childbirth"
- }
- ],
- "text": "Childbirth"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d12bc564-e971-440c-92d2-a0c4b4f934b0",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d12bc564-e971-440c-92d2-a0c4b4f934b0",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f833b070-e2f3-4f92-909a-c4b427daa3f2"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-02-16T18:24:51-05:00",
- "end": "2018-02-16T18:24:51-05:00"
- },
- "created": "2017-02-16T18:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f833b070-e2f3-4f92-909a-c4b427daa3f2"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183460006",
- "display": "Obstetric emergency hospital admission"
- }
- ],
- "text": "Obstetric emergency hospital admission"
- },
- "servicedPeriod": {
- "start": "2017-02-16T17:09:51-05:00",
- "end": "2017-02-16T18:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:65d0e5d3-49e8-452f-92d1-bb6c2388f0b8"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "66348005",
- "display": "Childbirth"
- }
- ],
- "text": "Childbirth"
- },
- "servicedPeriod": {
- "start": "2017-02-16T17:09:51-05:00",
- "end": "2017-02-16T18:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:7e65a3a7-93d3-45e4-8ae0-c6b6921dc28e",
- "resource": {
- "resourceType": "Encounter",
- "id": "7e65a3a7-93d3-45e4-8ae0-c6b6921dc28e",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-02-25T17:09:51-05:00",
- "end": "2017-02-25T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:4c1953fd-ff07-43fc-abd4-fa77ded03ffe",
- "resource": {
- "resourceType": "Claim",
- "id": "4c1953fd-ff07-43fc-abd4-fa77ded03ffe",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-02-25T17:09:51-05:00",
- "end": "2017-02-25T17:24:51-05:00"
- },
- "created": "2017-02-25T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:7e65a3a7-93d3-45e4-8ae0-c6b6921dc28e"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:70ae79e4-d141-4b5c-bd39-96c7141c2290",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "70ae79e4-d141-4b5c-bd39-96c7141c2290",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "4c1953fd-ff07-43fc-abd4-fa77ded03ffe"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-02-25T17:24:51-05:00",
- "end": "2018-02-25T17:24:51-05:00"
- },
- "created": "2017-02-25T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:4c1953fd-ff07-43fc-abd4-fa77ded03ffe"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-02-25T17:09:51-05:00",
- "end": "2017-02-25T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:7e65a3a7-93d3-45e4-8ae0-c6b6921dc28e"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:74c2aaf8-7a76-486a-b660-6867f6353db2",
- "resource": {
- "resourceType": "Encounter",
- "id": "74c2aaf8-7a76-486a-b660-6867f6353db2",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-03-27T18:09:51-04:00",
- "end": "2017-03-27T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:48527bf0-657b-4a92-97cd-0fbd6af4eeb5",
- "resource": {
- "resourceType": "Claim",
- "id": "48527bf0-657b-4a92-97cd-0fbd6af4eeb5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-03-27T18:09:51-04:00",
- "end": "2017-03-27T18:24:51-04:00"
- },
- "created": "2017-03-27T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:74c2aaf8-7a76-486a-b660-6867f6353db2"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d37b865f-4f27-4817-b743-76e7f9ea6542",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d37b865f-4f27-4817-b743-76e7f9ea6542",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "48527bf0-657b-4a92-97cd-0fbd6af4eeb5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-03-27T18:24:51-04:00",
- "end": "2018-03-27T18:24:51-04:00"
- },
- "created": "2017-03-27T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:48527bf0-657b-4a92-97cd-0fbd6af4eeb5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-03-27T18:09:51-04:00",
- "end": "2017-03-27T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:74c2aaf8-7a76-486a-b660-6867f6353db2"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:2058ea35-bb50-4ca0-b5e1-4a25acd927fd",
- "resource": {
- "resourceType": "Encounter",
- "id": "2058ea35-bb50-4ca0-b5e1-4a25acd927fd",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169762003",
- "display": "Postnatal visit"
- }
- ],
- "text": "Postnatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-03-30T18:09:51-04:00",
- "end": "2017-03-30T18:54:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:cfbbfdfe-bd58-4757-89d0-84469f785385",
- "resource": {
- "resourceType": "Procedure",
- "id": "cfbbfdfe-bd58-4757-89d0-84469f785385",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination following birth"
- }
- ],
- "text": "Physical examination following birth"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:2058ea35-bb50-4ca0-b5e1-4a25acd927fd"
- },
- "performedPeriod": {
- "start": "2017-03-30T18:09:51-04:00",
- "end": "2017-03-30T18:24:51-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:ab14826e-9fc0-42b0-93b0-47a8a58a8b43",
- "resource": {
- "resourceType": "Procedure",
- "id": "ab14826e-9fc0-42b0-93b0-47a8a58a8b43",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:2058ea35-bb50-4ca0-b5e1-4a25acd927fd"
- },
- "performedPeriod": {
- "start": "2017-03-30T18:09:51-04:00",
- "end": "2017-03-30T18:24:51-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:f21fb9c1-7b19-4827-907b-240511382723",
- "resource": {
- "resourceType": "Claim",
- "id": "f21fb9c1-7b19-4827-907b-240511382723",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-03-30T18:09:51-04:00",
- "end": "2017-03-30T18:54:51-04:00"
- },
- "created": "2017-03-30T18:54:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:cfbbfdfe-bd58-4757-89d0-84469f785385"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:ab14826e-9fc0-42b0-93b0-47a8a58a8b43"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169762003",
- "display": "Postnatal visit"
- }
- ],
- "text": "Postnatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:2058ea35-bb50-4ca0-b5e1-4a25acd927fd"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination following birth"
- }
- ],
- "text": "Physical examination following birth"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:15ffaab1-6070-4c4c-a04f-2d5edadeb2f1",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "15ffaab1-6070-4c4c-a04f-2d5edadeb2f1",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f21fb9c1-7b19-4827-907b-240511382723"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-03-30T18:54:51-04:00",
- "end": "2018-03-30T18:54:51-04:00"
- },
- "created": "2017-03-30T18:54:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f21fb9c1-7b19-4827-907b-240511382723"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169762003",
- "display": "Postnatal visit"
- }
- ],
- "text": "Postnatal visit"
- },
- "servicedPeriod": {
- "start": "2017-03-30T18:09:51-04:00",
- "end": "2017-03-30T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:2058ea35-bb50-4ca0-b5e1-4a25acd927fd"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination following birth"
- }
- ],
- "text": "Physical examination following birth"
- },
- "servicedPeriod": {
- "start": "2017-03-30T18:09:51-04:00",
- "end": "2017-03-30T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "servicedPeriod": {
- "start": "2017-03-30T18:09:51-04:00",
- "end": "2017-03-30T18:54:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 826.64,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:17026802-7974-4c95-9fba-9f7302765ddd",
- "resource": {
- "resourceType": "Encounter",
- "id": "17026802-7974-4c95-9fba-9f7302765ddd",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-03-30T18:09:51-04:00",
- "end": "2017-03-30T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:dbf684ae-916a-4a9a-a8db-88a69f386a71",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "dbf684ae-916a-4a9a-a8db-88a69f386a71",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "751905",
- "display": "Trinessa 28 Day Pack"
- }
- ],
- "text": "Trinessa 28 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:17026802-7974-4c95-9fba-9f7302765ddd"
- },
- "authoredOn": "2017-03-30T18:09:51-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:cd617cbe-7b79-46af-a823-c19488e913a5",
- "resource": {
- "resourceType": "Claim",
- "id": "cd617cbe-7b79-46af-a823-c19488e913a5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-03-30T18:09:51-04:00",
- "end": "2017-03-30T18:24:51-04:00"
- },
- "created": "2017-03-30T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:dbf684ae-916a-4a9a-a8db-88a69f386a71"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:17026802-7974-4c95-9fba-9f7302765ddd"
- }
- ]
- }
- ],
- "total": {
- "value": 45.97,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:2d7f9b41-7473-42a9-8ab7-eb033609a7c9",
- "resource": {
- "resourceType": "Claim",
- "id": "2d7f9b41-7473-42a9-8ab7-eb033609a7c9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-03-30T18:09:51-04:00",
- "end": "2017-03-30T18:24:51-04:00"
- },
- "created": "2017-03-30T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:17026802-7974-4c95-9fba-9f7302765ddd"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9459fa8a-53a9-48ad-a025-bb67bddf4162",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9459fa8a-53a9-48ad-a025-bb67bddf4162",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "2d7f9b41-7473-42a9-8ab7-eb033609a7c9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-03-30T18:24:51-04:00",
- "end": "2018-03-30T18:24:51-04:00"
- },
- "created": "2017-03-30T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:2d7f9b41-7473-42a9-8ab7-eb033609a7c9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2017-03-30T18:09:51-04:00",
- "end": "2017-03-30T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:17026802-7974-4c95-9fba-9f7302765ddd"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:1c754566-cfe7-4c49-a915-32decdc26591",
- "resource": {
- "resourceType": "Encounter",
- "id": "1c754566-cfe7-4c49-a915-32decdc26591",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-04-26T18:09:51-04:00",
- "end": "2017-04-26T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:8fcefa58-801e-4f46-b9f3-fa85963433e2",
- "resource": {
- "resourceType": "Claim",
- "id": "8fcefa58-801e-4f46-b9f3-fa85963433e2",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-04-26T18:09:51-04:00",
- "end": "2017-04-26T18:24:51-04:00"
- },
- "created": "2017-04-26T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:1c754566-cfe7-4c49-a915-32decdc26591"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:7a1388a4-3a50-4b34-ba48-ffea00367bb2",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "7a1388a4-3a50-4b34-ba48-ffea00367bb2",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "8fcefa58-801e-4f46-b9f3-fa85963433e2"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-04-26T18:24:51-04:00",
- "end": "2018-04-26T18:24:51-04:00"
- },
- "created": "2017-04-26T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:8fcefa58-801e-4f46-b9f3-fa85963433e2"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-04-26T18:09:51-04:00",
- "end": "2017-04-26T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:1c754566-cfe7-4c49-a915-32decdc26591"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:b8e916ad-ebef-4473-a010-db39f48211b1",
- "resource": {
- "resourceType": "Encounter",
- "id": "b8e916ad-ebef-4473-a010-db39f48211b1",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-05-26T18:09:51-04:00",
- "end": "2017-05-26T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:087aaf10-cfdc-4aae-87a6-ef38ab6224f7",
- "resource": {
- "resourceType": "Claim",
- "id": "087aaf10-cfdc-4aae-87a6-ef38ab6224f7",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-05-26T18:09:51-04:00",
- "end": "2017-05-26T18:24:51-04:00"
- },
- "created": "2017-05-26T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:b8e916ad-ebef-4473-a010-db39f48211b1"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0c937224-549b-418e-b527-3c8e057b9ae3",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0c937224-549b-418e-b527-3c8e057b9ae3",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "087aaf10-cfdc-4aae-87a6-ef38ab6224f7"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-05-26T18:24:51-04:00",
- "end": "2018-05-26T18:24:51-04:00"
- },
- "created": "2017-05-26T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:087aaf10-cfdc-4aae-87a6-ef38ab6224f7"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-05-26T18:09:51-04:00",
- "end": "2017-05-26T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:b8e916ad-ebef-4473-a010-db39f48211b1"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:58db79db-58cb-476c-9954-f3aafdad12d0",
- "resource": {
- "resourceType": "Encounter",
- "id": "58db79db-58cb-476c-9954-f3aafdad12d0",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-06-25T18:09:51-04:00",
- "end": "2017-06-25T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f1129c6a-78de-4de6-a616-4ec96125887c",
- "resource": {
- "resourceType": "Claim",
- "id": "f1129c6a-78de-4de6-a616-4ec96125887c",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-06-25T18:09:51-04:00",
- "end": "2017-06-25T18:24:51-04:00"
- },
- "created": "2017-06-25T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:58db79db-58cb-476c-9954-f3aafdad12d0"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:86e9c36a-ca72-4f47-93d5-aea6829c2a1f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "86e9c36a-ca72-4f47-93d5-aea6829c2a1f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f1129c6a-78de-4de6-a616-4ec96125887c"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-06-25T18:24:51-04:00",
- "end": "2018-06-25T18:24:51-04:00"
- },
- "created": "2017-06-25T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f1129c6a-78de-4de6-a616-4ec96125887c"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-06-25T18:09:51-04:00",
- "end": "2017-06-25T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:58db79db-58cb-476c-9954-f3aafdad12d0"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:6003fe4f-56a9-4155-a0f7-fc5192682d9f",
- "resource": {
- "resourceType": "Encounter",
- "id": "6003fe4f-56a9-4155-a0f7-fc5192682d9f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-07-25T18:09:51-04:00",
- "end": "2017-07-25T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:59dc80de-3206-4941-bbfe-72045d838a41",
- "resource": {
- "resourceType": "Claim",
- "id": "59dc80de-3206-4941-bbfe-72045d838a41",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-07-25T18:09:51-04:00",
- "end": "2017-07-25T18:24:51-04:00"
- },
- "created": "2017-07-25T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:6003fe4f-56a9-4155-a0f7-fc5192682d9f"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d1a92480-7a72-4809-b6bd-e81f680d2549",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d1a92480-7a72-4809-b6bd-e81f680d2549",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "59dc80de-3206-4941-bbfe-72045d838a41"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-07-25T18:24:51-04:00",
- "end": "2018-07-25T18:24:51-04:00"
- },
- "created": "2017-07-25T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:59dc80de-3206-4941-bbfe-72045d838a41"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-07-25T18:09:51-04:00",
- "end": "2017-07-25T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:6003fe4f-56a9-4155-a0f7-fc5192682d9f"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:62387abc-e592-44cf-a6c1-62dd0db564bd",
- "resource": {
- "resourceType": "Encounter",
- "id": "62387abc-e592-44cf-a6c1-62dd0db564bd",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-08-24T18:09:51-04:00",
- "end": "2017-08-24T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:4c1493c0-f7aa-4782-9670-382c0f2d7418",
- "resource": {
- "resourceType": "Claim",
- "id": "4c1493c0-f7aa-4782-9670-382c0f2d7418",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-08-24T18:09:51-04:00",
- "end": "2017-08-24T18:24:51-04:00"
- },
- "created": "2017-08-24T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:62387abc-e592-44cf-a6c1-62dd0db564bd"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:cd13c058-c374-4b6a-987c-2cc3b11ecbbc",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "cd13c058-c374-4b6a-987c-2cc3b11ecbbc",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "4c1493c0-f7aa-4782-9670-382c0f2d7418"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-08-24T18:24:51-04:00",
- "end": "2018-08-24T18:24:51-04:00"
- },
- "created": "2017-08-24T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:4c1493c0-f7aa-4782-9670-382c0f2d7418"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-08-24T18:09:51-04:00",
- "end": "2017-08-24T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:62387abc-e592-44cf-a6c1-62dd0db564bd"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:ddcaa67b-83a8-4146-b009-1cc02a39927a",
- "resource": {
- "resourceType": "Encounter",
- "id": "ddcaa67b-83a8-4146-b009-1cc02a39927a",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-09-23T18:09:51-04:00",
- "end": "2017-09-23T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:08b367c8-fffb-4232-a1fb-912dec86f372",
- "resource": {
- "resourceType": "Claim",
- "id": "08b367c8-fffb-4232-a1fb-912dec86f372",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-09-23T18:09:51-04:00",
- "end": "2017-09-23T18:24:51-04:00"
- },
- "created": "2017-09-23T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ddcaa67b-83a8-4146-b009-1cc02a39927a"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f90b54c6-6959-4217-ab09-e1806331413e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f90b54c6-6959-4217-ab09-e1806331413e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "08b367c8-fffb-4232-a1fb-912dec86f372"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-09-23T18:24:51-04:00",
- "end": "2018-09-23T18:24:51-04:00"
- },
- "created": "2017-09-23T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:08b367c8-fffb-4232-a1fb-912dec86f372"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-09-23T18:09:51-04:00",
- "end": "2017-09-23T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ddcaa67b-83a8-4146-b009-1cc02a39927a"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:48b5aad4-60de-4bdb-a2f2-1385c008e7e3",
- "resource": {
- "resourceType": "Encounter",
- "id": "48b5aad4-60de-4bdb-a2f2-1385c008e7e3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2017-10-23T18:09:51-04:00",
- "end": "2017-10-23T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:93d858c0-ccfd-41e8-bf62-2677d12a1c11",
- "resource": {
- "resourceType": "Claim",
- "id": "93d858c0-ccfd-41e8-bf62-2677d12a1c11",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2017-10-23T18:09:51-04:00",
- "end": "2017-10-23T18:24:51-04:00"
- },
- "created": "2017-10-23T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:48b5aad4-60de-4bdb-a2f2-1385c008e7e3"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:371147cc-ccd7-4339-9b42-e0d1561c1dfb",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "371147cc-ccd7-4339-9b42-e0d1561c1dfb",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "93d858c0-ccfd-41e8-bf62-2677d12a1c11"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2017-10-23T18:24:51-04:00",
- "end": "2018-10-23T18:24:51-04:00"
- },
- "created": "2017-10-23T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:93d858c0-ccfd-41e8-bf62-2677d12a1c11"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-10-23T18:09:51-04:00",
- "end": "2017-10-23T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:48b5aad4-60de-4bdb-a2f2-1385c008e7e3"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118",
- "resource": {
- "resourceType": "Encounter",
- "id": "41b2e576-f64d-4cc9-b8dc-b98126605118",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6",
- "display": "Dr. Keesha623 Yost751"
- }
- }
- ],
- "period": {
- "start": "2018-05-17T18:09:51-04:00",
- "end": "2018-05-17T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:b31e375e-96dd-3a49-8fbf-563512101637",
- "display": "DEVITA CHIROPRACTIC OFFICE PC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d04694b8-61c1-49d0-8f32-da9bf510af65",
- "resource": {
- "resourceType": "Observation",
- "id": "d04694b8-61c1-49d0-8f32-da9bf510af65",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 162.6383245610669,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bf7bdaf5-69f5-4039-bf36-87ed31686583",
- "resource": {
- "resourceType": "Observation",
- "id": "bf7bdaf5-69f5-4039-bf36-87ed31686583",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 0.5815840765697384,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6f0ef958-b6ed-4d52-837c-f18f8b0c0860",
- "resource": {
- "resourceType": "Observation",
- "id": "6f0ef958-b6ed-4d52-837c-f18f8b0c0860",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 60.33001593411326,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ac6a3c9e-69d7-4e40-8743-dc3c26ebb699",
- "resource": {
- "resourceType": "Observation",
- "id": "ac6a3c9e-69d7-4e40-8743-dc3c26ebb699",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 22.80802375310437,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ce844e1c-0802-4418-92bd-9089b18dc680",
- "resource": {
- "resourceType": "Observation",
- "id": "ce844e1c-0802-4418-92bd-9089b18dc680",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 78.85377622128249,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 131.12449021885467,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f154cd5c-7cac-4cfb-a507-5d39a3287d0b",
- "resource": {
- "resourceType": "Observation",
- "id": "f154cd5c-7cac-4cfb-a507-5d39a3287d0b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 5.728805959686149,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8bf59ec9-da57-481a-88f0-a03d58fbc148",
- "resource": {
- "resourceType": "Observation",
- "id": "8bf59ec9-da57-481a-88f0-a03d58fbc148",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 5.495042015264238,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a8e6c58b-4e64-4aab-b035-b8e48e10e73f",
- "resource": {
- "resourceType": "Observation",
- "id": "a8e6c58b-4e64-4aab-b035-b8e48e10e73f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 12.500910227762205,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a259acfe-f34b-48c0-8c8c-e28934f9019a",
- "resource": {
- "resourceType": "Observation",
- "id": "a259acfe-f34b-48c0-8c8c-e28934f9019a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 36.54460092090891,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a78e790a-d43e-4247-9ed6-7f23c728d1a5",
- "resource": {
- "resourceType": "Observation",
- "id": "a78e790a-d43e-4247-9ed6-7f23c728d1a5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 84.5049790691309,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7df3218d-8f90-4401-9379-7b914496857d",
- "resource": {
- "resourceType": "Observation",
- "id": "7df3218d-8f90-4401-9379-7b914496857d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 29.385172501169606,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:40717aa8-c1f4-4ebc-8d89-4d4201e4d02e",
- "resource": {
- "resourceType": "Observation",
- "id": "40717aa8-c1f4-4ebc-8d89-4d4201e4d02e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 33.16384178205612,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e5151b76-4b9d-402e-9037-5aa9fbec14e8",
- "resource": {
- "resourceType": "Observation",
- "id": "e5151b76-4b9d-402e-9037-5aa9fbec14e8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 42.01496056320615,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:79e9c2d3-b14b-4617-a2a3-f94c728bd191",
- "resource": {
- "resourceType": "Observation",
- "id": "79e9c2d3-b14b-4617-a2a3-f94c728bd191",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 182.7279512706021,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0bf805d3-58d1-4ed5-9b85-b320a208a759",
- "resource": {
- "resourceType": "Observation",
- "id": "0bf805d3-58d1-4ed5-9b85-b320a208a759",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 407.190252893914,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:641e27fa-fee0-4852-a829-ad846b04a349",
- "resource": {
- "resourceType": "Observation",
- "id": "641e27fa-fee0-4852-a829-ad846b04a349",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueQuantity": {
- "value": 9.637236011827277,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:92ef2e27-a5f4-41e1-b38f-7fc1286c0884",
- "resource": {
- "resourceType": "Observation",
- "id": "92ef2e27-a5f4-41e1-b38f-7fc1286c0884",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6589c7fe-6a85-4226-8c17-f0e2a6ce545f",
- "resource": {
- "resourceType": "Immunization",
- "id": "6589c7fe-6a85-4226-8c17-f0e2a6ce545f",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "occurrenceDateTime": "2018-05-17T18:09:51-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:c6c8f5da-80bf-41b3-a2b8-02fdc6635087",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "c6c8f5da-80bf-41b3-a2b8-02fdc6635087",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- },
- "effectiveDateTime": "2018-05-17T18:09:51-04:00",
- "issued": "2018-05-17T18:09:51.311-04:00",
- "result": [
- {
- "reference": "urn:uuid:f154cd5c-7cac-4cfb-a507-5d39a3287d0b",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:8bf59ec9-da57-481a-88f0-a03d58fbc148",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:a8e6c58b-4e64-4aab-b035-b8e48e10e73f",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:a259acfe-f34b-48c0-8c8c-e28934f9019a",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:a78e790a-d43e-4247-9ed6-7f23c728d1a5",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:7df3218d-8f90-4401-9379-7b914496857d",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:40717aa8-c1f4-4ebc-8d89-4d4201e4d02e",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:e5151b76-4b9d-402e-9037-5aa9fbec14e8",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:79e9c2d3-b14b-4617-a2a3-f94c728bd191",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:0bf805d3-58d1-4ed5-9b85-b320a208a759",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:641e27fa-fee0-4852-a829-ad846b04a349",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:d9607bb4-a1d3-4020-914d-867831444de9",
- "resource": {
- "resourceType": "Claim",
- "id": "d9607bb4-a1d3-4020-914d-867831444de9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2018-05-17T18:09:51-04:00",
- "end": "2018-05-17T18:24:51-04:00"
- },
- "created": "2018-05-17T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:b31e375e-96dd-3a49-8fbf-563512101637",
- "display": "DEVITA CHIROPRACTIC OFFICE PC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:6589c7fe-6a85-4226-8c17-f0e2a6ce545f"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:61f86217-0cce-4c5e-8cdb-c6331256242f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "61f86217-0cce-4c5e-8cdb-c6331256242f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d9607bb4-a1d3-4020-914d-867831444de9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2018-05-17T18:24:51-04:00",
- "end": "2019-05-17T18:24:51-04:00"
- },
- "created": "2018-05-17T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d9607bb4-a1d3-4020-914d-867831444de9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000062b6"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-05-17T18:09:51-04:00",
- "end": "2018-05-17T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:41b2e576-f64d-4cc9-b8dc-b98126605118"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2018-05-17T18:09:51-04:00",
- "end": "2018-05-17T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8ce2c890-9de1-47e2-b6fa-255bfe9b5c53",
- "resource": {
- "resourceType": "Encounter",
- "id": "8ce2c890-9de1-47e2-b6fa-255bfe9b5c53",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2018-06-20T18:09:51-04:00",
- "end": "2018-06-20T19:09:51-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55680006",
- "display": "Drug overdose"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:db934244-0ce4-45fb-b0bb-5248942fab72",
- "resource": {
- "resourceType": "Claim",
- "id": "db934244-0ce4-45fb-b0bb-5248942fab72",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2018-06-20T18:09:51-04:00",
- "end": "2018-06-20T19:09:51-04:00"
- },
- "created": "2018-06-20T19:09:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8ce2c890-9de1-47e2-b6fa-255bfe9b5c53"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d4b25773-b336-482f-bf37-c0c4c53728ea",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d4b25773-b336-482f-bf37-c0c4c53728ea",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "db934244-0ce4-45fb-b0bb-5248942fab72"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2018-06-20T19:09:51-04:00",
- "end": "2019-06-20T19:09:51-04:00"
- },
- "created": "2018-06-20T19:09:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:db934244-0ce4-45fb-b0bb-5248942fab72"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency Room Admission"
- }
- ],
- "text": "Emergency Room Admission"
- },
- "servicedPeriod": {
- "start": "2018-06-20T18:09:51-04:00",
- "end": "2018-06-20T19:09:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8ce2c890-9de1-47e2-b6fa-255bfe9b5c53"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:380b1f85-0e74-4cde-99b0-89dc434610f0",
- "resource": {
- "resourceType": "Encounter",
- "id": "380b1f85-0e74-4cde-99b0-89dc434610f0",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2018-07-11T18:09:51-04:00",
- "end": "2018-07-11T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:fecc8fc3-6cb9-44c1-b37f-098c92e9cf6f",
- "resource": {
- "resourceType": "Claim",
- "id": "fecc8fc3-6cb9-44c1-b37f-098c92e9cf6f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2018-07-11T18:09:51-04:00",
- "end": "2018-07-11T18:24:51-04:00"
- },
- "created": "2018-07-11T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:380b1f85-0e74-4cde-99b0-89dc434610f0"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1b4fd989-e8b1-4f85-ba7e-38950e30590f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "1b4fd989-e8b1-4f85-ba7e-38950e30590f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "fecc8fc3-6cb9-44c1-b37f-098c92e9cf6f"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2018-07-11T18:24:51-04:00",
- "end": "2019-07-11T18:24:51-04:00"
- },
- "created": "2018-07-11T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:fecc8fc3-6cb9-44c1-b37f-098c92e9cf6f"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-07-11T18:09:51-04:00",
- "end": "2018-07-11T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:380b1f85-0e74-4cde-99b0-89dc434610f0"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:96bfe234-bf39-45f7-9b28-edd98441bb88",
- "resource": {
- "resourceType": "Encounter",
- "id": "96bfe234-bf39-45f7-9b28-edd98441bb88",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2018-08-10T18:09:51-04:00",
- "end": "2018-08-10T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f487a629-2254-4773-b4ae-7880487b28c0",
- "resource": {
- "resourceType": "Claim",
- "id": "f487a629-2254-4773-b4ae-7880487b28c0",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2018-08-10T18:09:51-04:00",
- "end": "2018-08-10T18:24:51-04:00"
- },
- "created": "2018-08-10T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:96bfe234-bf39-45f7-9b28-edd98441bb88"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:bca94dd6-221d-4c8b-b271-63c85645f76a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "bca94dd6-221d-4c8b-b271-63c85645f76a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f487a629-2254-4773-b4ae-7880487b28c0"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2018-08-10T18:24:51-04:00",
- "end": "2019-08-10T18:24:51-04:00"
- },
- "created": "2018-08-10T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f487a629-2254-4773-b4ae-7880487b28c0"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-08-10T18:09:51-04:00",
- "end": "2018-08-10T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:96bfe234-bf39-45f7-9b28-edd98441bb88"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:48be3677-6bc1-4c61-8fba-27ebcc6120a3",
- "resource": {
- "resourceType": "Encounter",
- "id": "48be3677-6bc1-4c61-8fba-27ebcc6120a3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2018-09-09T18:09:51-04:00",
- "end": "2018-09-09T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:3967974b-aa29-47dd-99f4-b05dc1c3e785",
- "resource": {
- "resourceType": "Claim",
- "id": "3967974b-aa29-47dd-99f4-b05dc1c3e785",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2018-09-09T18:09:51-04:00",
- "end": "2018-09-09T18:24:51-04:00"
- },
- "created": "2018-09-09T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:48be3677-6bc1-4c61-8fba-27ebcc6120a3"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:28d6a153-8e89-4545-a128-8972f02e9d37",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "28d6a153-8e89-4545-a128-8972f02e9d37",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3967974b-aa29-47dd-99f4-b05dc1c3e785"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2018-09-09T18:24:51-04:00",
- "end": "2019-09-09T18:24:51-04:00"
- },
- "created": "2018-09-09T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3967974b-aa29-47dd-99f4-b05dc1c3e785"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-09-09T18:09:51-04:00",
- "end": "2018-09-09T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:48be3677-6bc1-4c61-8fba-27ebcc6120a3"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:bdbbc93d-fb84-4dda-84b6-801f5ba364bc",
- "resource": {
- "resourceType": "Encounter",
- "id": "bdbbc93d-fb84-4dda-84b6-801f5ba364bc",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2018-10-09T18:09:51-04:00",
- "end": "2018-10-09T18:24:51-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:17aac195-302c-495e-b6b7-ae71528fee13",
- "resource": {
- "resourceType": "Claim",
- "id": "17aac195-302c-495e-b6b7-ae71528fee13",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2018-10-09T18:09:51-04:00",
- "end": "2018-10-09T18:24:51-04:00"
- },
- "created": "2018-10-09T18:24:51-04:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:bdbbc93d-fb84-4dda-84b6-801f5ba364bc"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:cbb3f6da-0faf-4cf5-a94a-f2fc3c5d3582",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "cbb3f6da-0faf-4cf5-a94a-f2fc3c5d3582",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "17aac195-302c-495e-b6b7-ae71528fee13"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2018-10-09T18:24:51-04:00",
- "end": "2019-10-09T18:24:51-04:00"
- },
- "created": "2018-10-09T18:24:51-04:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:17aac195-302c-495e-b6b7-ae71528fee13"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-10-09T18:09:51-04:00",
- "end": "2018-10-09T18:24:51-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:bdbbc93d-fb84-4dda-84b6-801f5ba364bc"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:fecd7632-9922-4593-aadf-f00108ee8257",
- "resource": {
- "resourceType": "Encounter",
- "id": "fecd7632-9922-4593-aadf-f00108ee8257",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2018-11-08T17:09:51-05:00",
- "end": "2018-11-08T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:3c1e18d1-2f21-4c50-9cc2-2488f18a44f1",
- "resource": {
- "resourceType": "Claim",
- "id": "3c1e18d1-2f21-4c50-9cc2-2488f18a44f1",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2018-11-08T17:09:51-05:00",
- "end": "2018-11-08T17:24:51-05:00"
- },
- "created": "2018-11-08T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:fecd7632-9922-4593-aadf-f00108ee8257"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:977802a1-aafa-4c51-aff0-fe0286f487a7",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "977802a1-aafa-4c51-aff0-fe0286f487a7",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3c1e18d1-2f21-4c50-9cc2-2488f18a44f1"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2018-11-08T17:24:51-05:00",
- "end": "2019-11-08T17:24:51-05:00"
- },
- "created": "2018-11-08T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3c1e18d1-2f21-4c50-9cc2-2488f18a44f1"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-11-08T17:09:51-05:00",
- "end": "2018-11-08T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:fecd7632-9922-4593-aadf-f00108ee8257"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c597d024-90e6-4407-a20e-c6a2e2e8e4cc",
- "resource": {
- "resourceType": "Encounter",
- "id": "c597d024-90e6-4407-a20e-c6a2e2e8e4cc",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2018-12-08T17:09:51-05:00",
- "end": "2018-12-08T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:04bc073e-2cbe-46e3-b58b-0ab430575857",
- "resource": {
- "resourceType": "Claim",
- "id": "04bc073e-2cbe-46e3-b58b-0ab430575857",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2018-12-08T17:09:51-05:00",
- "end": "2018-12-08T17:24:51-05:00"
- },
- "created": "2018-12-08T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c597d024-90e6-4407-a20e-c6a2e2e8e4cc"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3d22f8cf-2fa8-4e6d-9dc0-d6a314d31ecd",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3d22f8cf-2fa8-4e6d-9dc0-d6a314d31ecd",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "04bc073e-2cbe-46e3-b58b-0ab430575857"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2018-12-08T17:24:51-05:00",
- "end": "2019-12-08T17:24:51-05:00"
- },
- "created": "2018-12-08T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:04bc073e-2cbe-46e3-b58b-0ab430575857"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-12-08T17:09:51-05:00",
- "end": "2018-12-08T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c597d024-90e6-4407-a20e-c6a2e2e8e4cc"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f5a26de5-9837-439d-84bf-9940ae521712",
- "resource": {
- "resourceType": "Encounter",
- "id": "f5a26de5-9837-439d-84bf-9940ae521712",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2019-01-07T17:09:51-05:00",
- "end": "2019-01-07T17:24:51-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c0492dc5-a1da-4ad7-bf8f-388cc42a7b45",
- "resource": {
- "resourceType": "Claim",
- "id": "c0492dc5-a1da-4ad7-bf8f-388cc42a7b45",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2019-01-07T17:09:51-05:00",
- "end": "2019-01-07T17:24:51-05:00"
- },
- "created": "2019-01-07T17:24:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f5a26de5-9837-439d-84bf-9940ae521712"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:c0b1493e-2adf-4f95-8f6a-3d63e0fdfcbf",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "c0b1493e-2adf-4f95-8f6a-3d63e0fdfcbf",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c0492dc5-a1da-4ad7-bf8f-388cc42a7b45"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2019-01-07T17:24:51-05:00",
- "end": "2020-01-07T17:24:51-05:00"
- },
- "created": "2019-01-07T17:24:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c0492dc5-a1da-4ad7-bf8f-388cc42a7b45"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem (procedure)"
- }
- ],
- "text": "Encounter for problem (procedure)"
- },
- "servicedPeriod": {
- "start": "2019-01-07T17:09:51-05:00",
- "end": "2019-01-07T17:24:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f5a26de5-9837-439d-84bf-9940ae521712"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:d0935b60-8ea0-4b30-b2ce-913543dee963",
- "resource": {
- "resourceType": "Encounter",
- "id": "d0935b60-8ea0-4b30-b2ce-913543dee963",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2019-02-07T17:09:51-05:00",
- "end": "2019-02-07T17:54:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:11134fa2-2363-4617-8f4c-adbbc3e6a0cd",
- "resource": {
- "resourceType": "Condition",
- "id": "11134fa2-2363-4617-8f4c-adbbc3e6a0cd",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d0935b60-8ea0-4b30-b2ce-913543dee963"
- },
- "onsetDateTime": "2019-02-07T17:09:51-05:00",
- "abatementDateTime": "2019-02-14T17:09:51-05:00",
- "recordedDate": "2019-02-07T17:09:51-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:9b4d1474-9941-481b-a276-75ed0d1801b7",
- "resource": {
- "resourceType": "Condition",
- "id": "9b4d1474-9941-481b-a276-75ed0d1801b7",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "19169002",
- "display": "Miscarriage in first trimester"
- }
- ],
- "text": "Miscarriage in first trimester"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d0935b60-8ea0-4b30-b2ce-913543dee963"
- },
- "onsetDateTime": "2019-02-07T17:09:51-05:00",
- "recordedDate": "2019-02-07T17:09:51-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:529cd37a-9464-4978-be50-b13aeb383763",
- "resource": {
- "resourceType": "Condition",
- "id": "529cd37a-9464-4978-be50-b13aeb383763",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "35999006",
- "display": "Blighted ovum"
- }
- ],
- "text": "Blighted ovum"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d0935b60-8ea0-4b30-b2ce-913543dee963"
- },
- "onsetDateTime": "2019-02-07T17:09:51-05:00",
- "abatementDateTime": "2019-02-14T17:09:51-05:00",
- "recordedDate": "2019-02-07T17:09:51-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:aea98d4a-4dca-40b3-9f99-7f26b861520f",
- "resource": {
- "resourceType": "Procedure",
- "id": "aea98d4a-4dca-40b3-9f99-7f26b861520f",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d0935b60-8ea0-4b30-b2ce-913543dee963"
- },
- "performedPeriod": {
- "start": "2019-02-07T17:09:51-05:00",
- "end": "2019-02-07T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:11134fa2-2363-4617-8f4c-adbbc3e6a0cd",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:6a2f7d72-5391-47c0-a0ff-2b95674163fd",
- "resource": {
- "resourceType": "Procedure",
- "id": "6a2f7d72-5391-47c0-a0ff-2b95674163fd",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:d0935b60-8ea0-4b30-b2ce-913543dee963"
- },
- "performedPeriod": {
- "start": "2019-02-07T17:09:51-05:00",
- "end": "2019-02-07T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:11134fa2-2363-4617-8f4c-adbbc3e6a0cd",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:2eaf16d7-7a62-4d8b-8dea-5eb4008578e9",
- "resource": {
- "resourceType": "Claim",
- "id": "2eaf16d7-7a62-4d8b-8dea-5eb4008578e9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2019-02-07T17:09:51-05:00",
- "end": "2019-02-07T17:54:51-05:00"
- },
- "created": "2019-02-07T17:54:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:11134fa2-2363-4617-8f4c-adbbc3e6a0cd"
- }
- },
- {
- "sequence": 2,
- "diagnosisReference": {
- "reference": "urn:uuid:9b4d1474-9941-481b-a276-75ed0d1801b7"
- }
- },
- {
- "sequence": 3,
- "diagnosisReference": {
- "reference": "urn:uuid:529cd37a-9464-4978-be50-b13aeb383763"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:aea98d4a-4dca-40b3-9f99-7f26b861520f"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:6a2f7d72-5391-47c0-a0ff-2b95674163fd"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d0935b60-8ea0-4b30-b2ce-913543dee963"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "net": {
- "value": 9329.03,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "net": {
- "value": 12191.71,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "diagnosisSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "19169002",
- "display": "Miscarriage in first trimester"
- }
- ],
- "text": "Miscarriage in first trimester"
- }
- },
- {
- "sequence": 6,
- "diagnosisSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "35999006",
- "display": "Blighted ovum"
- }
- ],
- "text": "Blighted ovum"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3fa29a63-4093-40f5-b27d-d6f520a5ec1b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3fa29a63-4093-40f5-b27d-d6f520a5ec1b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "2eaf16d7-7a62-4d8b-8dea-5eb4008578e9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2019-02-07T17:54:51-05:00",
- "end": "2020-02-07T17:54:51-05:00"
- },
- "created": "2019-02-07T17:54:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:2eaf16d7-7a62-4d8b-8dea-5eb4008578e9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:11134fa2-2363-4617-8f4c-adbbc3e6a0cd"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisReference": {
- "reference": "urn:uuid:9b4d1474-9941-481b-a276-75ed0d1801b7"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- },
- {
- "sequence": 3,
- "diagnosisReference": {
- "reference": "urn:uuid:529cd37a-9464-4978-be50-b13aeb383763"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424441002",
- "display": "Prenatal initial visit"
- }
- ],
- "text": "Prenatal initial visit"
- },
- "servicedPeriod": {
- "start": "2019-02-07T17:09:51-05:00",
- "end": "2019-02-07T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:d0935b60-8ea0-4b30-b2ce-913543dee963"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "72892002",
- "display": "Normal pregnancy"
- }
- ],
- "text": "Normal pregnancy"
- },
- "servicedPeriod": {
- "start": "2019-02-07T17:09:51-05:00",
- "end": "2019-02-07T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "252160004",
- "display": "Standard pregnancy test"
- }
- ],
- "text": "Standard pregnancy test"
- },
- "servicedPeriod": {
- "start": "2019-02-07T17:09:51-05:00",
- "end": "2019-02-07T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 9329.03,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1865.8060000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 7463.224000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9329.03,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9329.03,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "169230002",
- "display": "Ultrasound scan for fetal viability"
- }
- ],
- "text": "Ultrasound scan for fetal viability"
- },
- "servicedPeriod": {
- "start": "2019-02-07T17:09:51-05:00",
- "end": "2019-02-07T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 12191.71,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2438.342,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 9753.368,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 12191.71,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 12191.71,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "diagnosisSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "19169002",
- "display": "Miscarriage in first trimester"
- }
- ],
- "text": "Miscarriage in first trimester"
- },
- "servicedPeriod": {
- "start": "2019-02-07T17:09:51-05:00",
- "end": "2019-02-07T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 6,
- "diagnosisSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "35999006",
- "display": "Blighted ovum"
- }
- ],
- "text": "Blighted ovum"
- },
- "servicedPeriod": {
- "start": "2019-02-07T17:09:51-05:00",
- "end": "2019-02-07T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 17216.592,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:fdadf21c-a20c-4a78-b7c0-f858c2649caf",
- "resource": {
- "resourceType": "Encounter",
- "id": "fdadf21c-a20c-4a78-b7c0-f858c2649caf",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- }
- ],
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Mrs. Donnette259 Sporer811"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190",
- "display": "Dr. Stephaine613 Hoeger474"
- }
- }
- ],
- "period": {
- "start": "2019-02-14T17:09:51-05:00",
- "end": "2019-02-14T17:54:51-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "35999006",
- "display": "Blighted ovum"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b7ff39bd-7ac2-4ff7-940d-92919e3d00f1",
- "resource": {
- "resourceType": "Procedure",
- "id": "b7ff39bd-7ac2-4ff7-940d-92919e3d00f1",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination"
- }
- ],
- "text": "Physical examination"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:fdadf21c-a20c-4a78-b7c0-f858c2649caf"
- },
- "performedPeriod": {
- "start": "2019-02-14T17:09:51-05:00",
- "end": "2019-02-14T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:11134fa2-2363-4617-8f4c-adbbc3e6a0cd",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:e0aa37a3-a879-4e61-96b5-c1878bc23d05",
- "resource": {
- "resourceType": "Procedure",
- "id": "e0aa37a3-a879-4e61-96b5-c1878bc23d05",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "encounter": {
- "reference": "urn:uuid:fdadf21c-a20c-4a78-b7c0-f858c2649caf"
- },
- "performedPeriod": {
- "start": "2019-02-14T17:09:51-05:00",
- "end": "2019-02-14T17:24:51-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:727f1f6d-a6d2-4149-9d77-5f9c4aaf25d9",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:3f6d061e-1b0c-4e2b-a41d-0bd6b54c6875",
- "display": "Normal pregnancy"
- },
- {
- "reference": "urn:uuid:11134fa2-2363-4617-8f4c-adbbc3e6a0cd",
- "display": "Normal pregnancy"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:8f817c91-9ffd-4843-8b19-3b860a6c890e",
- "resource": {
- "resourceType": "Claim",
- "id": "8f817c91-9ffd-4843-8b19-3b860a6c890e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32",
- "display": "Donnette259 Sporer811"
- },
- "billablePeriod": {
- "start": "2019-02-14T17:09:51-05:00",
- "end": "2019-02-14T17:54:51-05:00"
- },
- "created": "2019-02-14T17:54:51-05:00",
- "provider": {
- "reference": "urn:uuid:ac8356a5-78f8-3a63-8a1e-59e832fd54e7",
- "display": "NASHOBA VALLEY MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:b7ff39bd-7ac2-4ff7-940d-92919e3d00f1"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:e0aa37a3-a879-4e61-96b5-c1878bc23d05"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "encounter": [
- {
- "reference": "urn:uuid:fdadf21c-a20c-4a78-b7c0-f858c2649caf"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination"
- }
- ],
- "text": "Physical examination"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:2a47e4b3-680a-4f9e-b88e-addc957c58d5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "2a47e4b3-680a-4f9e-b88e-addc957c58d5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicaid"
- },
- "beneficiary": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "payor": [
- {
- "display": "Medicaid"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "8f817c91-9ffd-4843-8b19-3b860a6c890e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:74d801e7-3ab7-4fae-ba82-a33a89340f32"
- },
- "billablePeriod": {
- "start": "2019-02-14T17:54:51-05:00",
- "end": "2020-02-14T17:54:51-05:00"
- },
- "created": "2019-02-14T17:54:51-05:00",
- "insurer": {
- "display": "Medicaid"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:8f817c91-9ffd-4843-8b19-3b860a6c890e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000190"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicaid"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "424619006",
- "display": "Prenatal visit"
- }
- ],
- "text": "Prenatal visit"
- },
- "servicedPeriod": {
- "start": "2019-02-14T17:09:51-05:00",
- "end": "2019-02-14T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:fdadf21c-a20c-4a78-b7c0-f858c2649caf"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "5880005",
- "display": "Physical examination"
- }
- ],
- "text": "Physical examination"
- },
- "servicedPeriod": {
- "start": "2019-02-14T17:09:51-05:00",
- "end": "2019-02-14T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "171207006",
- "display": "Depression screening"
- }
- ],
- "text": "Depression screening"
- },
- "servicedPeriod": {
- "start": "2019-02-14T17:09:51-05:00",
- "end": "2019-02-14T17:54:51-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 826.64,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- }
- ]
-}
diff --git a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Gregory545_Reynolds644_ae5b3987-68f9-4008-af13-e63d18b98c5f.json b/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Gregory545_Reynolds644_ae5b3987-68f9-4008-af13-e63d18b98c5f.json
deleted file mode 100644
index 0ebd5086..00000000
--- a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Gregory545_Reynolds644_ae5b3987-68f9-4008-af13-e63d18b98c5f.json
+++ /dev/null
@@ -1,12078 +0,0 @@
-{
- "resourceType": "Bundle",
- "type": "transaction",
- "entry": [
- {
- "fullUrl": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "resource": {
- "resourceType": "Patient",
- "id": "1c81d708-bf61-44a3-82f3-1500ad965538",
- "text": {
- "status": "generated",
- "div": "Generated by
Synthea.Version identifier: v2.4.0-404-ge7ce2295\n . Person seed: 4482083831205177148 Population seed: 0
"
- },
- "extension": [
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2106-3",
- "display": "White"
- }
- },
- {
- "url": "text",
- "valueString": "White"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
- }
- },
- {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
- "valueString": "Majorie11 Marquardt819"
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
- "valueCode": "M"
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
- "valueAddress": {
- "city": "Methuen",
- "state": "Massachusetts",
- "country": "US"
- }
- },
- {
- "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
- "valueDecimal": 0.0
- },
- {
- "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
- "valueDecimal": 30.0
- }
- ],
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "ae5b3987-68f9-4008-af13-e63d18b98c5f"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "MR",
- "display": "Medical Record Number"
- }
- ],
- "text": "Medical Record Number"
- },
- "system": "http://hospital.smarthealthit.org",
- "value": "ae5b3987-68f9-4008-af13-e63d18b98c5f"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "SS",
- "display": "Social Security Number"
- }
- ],
- "text": "Social Security Number"
- },
- "system": "http://hl7.org/fhir/sid/us-ssn",
- "value": "999-92-6210"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "DL",
- "display": "Driver's License"
- }
- ],
- "text": "Driver's License"
- },
- "system": "urn:oid:2.16.840.1.113883.4.3.25",
- "value": "S99911584"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PPN",
- "display": "Passport Number"
- }
- ],
- "text": "Passport Number"
- },
- "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber",
- "value": "X34486008X"
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "Reynolds644",
- "given": [
- "Gregory545"
- ],
- "prefix": [
- "Mr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "phone",
- "value": "555-335-5042",
- "use": "home"
- }
- ],
- "gender": "male",
- "birthDate": "1988-08-16",
- "address": [
- {
- "extension": [
- {
- "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
- "extension": [
- {
- "url": "latitude",
- "valueDecimal": 42.18175858378396
- },
- {
- "url": "longitude",
- "valueDecimal": -72.44024567312613
- }
- ]
- }
- ],
- "line": [
- "891 Von Bridge Unit 62"
- ],
- "city": "Springfield",
- "state": "Massachusetts",
- "postalCode": "01013",
- "country": "US"
- }
- ],
- "maritalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
- "code": "M",
- "display": "M"
- }
- ],
- "text": "M"
- },
- "multipleBirthBoolean": false,
- "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English"
- }
- ],
- "text": "English"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Patient"
- }
- },
- {
- "fullUrl": "urn:uuid:9c87cfde-bd50-3911-85fe-1fea5bfcf49e",
- "resource": {
- "resourceType": "Organization",
- "id": "9c87cfde-bd50-3911-85fe-1fea5bfcf49e",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "9c87cfde-bd50-3911-85fe-1fea5bfcf49e"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "PCP23049",
- "telecom": [
- {
- "system": "phone",
- "value": "413-583-3308"
- }
- ],
- "address": [
- {
- "line": [
- "733 CHAPIN ST"
- ],
- "city": "LUDLOW",
- "state": "MA",
- "postalCode": "01056-1900",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-000000003b74",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "15220"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Rogahn59",
- "given": [
- "Oswaldo857"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Oswaldo857.Rogahn59@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "733 CHAPIN ST"
- ],
- "city": "LUDLOW",
- "state": "MA",
- "postalCode": "01056-1900",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a",
- "resource": {
- "resourceType": "Encounter",
- "id": "eb6c4da9-5ae2-492d-b504-afe46798fc3a",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74",
- "display": "Dr. Oswaldo857 Rogahn59"
- }
- }
- ],
- "period": {
- "start": "2010-10-19T12:08:24-04:00",
- "end": "2010-10-19T12:23:24-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:9c87cfde-bd50-3911-85fe-1fea5bfcf49e",
- "display": "PCP23049"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:db2c3509-1118-4e6f-975b-5e401a4fd04c",
- "resource": {
- "resourceType": "Observation",
- "id": "db2c3509-1118-4e6f-975b-5e401a4fd04c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 169.165240071369,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b4e996d3-3d06-4c01-a857-a7df8d324d8c",
- "resource": {
- "resourceType": "Observation",
- "id": "b4e996d3-3d06-4c01-a857-a7df8d324d8c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 2.8425751019359247,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1f913330-d618-414e-af9d-98ead039dad5",
- "resource": {
- "resourceType": "Observation",
- "id": "1f913330-d618-414e-af9d-98ead039dad5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 61.938160734559084,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:62f14fee-3755-42fc-bcda-ab7e273a8b5f",
- "resource": {
- "resourceType": "Observation",
- "id": "62f14fee-3755-42fc-bcda-ab7e273a8b5f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 21.643926274570195,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:63f9d743-8da9-420d-9cc5-9c230e21ee32",
- "resource": {
- "resourceType": "Observation",
- "id": "63f9d743-8da9-420d-9cc5-9c230e21ee32",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 74.35938039357528,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 116.61787318656222,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:da992859-30e1-4cc1-bd2a-02eb05d22784",
- "resource": {
- "resourceType": "Observation",
- "id": "da992859-30e1-4cc1-bd2a-02eb05d22784",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 9.016330679614809,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1e7bcb2b-8488-484f-9b96-4fdf6c6147a3",
- "resource": {
- "resourceType": "Observation",
- "id": "1e7bcb2b-8488-484f-9b96-4fdf6c6147a3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 3.9023786858499068,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:41f2fb67-9bb5-4f95-b944-71c844dc63a2",
- "resource": {
- "resourceType": "Observation",
- "id": "41f2fb67-9bb5-4f95-b944-71c844dc63a2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 13.601703270673163,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c9434f8f-c773-40a2-97d5-5757f2acee04",
- "resource": {
- "resourceType": "Observation",
- "id": "c9434f8f-c773-40a2-97d5-5757f2acee04",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 44.14088371105339,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:69e46984-d898-4891-baa0-0fb714c61f94",
- "resource": {
- "resourceType": "Observation",
- "id": "69e46984-d898-4891-baa0-0fb714c61f94",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 81.21892940685284,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:993e711e-4537-4a7e-b37b-64252d1951f0",
- "resource": {
- "resourceType": "Observation",
- "id": "993e711e-4537-4a7e-b37b-64252d1951f0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 27.228657654577898,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2f591889-b3d5-46cd-9020-6c6ca6c34564",
- "resource": {
- "resourceType": "Observation",
- "id": "2f591889-b3d5-46cd-9020-6c6ca6c34564",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 35.33657221831348,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2db459c3-b8cf-408c-9397-31498c44b05b",
- "resource": {
- "resourceType": "Observation",
- "id": "2db459c3-b8cf-408c-9397-31498c44b05b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 43.07205025124621,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:74adc40c-c5b2-4d20-b28d-d1bbb0895046",
- "resource": {
- "resourceType": "Observation",
- "id": "74adc40c-c5b2-4d20-b28d-d1bbb0895046",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 301.9329114621585,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a5dfe020-94d7-4edc-9e1d-64f435bcd0bb",
- "resource": {
- "resourceType": "Observation",
- "id": "a5dfe020-94d7-4edc-9e1d-64f435bcd0bb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 341.56218455554097,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:be74a093-87e3-4eed-8f32-32a18249803e",
- "resource": {
- "resourceType": "Observation",
- "id": "be74a093-87e3-4eed-8f32-32a18249803e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 11.342977443867182,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:21bfa329-853a-4ff0-bee3-7e3f8175b4b7",
- "resource": {
- "resourceType": "Observation",
- "id": "21bfa329-853a-4ff0-bee3-7e3f8175b4b7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6072a47b-37a9-446d-9102-5d27ab5b28e1",
- "resource": {
- "resourceType": "Immunization",
- "id": "6072a47b-37a9-446d-9102-5d27ab5b28e1",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "occurrenceDateTime": "2010-10-19T12:08:24-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:96e6158e-203b-48f1-b4f9-0c0593c7cd56",
- "resource": {
- "resourceType": "Immunization",
- "id": "96e6158e-203b-48f1-b4f9-0c0593c7cd56",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "occurrenceDateTime": "2010-10-19T12:08:24-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:006be845-6cdd-4ce4-a346-dff4b9f7e249",
- "resource": {
- "resourceType": "Immunization",
- "id": "006be845-6cdd-4ce4-a346-dff4b9f7e249",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "43",
- "display": "Hep B, adult"
- }
- ],
- "text": "Hep B, adult"
- },
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "occurrenceDateTime": "2010-10-19T12:08:24-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:8285563f-56bd-41e8-8a0e-af08ddfbb608",
- "resource": {
- "resourceType": "Immunization",
- "id": "8285563f-56bd-41e8-8a0e-af08ddfbb608",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "occurrenceDateTime": "2010-10-19T12:08:24-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:41d0d978-67dc-412f-befb-3783279d4a21",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "41d0d978-67dc-412f-befb-3783279d4a21",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- },
- "effectiveDateTime": "2010-10-19T12:08:24-04:00",
- "issued": "2010-10-19T12:08:24.316-04:00",
- "result": [
- {
- "reference": "urn:uuid:da992859-30e1-4cc1-bd2a-02eb05d22784",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:1e7bcb2b-8488-484f-9b96-4fdf6c6147a3",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:41f2fb67-9bb5-4f95-b944-71c844dc63a2",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:c9434f8f-c773-40a2-97d5-5757f2acee04",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:69e46984-d898-4891-baa0-0fb714c61f94",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:993e711e-4537-4a7e-b37b-64252d1951f0",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:2f591889-b3d5-46cd-9020-6c6ca6c34564",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:2db459c3-b8cf-408c-9397-31498c44b05b",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:74adc40c-c5b2-4d20-b28d-d1bbb0895046",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:a5dfe020-94d7-4edc-9e1d-64f435bcd0bb",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:be74a093-87e3-4eed-8f32-32a18249803e",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:f2d27737-5992-44b8-8a21-a8eb61eadf65",
- "resource": {
- "resourceType": "Claim",
- "id": "f2d27737-5992-44b8-8a21-a8eb61eadf65",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2010-10-19T12:08:24-04:00",
- "end": "2010-10-19T12:23:24-04:00"
- },
- "created": "2010-10-19T12:23:24-04:00",
- "provider": {
- "reference": "urn:uuid:9c87cfde-bd50-3911-85fe-1fea5bfcf49e",
- "display": "PCP23049"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:6072a47b-37a9-446d-9102-5d27ab5b28e1"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:96e6158e-203b-48f1-b4f9-0c0593c7cd56"
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:006be845-6cdd-4ce4-a346-dff4b9f7e249"
- }
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:8285563f-56bd-41e8-8a0e-af08ddfbb608"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "43",
- "display": "Hep B, adult"
- }
- ],
- "text": "Hep B, adult"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9b66799c-e2c5-41ed-928e-faafbe9ef2df",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9b66799c-e2c5-41ed-928e-faafbe9ef2df",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f2d27737-5992-44b8-8a21-a8eb61eadf65"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2010-10-19T12:23:24-04:00",
- "end": "2011-10-19T12:23:24-04:00"
- },
- "created": "2010-10-19T12:23:24-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f2d27737-5992-44b8-8a21-a8eb61eadf65"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-10-19T12:08:24-04:00",
- "end": "2010-10-19T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:eb6c4da9-5ae2-492d-b504-afe46798fc3a"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2010-10-19T12:08:24-04:00",
- "end": "2010-10-19T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "servicedPeriod": {
- "start": "2010-10-19T12:08:24-04:00",
- "end": "2010-10-19T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "43",
- "display": "Hep B, adult"
- }
- ],
- "text": "Hep B, adult"
- },
- "servicedPeriod": {
- "start": "2010-10-19T12:08:24-04:00",
- "end": "2010-10-19T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "servicedPeriod": {
- "start": "2010-10-19T12:08:24-04:00",
- "end": "2010-10-19T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 449.66400000000004,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "resource": {
- "resourceType": "Organization",
- "id": "5103c940-0c08-392f-95cd-446e0cea042a",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "5103c940-0c08-392f-95cd-446e0cea042a"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "SHRINERS' HOSPITAL FOR CHILDREN (THE)",
- "telecom": [
- {
- "system": "phone",
- "value": "4137872000"
- }
- ],
- "address": [
- {
- "line": [
- "516 CAREW STREET"
- ],
- "city": "SPRINGFIELD",
- "state": "MA",
- "postalCode": "01104",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-000000000262",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "610"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Treutel973",
- "given": [
- "Timmy68"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Timmy68.Treutel973@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "516 CAREW STREET"
- ],
- "city": "SPRINGFIELD",
- "state": "MA",
- "postalCode": "01104",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:3de407fa-1f15-4657-9a1f-ddaea04a511e",
- "resource": {
- "resourceType": "Encounter",
- "id": "3de407fa-1f15-4657-9a1f-ddaea04a511e",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "display": "Dr. Timmy68 Treutel973"
- }
- }
- ],
- "period": {
- "start": "2010-11-11T11:08:24-05:00",
- "end": "2010-11-11T11:23:24-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a7213f98-eade-4e25-82a7-59c308306176",
- "resource": {
- "resourceType": "Condition",
- "id": "a7213f98-eade-4e25-82a7-59c308306176",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:3de407fa-1f15-4657-9a1f-ddaea04a511e"
- },
- "onsetDateTime": "2010-11-11T11:08:24-05:00",
- "abatementDateTime": "2010-11-18T11:08:24-05:00",
- "recordedDate": "2010-11-11T11:08:24-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:8adb5eb2-f215-479b-8efc-1253fa0cab7b",
- "resource": {
- "resourceType": "Claim",
- "id": "8adb5eb2-f215-479b-8efc-1253fa0cab7b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2010-11-11T11:08:24-05:00",
- "end": "2010-11-11T11:23:24-05:00"
- },
- "created": "2010-11-11T11:23:24-05:00",
- "provider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:a7213f98-eade-4e25-82a7-59c308306176"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3de407fa-1f15-4657-9a1f-ddaea04a511e"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0d96d99f-d20c-4e30-b1ed-66277fcfd327",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0d96d99f-d20c-4e30-b1ed-66277fcfd327",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "8adb5eb2-f215-479b-8efc-1253fa0cab7b"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2010-11-11T11:23:24-05:00",
- "end": "2011-11-11T11:23:24-05:00"
- },
- "created": "2010-11-11T11:23:24-05:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:8adb5eb2-f215-479b-8efc-1253fa0cab7b"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:a7213f98-eade-4e25-82a7-59c308306176"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2010-11-11T11:08:24-05:00",
- "end": "2010-11-11T11:23:24-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3de407fa-1f15-4657-9a1f-ddaea04a511e"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2010-11-11T11:08:24-05:00",
- "end": "2010-11-11T11:23:24-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:6dea2d02-c145-4a12-9806-21399443f5cf",
- "resource": {
- "resourceType": "Encounter",
- "id": "6dea2d02-c145-4a12-9806-21399443f5cf",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "display": "Dr. Timmy68 Treutel973"
- }
- }
- ],
- "period": {
- "start": "2011-04-23T12:08:24-04:00",
- "end": "2011-04-23T12:23:24-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d4c7d679-5d14-430e-a925-e0d0fd4ce149",
- "resource": {
- "resourceType": "Condition",
- "id": "d4c7d679-5d14-430e-a925-e0d0fd4ce149",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:6dea2d02-c145-4a12-9806-21399443f5cf"
- },
- "onsetDateTime": "2011-04-23T12:08:24-04:00",
- "abatementDateTime": "2011-04-30T12:08:24-04:00",
- "recordedDate": "2011-04-23T12:08:24-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:f306a813-0af4-44af-9c95-3bf7ae9dfd93",
- "resource": {
- "resourceType": "Claim",
- "id": "f306a813-0af4-44af-9c95-3bf7ae9dfd93",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2011-04-23T12:08:24-04:00",
- "end": "2011-04-23T12:23:24-04:00"
- },
- "created": "2011-04-23T12:23:24-04:00",
- "provider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:d4c7d679-5d14-430e-a925-e0d0fd4ce149"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:6dea2d02-c145-4a12-9806-21399443f5cf"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:922640ea-c514-49af-97fc-0c0ae6cd4bf3",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "922640ea-c514-49af-97fc-0c0ae6cd4bf3",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f306a813-0af4-44af-9c95-3bf7ae9dfd93"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2011-04-23T12:23:24-04:00",
- "end": "2012-04-23T12:23:24-04:00"
- },
- "created": "2011-04-23T12:23:24-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f306a813-0af4-44af-9c95-3bf7ae9dfd93"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:d4c7d679-5d14-430e-a925-e0d0fd4ce149"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2011-04-23T12:08:24-04:00",
- "end": "2011-04-23T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:6dea2d02-c145-4a12-9806-21399443f5cf"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2011-04-23T12:08:24-04:00",
- "end": "2011-04-23T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:98e8b5cf-ebf4-4dd1-9efe-6ed24bb777cc",
- "resource": {
- "resourceType": "Encounter",
- "id": "98e8b5cf-ebf4-4dd1-9efe-6ed24bb777cc",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74",
- "display": "Dr. Oswaldo857 Rogahn59"
- }
- }
- ],
- "period": {
- "start": "2013-10-22T12:08:24-04:00",
- "end": "2013-10-22T12:23:24-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:9c87cfde-bd50-3911-85fe-1fea5bfcf49e",
- "display": "PCP23049"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:09f21939-3f90-48e4-8469-92b2b98f0993",
- "resource": {
- "resourceType": "Observation",
- "id": "09f21939-3f90-48e4-8469-92b2b98f0993",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:98e8b5cf-ebf4-4dd1-9efe-6ed24bb777cc"
- },
- "effectiveDateTime": "2013-10-22T12:08:24-04:00",
- "issued": "2013-10-22T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 169.165240071369,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0ad557b0-3ec1-4a3f-b6d6-1b32fd77f8d4",
- "resource": {
- "resourceType": "Observation",
- "id": "0ad557b0-3ec1-4a3f-b6d6-1b32fd77f8d4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:98e8b5cf-ebf4-4dd1-9efe-6ed24bb777cc"
- },
- "effectiveDateTime": "2013-10-22T12:08:24-04:00",
- "issued": "2013-10-22T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 3.2340595992594006,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ab23223d-3b4b-4901-a89d-9cf3e1fe7712",
- "resource": {
- "resourceType": "Observation",
- "id": "ab23223d-3b4b-4901-a89d-9cf3e1fe7712",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:98e8b5cf-ebf4-4dd1-9efe-6ed24bb777cc"
- },
- "effectiveDateTime": "2013-10-22T12:08:24-04:00",
- "issued": "2013-10-22T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 66.64489514534353,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a7421210-1da0-44c1-b4b2-2fe4aa224521",
- "resource": {
- "resourceType": "Observation",
- "id": "a7421210-1da0-44c1-b4b2-2fe4aa224521",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:98e8b5cf-ebf4-4dd1-9efe-6ed24bb777cc"
- },
- "effectiveDateTime": "2013-10-22T12:08:24-04:00",
- "issued": "2013-10-22T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 23.288666954190674,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:599ae8a2-34cd-4cee-a520-a1c42e2af2bc",
- "resource": {
- "resourceType": "Observation",
- "id": "599ae8a2-34cd-4cee-a520-a1c42e2af2bc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:98e8b5cf-ebf4-4dd1-9efe-6ed24bb777cc"
- },
- "effectiveDateTime": "2013-10-22T12:08:24-04:00",
- "issued": "2013-10-22T12:08:24.316-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 74.64237262461636,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 102.76174757789352,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f46300ad-78ac-4d60-ba8d-1b87c4c47916",
- "resource": {
- "resourceType": "Observation",
- "id": "f46300ad-78ac-4d60-ba8d-1b87c4c47916",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:98e8b5cf-ebf4-4dd1-9efe-6ed24bb777cc"
- },
- "effectiveDateTime": "2013-10-22T12:08:24-04:00",
- "issued": "2013-10-22T12:08:24.316-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:35027279-429a-444a-890b-1c001e486b99",
- "resource": {
- "resourceType": "Immunization",
- "id": "35027279-429a-444a-890b-1c001e486b99",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:98e8b5cf-ebf4-4dd1-9efe-6ed24bb777cc"
- },
- "occurrenceDateTime": "2013-10-22T12:08:24-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:6eaddc59-a00d-4a4d-a3df-9c9b002f164a",
- "resource": {
- "resourceType": "Claim",
- "id": "6eaddc59-a00d-4a4d-a3df-9c9b002f164a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2013-10-22T12:08:24-04:00",
- "end": "2013-10-22T12:23:24-04:00"
- },
- "created": "2013-10-22T12:23:24-04:00",
- "provider": {
- "reference": "urn:uuid:9c87cfde-bd50-3911-85fe-1fea5bfcf49e",
- "display": "PCP23049"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:35027279-429a-444a-890b-1c001e486b99"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:98e8b5cf-ebf4-4dd1-9efe-6ed24bb777cc"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:141b1b88-2f0b-479a-b9a4-a558ba09f97e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "141b1b88-2f0b-479a-b9a4-a558ba09f97e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "6eaddc59-a00d-4a4d-a3df-9c9b002f164a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2013-10-22T12:23:24-04:00",
- "end": "2014-10-22T12:23:24-04:00"
- },
- "created": "2013-10-22T12:23:24-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:6eaddc59-a00d-4a4d-a3df-9c9b002f164a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2013-10-22T12:08:24-04:00",
- "end": "2013-10-22T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:98e8b5cf-ebf4-4dd1-9efe-6ed24bb777cc"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2013-10-22T12:08:24-04:00",
- "end": "2013-10-22T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:60457c13-adb2-3415-82c5-86ab5dab5f93",
- "resource": {
- "resourceType": "Organization",
- "id": "60457c13-adb2-3415-82c5-86ab5dab5f93",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "60457c13-adb2-3415-82c5-86ab5dab5f93"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "BAYSTATE MEDICAL CENTER",
- "telecom": [
- {
- "system": "phone",
- "value": "4137940000"
- }
- ],
- "address": [
- {
- "line": [
- "759 CHESTNUT STREET"
- ],
- "city": "SPRINGFIELD",
- "state": "MA",
- "postalCode": "01199",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-000000000140",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-000000000140",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "320"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Pacocha935",
- "given": [
- "Mira443"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Mira443.Pacocha935@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "759 CHESTNUT STREET"
- ],
- "city": "SPRINGFIELD",
- "state": "MA",
- "postalCode": "01199",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04",
- "resource": {
- "resourceType": "Encounter",
- "id": "fddd7a8e-e739-4327-9803-cd8f6cc97f04",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency room admission (procedure)"
- }
- ],
- "text": "Emergency room admission (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140",
- "display": "Dr. Mira443 Pacocha935"
- }
- }
- ],
- "period": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2014-10-13T14:38:24-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:60457c13-adb2-3415-82c5-86ab5dab5f93",
- "display": "BAYSTATE MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:3b85a668-13f2-46f2-9d13-e420c53bb260",
- "resource": {
- "resourceType": "Condition",
- "id": "3b85a668-13f2-46f2-9d13-e420c53bb260",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "359817006",
- "display": "Closed fracture of hip"
- }
- ],
- "text": "Closed fracture of hip"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- },
- "onsetDateTime": "2014-10-13T12:08:24-04:00",
- "abatementDateTime": "2015-01-11T11:08:24-05:00",
- "recordedDate": "2014-10-13T12:08:24-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:0cec50f6-394b-4bde-89f4-8032d5ab7cd1",
- "resource": {
- "resourceType": "Procedure",
- "id": "0cec50f6-394b-4bde-89f4-8032d5ab7cd1",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "268425006",
- "display": "Pelvis X-ray"
- }
- ],
- "text": "Pelvis X-ray"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- },
- "performedPeriod": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2014-10-13T12:38:24-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:b42056d5-81b4-41ca-82c1-6926953d1ff7",
- "resource": {
- "resourceType": "Procedure",
- "id": "b42056d5-81b4-41ca-82c1-6926953d1ff7",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "305428000",
- "display": "Admission to orthopedic department"
- }
- ],
- "text": "Admission to orthopedic department"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- },
- "performedPeriod": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2014-10-13T13:08:24-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:3b85a668-13f2-46f2-9d13-e420c53bb260",
- "display": "Closed fracture of hip"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:d60d6b95-2947-4821-b664-f6918d8e6110",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "d60d6b95-2947-4821-b664-f6918d8e6110",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "1049221",
- "display": "Acetaminophen 325 MG / oxyCODONE Hydrochloride 5 MG Oral Tablet"
- }
- ],
- "text": "Acetaminophen 325 MG / oxyCODONE Hydrochloride 5 MG Oral Tablet"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- },
- "authoredOn": "2014-10-13T12:08:24-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140",
- "display": "Dr. Mira443 Pacocha935"
- },
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 6.0,
- "periodUnit": "h"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:bdc15811-b5bd-46bc-87c6-8bf5119fa4cb",
- "resource": {
- "resourceType": "Claim",
- "id": "bdc15811-b5bd-46bc-87c6-8bf5119fa4cb",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2014-10-13T14:38:24-04:00"
- },
- "created": "2014-10-13T14:38:24-04:00",
- "provider": {
- "reference": "urn:uuid:60457c13-adb2-3415-82c5-86ab5dab5f93",
- "display": "BAYSTATE MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:d60d6b95-2947-4821-b664-f6918d8e6110"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency room admission (procedure)"
- }
- ],
- "text": "Emergency room admission (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- }
- ]
- }
- ],
- "total": {
- "value": 1255.59,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:bf34ead8-a01b-45f8-8bdf-b98af0172b37",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "bf34ead8-a01b-45f8-8bdf-b98af0172b37",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "849574",
- "display": "Naproxen sodium 220 MG Oral Tablet"
- }
- ],
- "text": "Naproxen sodium 220 MG Oral Tablet"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- },
- "authoredOn": "2014-10-13T12:08:24-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140",
- "display": "Dr. Mira443 Pacocha935"
- },
- "dosageInstruction": [
- {
- "sequence": 1,
- "asNeededBoolean": true
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:d91406d0-7620-48e4-adff-ebdcc135ae90",
- "resource": {
- "resourceType": "Claim",
- "id": "d91406d0-7620-48e4-adff-ebdcc135ae90",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2014-10-13T14:38:24-04:00"
- },
- "created": "2014-10-13T14:38:24-04:00",
- "provider": {
- "reference": "urn:uuid:60457c13-adb2-3415-82c5-86ab5dab5f93",
- "display": "BAYSTATE MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:bf34ead8-a01b-45f8-8bdf-b98af0172b37"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency room admission (procedure)"
- }
- ],
- "text": "Emergency room admission (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- }
- ]
- }
- ],
- "total": {
- "value": 16.53,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1ce6d98c-04da-4db8-9313-4ea9ff0aa8fd",
- "resource": {
- "resourceType": "CareTeam",
- "id": "1ce6d98c-04da-4db8-9313-4ea9ff0aa8fd",
- "status": "inactive",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- },
- "period": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2015-01-11T11:08:24-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140",
- "display": "Dr. Mira443 Pacocha935"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:60457c13-adb2-3415-82c5-86ab5dab5f93",
- "display": "BAYSTATE MEDICAL CENTER"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "359817006",
- "display": "Closed fracture of hip"
- }
- ],
- "text": "Closed fracture of hip"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:60457c13-adb2-3415-82c5-86ab5dab5f93",
- "display": "BAYSTATE MEDICAL CENTER"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:cc4abc95-e32c-4b8b-bdcd-8f0b2c450ba9",
- "resource": {
- "resourceType": "CarePlan",
- "id": "cc4abc95-e32c-4b8b-bdcd-8f0b2c450ba9",
- "text": {
- "status": "generated",
- "div": "Care Plan for Fracture care.
Activities:
- Fracture care
- Fracture care
Care plan is meant to treat Closed fracture of hip.
"
- },
- "status": "completed",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "385691007",
- "display": "Fracture care"
- }
- ],
- "text": "Fracture care"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- },
- "period": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2015-01-11T11:08:24-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:1ce6d98c-04da-4db8-9313-4ea9ff0aa8fd"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:3b85a668-13f2-46f2-9d13-e420c53bb260"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183051005",
- "display": "Recommendation to rest"
- }
- ],
- "text": "Recommendation to rest"
- },
- "status": "completed",
- "location": {
- "display": "BAYSTATE MEDICAL CENTER"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "408580007",
- "display": "Physical activity target light exercise"
- }
- ],
- "text": "Physical activity target light exercise"
- },
- "status": "completed",
- "location": {
- "display": "BAYSTATE MEDICAL CENTER"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:66c116d6-1f1e-43e1-b7e8-41d46fa3d669",
- "resource": {
- "resourceType": "ImagingStudy",
- "id": "66c116d6-1f1e-43e1-b7e8-41d46fa3d669",
- "identifier": [
- {
- "use": "official",
- "system": "urn:ietf:rfc:3986",
- "value": "urn:oid:1.2.840.99999999.38484518.1568644972345"
- }
- ],
- "status": "available",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- },
- "started": "2014-10-13T12:08:24-04:00",
- "numberOfSeries": 1,
- "numberOfInstances": 1,
- "series": [
- {
- "uid": "1.2.840.99999999.1.91283898.1568644972345",
- "number": 1,
- "modality": {
- "system": "http://dicom.nema.org/resources/ontology/DCM",
- "code": "DX",
- "display": "Digital Radiography"
- },
- "numberOfInstances": 1,
- "bodySite": {
- "system": "http://snomed.info/sct",
- "code": "12921003",
- "display": "Pelvis"
- },
- "started": "2014-10-13T12:08:24-04:00",
- "instance": [
- {
- "uid": "1.2.840.99999999.1.1.34713111.1568644972345",
- "sopClass": {
- "system": "urn:ietf:rfc:3986",
- "code": "1.2.840.10008.5.1.4.1.1.1.1"
- },
- "number": 1,
- "title": "Image of pelvis"
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "ImagingStudy"
- }
- },
- {
- "fullUrl": "urn:uuid:dd8c902f-e96c-4a38-b30f-0c107bca1d8a",
- "resource": {
- "resourceType": "Claim",
- "id": "dd8c902f-e96c-4a38-b30f-0c107bca1d8a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2014-10-13T14:38:24-04:00"
- },
- "created": "2014-10-13T14:38:24-04:00",
- "provider": {
- "reference": "urn:uuid:60457c13-adb2-3415-82c5-86ab5dab5f93",
- "display": "BAYSTATE MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:3b85a668-13f2-46f2-9d13-e420c53bb260"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:0cec50f6-394b-4bde-89f4-8032d5ab7cd1"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:b42056d5-81b4-41ca-82c1-6926953d1ff7"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency room admission (procedure)"
- }
- ],
- "text": "Emergency room admission (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "359817006",
- "display": "Closed fracture of hip"
- }
- ],
- "text": "Closed fracture of hip"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "268425006",
- "display": "Pelvis X-ray"
- }
- ],
- "text": "Pelvis X-ray"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "305428000",
- "display": "Admission to orthopedic department"
- }
- ],
- "text": "Admission to orthopedic department"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3c5912f4-1c29-4484-83e9-45be8924c21d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3c5912f4-1c29-4484-83e9-45be8924c21d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "dd8c902f-e96c-4a38-b30f-0c107bca1d8a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2014-10-13T14:38:24-04:00",
- "end": "2015-10-13T14:38:24-04:00"
- },
- "created": "2014-10-13T14:38:24-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:dd8c902f-e96c-4a38-b30f-0c107bca1d8a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:3b85a668-13f2-46f2-9d13-e420c53bb260"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency room admission (procedure)"
- }
- ],
- "text": "Emergency room admission (procedure)"
- },
- "servicedPeriod": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2014-10-13T14:38:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:fddd7a8e-e739-4327-9803-cd8f6cc97f04"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "359817006",
- "display": "Closed fracture of hip"
- }
- ],
- "text": "Closed fracture of hip"
- },
- "servicedPeriod": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2014-10-13T14:38:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "268425006",
- "display": "Pelvis X-ray"
- }
- ],
- "text": "Pelvis X-ray"
- },
- "servicedPeriod": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2014-10-13T14:38:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "305428000",
- "display": "Admission to orthopedic department"
- }
- ],
- "text": "Admission to orthopedic department"
- },
- "servicedPeriod": {
- "start": "2014-10-13T12:08:24-04:00",
- "end": "2014-10-13T14:38:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 826.64,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:85ac2ed6-b3ed-4452-8a8a-134144878fb6",
- "resource": {
- "resourceType": "Encounter",
- "id": "85ac2ed6-b3ed-4452-8a8a-134144878fb6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "display": "Dr. Timmy68 Treutel973"
- }
- }
- ],
- "period": {
- "start": "2015-01-11T11:08:24-05:00",
- "end": "2015-01-11T11:23:24-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "359817006",
- "display": "Closed fracture of hip"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:54fe35c1-502d-4faa-9d70-da200aa7e9c6",
- "resource": {
- "resourceType": "Claim",
- "id": "54fe35c1-502d-4faa-9d70-da200aa7e9c6",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2015-01-11T11:08:24-05:00",
- "end": "2015-01-11T11:23:24-05:00"
- },
- "created": "2015-01-11T11:23:24-05:00",
- "provider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "encounter": [
- {
- "reference": "urn:uuid:85ac2ed6-b3ed-4452-8a8a-134144878fb6"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:acbb0fcb-94f6-4fa0-9bdf-891f8cb8c93b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "acbb0fcb-94f6-4fa0-9bdf-891f8cb8c93b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "54fe35c1-502d-4faa-9d70-da200aa7e9c6"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2015-01-11T11:23:24-05:00",
- "end": "2016-01-11T11:23:24-05:00"
- },
- "created": "2015-01-11T11:23:24-05:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:54fe35c1-502d-4faa-9d70-da200aa7e9c6"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "servicedPeriod": {
- "start": "2015-01-11T11:08:24-05:00",
- "end": "2015-01-11T11:23:24-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:85ac2ed6-b3ed-4452-8a8a-134144878fb6"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:00e8f219-882b-4527-a9d1-d3a57e2c47b3",
- "resource": {
- "resourceType": "Encounter",
- "id": "00e8f219-882b-4527-a9d1-d3a57e2c47b3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "display": "Dr. Timmy68 Treutel973"
- }
- }
- ],
- "period": {
- "start": "2015-05-29T12:08:24-04:00",
- "end": "2015-05-29T12:29:24-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c94744bc-fdcd-49f4-82cc-b7daa404b465",
- "resource": {
- "resourceType": "Condition",
- "id": "c94744bc-fdcd-49f4-82cc-b7daa404b465",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:00e8f219-882b-4527-a9d1-d3a57e2c47b3"
- },
- "onsetDateTime": "2015-05-29T12:08:24-04:00",
- "abatementDateTime": "2015-06-12T12:08:24-04:00",
- "recordedDate": "2015-05-29T12:08:24-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:ce645458-ef74-4639-b18b-fbce723eab3a",
- "resource": {
- "resourceType": "Procedure",
- "id": "ce645458-ef74-4639-b18b-fbce723eab3a",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269911007",
- "display": "Sputum examination (procedure)"
- }
- ],
- "text": "Sputum examination (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:00e8f219-882b-4527-a9d1-d3a57e2c47b3"
- },
- "performedPeriod": {
- "start": "2015-05-29T12:08:24-04:00",
- "end": "2015-05-29T12:14:24-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c94744bc-fdcd-49f4-82cc-b7daa404b465",
- "display": "Acute bronchitis (disorder)"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:e96d69d0-583f-403d-a36a-a71704fc2138",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "e96d69d0-583f-403d-a36a-a71704fc2138",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "313782",
- "display": "Acetaminophen 325 MG Oral Tablet"
- }
- ],
- "text": "Acetaminophen 325 MG Oral Tablet"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:00e8f219-882b-4527-a9d1-d3a57e2c47b3"
- },
- "authoredOn": "2015-05-29T12:08:24-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "display": "Dr. Timmy68 Treutel973"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c94744bc-fdcd-49f4-82cc-b7daa404b465"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:5a8dca49-b479-4572-8ecd-097ba40be690",
- "resource": {
- "resourceType": "Claim",
- "id": "5a8dca49-b479-4572-8ecd-097ba40be690",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2015-05-29T12:08:24-04:00",
- "end": "2015-05-29T12:29:24-04:00"
- },
- "created": "2015-05-29T12:29:24-04:00",
- "provider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:e96d69d0-583f-403d-a36a-a71704fc2138"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:00e8f219-882b-4527-a9d1-d3a57e2c47b3"
- }
- ]
- }
- ],
- "total": {
- "value": 6.01,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d26144f1-0143-473f-856a-6252e0f26a7d",
- "resource": {
- "resourceType": "CareTeam",
- "id": "d26144f1-0143-473f-856a-6252e0f26a7d",
- "status": "inactive",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:00e8f219-882b-4527-a9d1-d3a57e2c47b3"
- },
- "period": {
- "start": "2015-05-29T12:08:24-04:00",
- "end": "2015-06-12T12:08:24-04:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "display": "Dr. Timmy68 Treutel973"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:bd01d3fb-b6a4-40ff-ba06-b869ce12d2a5",
- "resource": {
- "resourceType": "CarePlan",
- "id": "bd01d3fb-b6a4-40ff-ba06-b869ce12d2a5",
- "text": {
- "status": "generated",
- "div": "Care Plan for Respiratory therapy.
Activities:
- Respiratory therapy
- Respiratory therapy
Care plan is meant to treat Acute bronchitis (disorder).
"
- },
- "status": "completed",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "53950000",
- "display": "Respiratory therapy"
- }
- ],
- "text": "Respiratory therapy"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:00e8f219-882b-4527-a9d1-d3a57e2c47b3"
- },
- "period": {
- "start": "2015-05-29T12:08:24-04:00",
- "end": "2015-06-12T12:08:24-04:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:d26144f1-0143-473f-856a-6252e0f26a7d"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:c94744bc-fdcd-49f4-82cc-b7daa404b465"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "304510005",
- "display": "Recommendation to avoid exercise"
- }
- ],
- "text": "Recommendation to avoid exercise"
- },
- "status": "completed",
- "location": {
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "371605008",
- "display": "Deep breathing and coughing exercises"
- }
- ],
- "text": "Deep breathing and coughing exercises"
- },
- "status": "completed",
- "location": {
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:648ebe8e-296a-4028-8847-55c8f5b23d34",
- "resource": {
- "resourceType": "Claim",
- "id": "648ebe8e-296a-4028-8847-55c8f5b23d34",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2015-05-29T12:08:24-04:00",
- "end": "2015-05-29T12:29:24-04:00"
- },
- "created": "2015-05-29T12:29:24-04:00",
- "provider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:c94744bc-fdcd-49f4-82cc-b7daa404b465"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:ce645458-ef74-4639-b18b-fbce723eab3a"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:00e8f219-882b-4527-a9d1-d3a57e2c47b3"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269911007",
- "display": "Sputum examination (procedure)"
- }
- ],
- "text": "Sputum examination (procedure)"
- },
- "net": {
- "value": 6642.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4956d2c2-270a-4090-a453-3e14f424f06c",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "4956d2c2-270a-4090-a453-3e14f424f06c",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "648ebe8e-296a-4028-8847-55c8f5b23d34"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2015-05-29T12:29:24-04:00",
- "end": "2016-05-29T12:29:24-04:00"
- },
- "created": "2015-05-29T12:29:24-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:648ebe8e-296a-4028-8847-55c8f5b23d34"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:c94744bc-fdcd-49f4-82cc-b7daa404b465"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2015-05-29T12:08:24-04:00",
- "end": "2015-05-29T12:29:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:00e8f219-882b-4527-a9d1-d3a57e2c47b3"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2015-05-29T12:08:24-04:00",
- "end": "2015-05-29T12:29:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "269911007",
- "display": "Sputum examination (procedure)"
- }
- ],
- "text": "Sputum examination (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-05-29T12:08:24-04:00",
- "end": "2015-05-29T12:29:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 6642.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1328.5040000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 5314.0160000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6642.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6642.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 5314.0160000000005,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:7ffe74ac-786d-3c6d-bcb9-323352f6149c",
- "resource": {
- "resourceType": "Organization",
- "id": "7ffe74ac-786d-3c6d-bcb9-323352f6149c",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "7ffe74ac-786d-3c6d-bcb9-323352f6149c"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "CONCENTRA URGENT CARE - SPRINGFIELD",
- "telecom": [
- {
- "system": "phone",
- "value": "413-746-4006"
- }
- ],
- "address": [
- {
- "line": [
- "140 CARANDO DRIVE"
- ],
- "city": "SPRINGFIELD",
- "state": "MA",
- "postalCode": "1104",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-000000016d28",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-000000016d28",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "93480"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Reyna401",
- "given": [
- "Lourdes258"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Lourdes258.Reyna401@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "140 CARANDO DRIVE"
- ],
- "city": "SPRINGFIELD",
- "state": "MA",
- "postalCode": "1104",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:7761a44d-a487-4f4c-ab2c-182eb496d038",
- "resource": {
- "resourceType": "Encounter",
- "id": "7761a44d-a487-4f4c-ab2c-182eb496d038",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d28",
- "display": "Dr. Lourdes258 Reyna401"
- }
- }
- ],
- "period": {
- "start": "2015-06-09T12:08:24-04:00",
- "end": "2015-06-09T12:23:24-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:7ffe74ac-786d-3c6d-bcb9-323352f6149c",
- "display": "CONCENTRA URGENT CARE - SPRINGFIELD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f99011a5-caf0-40a3-b191-a7d858c40f68",
- "resource": {
- "resourceType": "Immunization",
- "id": "f99011a5-caf0-40a3-b191-a7d858c40f68",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:7761a44d-a487-4f4c-ab2c-182eb496d038"
- },
- "occurrenceDateTime": "2015-06-09T12:08:24-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:a2991b94-45dc-4bcf-aa5b-a48dd50be569",
- "resource": {
- "resourceType": "Claim",
- "id": "a2991b94-45dc-4bcf-aa5b-a48dd50be569",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2015-06-09T12:08:24-04:00",
- "end": "2015-06-09T12:23:24-04:00"
- },
- "created": "2015-06-09T12:23:24-04:00",
- "provider": {
- "reference": "urn:uuid:7ffe74ac-786d-3c6d-bcb9-323352f6149c",
- "display": "CONCENTRA URGENT CARE - SPRINGFIELD"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:f99011a5-caf0-40a3-b191-a7d858c40f68"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:7761a44d-a487-4f4c-ab2c-182eb496d038"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:c6dde8f8-0c99-472e-80dc-fb28fe3ba3af",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "c6dde8f8-0c99-472e-80dc-fb28fe3ba3af",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d28"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d28"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "a2991b94-45dc-4bcf-aa5b-a48dd50be569"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2015-06-09T12:23:24-04:00",
- "end": "2016-06-09T12:23:24-04:00"
- },
- "created": "2015-06-09T12:23:24-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d28"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:a2991b94-45dc-4bcf-aa5b-a48dd50be569"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d28"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-06-09T12:08:24-04:00",
- "end": "2015-06-09T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:7761a44d-a487-4f4c-ab2c-182eb496d038"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2015-06-09T12:08:24-04:00",
- "end": "2015-06-09T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:419ac334-3993-4c2b-bfc1-2a61115888de",
- "resource": {
- "resourceType": "Encounter",
- "id": "419ac334-3993-4c2b-bfc1-2a61115888de",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140",
- "display": "Dr. Mira443 Pacocha935"
- }
- }
- ],
- "period": {
- "start": "2015-06-16T12:08:24-04:00",
- "end": "2015-06-16T12:23:24-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:60457c13-adb2-3415-82c5-86ab5dab5f93",
- "display": "BAYSTATE MEDICAL CENTER"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:844a8251-9fab-49b9-b0dd-d8162edec03d",
- "resource": {
- "resourceType": "Observation",
- "id": "844a8251-9fab-49b9-b0dd-d8162edec03d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:419ac334-3993-4c2b-bfc1-2a61115888de"
- },
- "effectiveDateTime": "2015-06-16T12:08:24-04:00",
- "issued": "2015-06-16T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 169.165240071369,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bebdb83d-d2bf-4b9d-b100-6c542d5ec591",
- "resource": {
- "resourceType": "Observation",
- "id": "bebdb83d-d2bf-4b9d-b100-6c542d5ec591",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:419ac334-3993-4c2b-bfc1-2a61115888de"
- },
- "effectiveDateTime": "2015-06-16T12:08:24-04:00",
- "issued": "2015-06-16T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 2.2035841782382346,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c83d9eed-f815-40c4-a4ae-35914e258414",
- "resource": {
- "resourceType": "Observation",
- "id": "c83d9eed-f815-40c4-a4ae-35914e258414",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:419ac334-3993-4c2b-bfc1-2a61115888de"
- },
- "effectiveDateTime": "2015-06-16T12:08:24-04:00",
- "issued": "2015-06-16T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 68.33705386377768,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6d691544-b42a-4db6-ac54-e2a786d29e10",
- "resource": {
- "resourceType": "Observation",
- "id": "6d691544-b42a-4db6-ac54-e2a786d29e10",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:419ac334-3993-4c2b-bfc1-2a61115888de"
- },
- "effectiveDateTime": "2015-06-16T12:08:24-04:00",
- "issued": "2015-06-16T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 23.879981873980093,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fc93b8b3-e42d-4045-8139-ca3efdc6f896",
- "resource": {
- "resourceType": "Observation",
- "id": "fc93b8b3-e42d-4045-8139-ca3efdc6f896",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:419ac334-3993-4c2b-bfc1-2a61115888de"
- },
- "effectiveDateTime": "2015-06-16T12:08:24-04:00",
- "issued": "2015-06-16T12:08:24.316-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 82.3828583974641,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 100.41582043543889,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ed981d4b-bb03-4f71-8036-ee6b3d3d8b7f",
- "resource": {
- "resourceType": "Observation",
- "id": "ed981d4b-bb03-4f71-8036-ee6b3d3d8b7f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:419ac334-3993-4c2b-bfc1-2a61115888de"
- },
- "effectiveDateTime": "2015-06-16T12:08:24-04:00",
- "issued": "2015-06-16T12:08:24.316-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8d815a46-a0f5-46e7-83fd-64301cd0fc5f",
- "resource": {
- "resourceType": "Procedure",
- "id": "8d815a46-a0f5-46e7-83fd-64301cd0fc5f",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:419ac334-3993-4c2b-bfc1-2a61115888de"
- },
- "performedPeriod": {
- "start": "2015-06-16T12:08:24-04:00",
- "end": "2015-06-16T12:23:24-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:182e5d8b-bfe3-43f8-9f08-5e770e6b23fb",
- "resource": {
- "resourceType": "Immunization",
- "id": "182e5d8b-bfe3-43f8-9f08-5e770e6b23fb",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:419ac334-3993-4c2b-bfc1-2a61115888de"
- },
- "occurrenceDateTime": "2015-06-16T12:08:24-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:52597b52-5d71-48a7-8083-d4937993836c",
- "resource": {
- "resourceType": "Claim",
- "id": "52597b52-5d71-48a7-8083-d4937993836c",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2015-06-16T12:08:24-04:00",
- "end": "2015-06-16T12:23:24-04:00"
- },
- "created": "2015-06-16T12:23:24-04:00",
- "provider": {
- "reference": "urn:uuid:60457c13-adb2-3415-82c5-86ab5dab5f93",
- "display": "BAYSTATE MEDICAL CENTER"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:182e5d8b-bfe3-43f8-9f08-5e770e6b23fb"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:8d815a46-a0f5-46e7-83fd-64301cd0fc5f"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:419ac334-3993-4c2b-bfc1-2a61115888de"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 585.48,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:8cc1754f-a8a3-4760-893b-4a9aa7d018dd",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "8cc1754f-a8a3-4760-893b-4a9aa7d018dd",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "52597b52-5d71-48a7-8083-d4937993836c"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2015-06-16T12:23:24-04:00",
- "end": "2016-06-16T12:23:24-04:00"
- },
- "created": "2015-06-16T12:23:24-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:52597b52-5d71-48a7-8083-d4937993836c"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000140"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-06-16T12:08:24-04:00",
- "end": "2015-06-16T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:419ac334-3993-4c2b-bfc1-2a61115888de"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2015-06-16T12:08:24-04:00",
- "end": "2015-06-16T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-06-16T12:08:24-04:00",
- "end": "2015-06-16T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 585.48,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 117.096,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 468.384,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 585.48,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 585.48,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 580.8000000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f4d133d1-4d92-4796-b2a2-7a91730206a5",
- "resource": {
- "resourceType": "Encounter",
- "id": "f4d133d1-4d92-4796-b2a2-7a91730206a5",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "display": "Dr. Timmy68 Treutel973"
- }
- }
- ],
- "period": {
- "start": "2015-10-11T12:08:24-04:00",
- "end": "2015-10-11T12:23:24-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:3eff9ddf-61aa-42fe-aa95-75c1f4b4c20b",
- "resource": {
- "resourceType": "Condition",
- "id": "3eff9ddf-61aa-42fe-aa95-75c1f4b4c20b",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:f4d133d1-4d92-4796-b2a2-7a91730206a5"
- },
- "onsetDateTime": "2015-10-11T12:08:24-04:00",
- "abatementDateTime": "2015-10-25T12:08:24-04:00",
- "recordedDate": "2015-10-11T12:08:24-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:6879cac6-c939-4acc-8202-c33385f8c4b3",
- "resource": {
- "resourceType": "Claim",
- "id": "6879cac6-c939-4acc-8202-c33385f8c4b3",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2015-10-11T12:08:24-04:00",
- "end": "2015-10-11T12:23:24-04:00"
- },
- "created": "2015-10-11T12:23:24-04:00",
- "provider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:3eff9ddf-61aa-42fe-aa95-75c1f4b4c20b"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f4d133d1-4d92-4796-b2a2-7a91730206a5"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0ed673da-e4e4-4fdf-910f-e314ae420d5d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0ed673da-e4e4-4fdf-910f-e314ae420d5d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "6879cac6-c939-4acc-8202-c33385f8c4b3"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2015-10-11T12:23:24-04:00",
- "end": "2016-10-11T12:23:24-04:00"
- },
- "created": "2015-10-11T12:23:24-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:6879cac6-c939-4acc-8202-c33385f8c4b3"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:3eff9ddf-61aa-42fe-aa95-75c1f4b4c20b"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2015-10-11T12:08:24-04:00",
- "end": "2015-10-11T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f4d133d1-4d92-4796-b2a2-7a91730206a5"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2015-10-11T12:08:24-04:00",
- "end": "2015-10-11T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892",
- "resource": {
- "resourceType": "Encounter",
- "id": "c7118a3b-9c09-44cc-be1f-42e855bf8892",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74",
- "display": "Dr. Oswaldo857 Rogahn59"
- }
- }
- ],
- "period": {
- "start": "2016-10-25T12:08:24-04:00",
- "end": "2016-10-25T12:23:24-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:9c87cfde-bd50-3911-85fe-1fea5bfcf49e",
- "display": "PCP23049"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:41a15668-d35a-4ebf-a7c4-b9b1c3259052",
- "resource": {
- "resourceType": "Observation",
- "id": "41a15668-d35a-4ebf-a7c4-b9b1c3259052",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 169.165240071369,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7152e4b5-9c2c-441f-80e7-43ffe1e3843a",
- "resource": {
- "resourceType": "Observation",
- "id": "7152e4b5-9c2c-441f-80e7-43ffe1e3843a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 3.587579605766095,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c4fe57a7-ac48-4bd7-9cfd-d5e5fc2ae094",
- "resource": {
- "resourceType": "Observation",
- "id": "c4fe57a7-ac48-4bd7-9cfd-d5e5fc2ae094",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 70.76172612102316,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6d7e3177-7c3a-4aa7-b1de-6d645b0f70a4",
- "resource": {
- "resourceType": "Observation",
- "id": "6d7e3177-7c3a-4aa7-b1de-6d645b0f70a4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 24.7272693451196,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ea653f52-2ec4-4f41-a85f-a84e75992902",
- "resource": {
- "resourceType": "Observation",
- "id": "ea653f52-2ec4-4f41-a85f-a84e75992902",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 84.7360253741008,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 113.22451480235875,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7ece2541-bb44-4932-b730-207bfe4b6c19",
- "resource": {
- "resourceType": "Observation",
- "id": "7ece2541-bb44-4932-b730-207bfe4b6c19",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 6.415761677875389,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bd2e84f6-7150-4829-a35b-4310d8f20659",
- "resource": {
- "resourceType": "Observation",
- "id": "bd2e84f6-7150-4829-a35b-4310d8f20659",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 4.342976951629501,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b9c2057f-d101-4b1e-9603-dc3d54e2a3d8",
- "resource": {
- "resourceType": "Observation",
- "id": "b9c2057f-d101-4b1e-9603-dc3d54e2a3d8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 12.243867367977499,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a00e1402-badd-4298-80a0-572ab5e7c887",
- "resource": {
- "resourceType": "Observation",
- "id": "a00e1402-badd-4298-80a0-572ab5e7c887",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 37.34095474813491,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7cf10921-c975-4365-bd42-37e4f726bfbd",
- "resource": {
- "resourceType": "Observation",
- "id": "7cf10921-c975-4365-bd42-37e4f726bfbd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 86.74431690460057,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:90bbd636-91f8-4992-bdc7-3c803ce192b1",
- "resource": {
- "resourceType": "Observation",
- "id": "90bbd636-91f8-4992-bdc7-3c803ce192b1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 28.230793412749758,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d38360a5-fdf9-4351-a99b-3c692d28cbc8",
- "resource": {
- "resourceType": "Observation",
- "id": "d38360a5-fdf9-4351-a99b-3c692d28cbc8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 33.191032594989316,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fba3d220-8777-4db6-8537-f3b9a3d2562e",
- "resource": {
- "resourceType": "Observation",
- "id": "fba3d220-8777-4db6-8537-f3b9a3d2562e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 44.34429684803039,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d2c8d347-d07f-44a6-95ac-fcd71a34623e",
- "resource": {
- "resourceType": "Observation",
- "id": "d2c8d347-d07f-44a6-95ac-fcd71a34623e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 346.2957419766047,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8d75e320-2f60-4c8f-94e6-a46c2697856b",
- "resource": {
- "resourceType": "Observation",
- "id": "8d75e320-2f60-4c8f-94e6-a46c2697856b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 265.57069835678436,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:affe7981-b87a-44ef-8724-9e2da9ba150f",
- "resource": {
- "resourceType": "Observation",
- "id": "affe7981-b87a-44ef-8724-9e2da9ba150f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueQuantity": {
- "value": 11.719823290676533,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f4fb96dd-36fa-4ca5-97a7-5bea1fdb945b",
- "resource": {
- "resourceType": "Observation",
- "id": "f4fb96dd-36fa-4ca5-97a7-5bea1fdb945b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b1d89101-7326-40c0-9603-db48fd79da39",
- "resource": {
- "resourceType": "Immunization",
- "id": "b1d89101-7326-40c0-9603-db48fd79da39",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "occurrenceDateTime": "2016-10-25T12:08:24-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:0e24d864-a947-44ac-b580-5166a14c11ce",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "0e24d864-a947-44ac-b580-5166a14c11ce",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- },
- "effectiveDateTime": "2016-10-25T12:08:24-04:00",
- "issued": "2016-10-25T12:08:24.316-04:00",
- "result": [
- {
- "reference": "urn:uuid:7ece2541-bb44-4932-b730-207bfe4b6c19",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:bd2e84f6-7150-4829-a35b-4310d8f20659",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:b9c2057f-d101-4b1e-9603-dc3d54e2a3d8",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:a00e1402-badd-4298-80a0-572ab5e7c887",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:7cf10921-c975-4365-bd42-37e4f726bfbd",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:90bbd636-91f8-4992-bdc7-3c803ce192b1",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:d38360a5-fdf9-4351-a99b-3c692d28cbc8",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:fba3d220-8777-4db6-8537-f3b9a3d2562e",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:d2c8d347-d07f-44a6-95ac-fcd71a34623e",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:8d75e320-2f60-4c8f-94e6-a46c2697856b",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:affe7981-b87a-44ef-8724-9e2da9ba150f",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:80ee2091-2e91-487a-9db6-849f60364428",
- "resource": {
- "resourceType": "Claim",
- "id": "80ee2091-2e91-487a-9db6-849f60364428",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2016-10-25T12:08:24-04:00",
- "end": "2016-10-25T12:23:24-04:00"
- },
- "created": "2016-10-25T12:23:24-04:00",
- "provider": {
- "reference": "urn:uuid:9c87cfde-bd50-3911-85fe-1fea5bfcf49e",
- "display": "PCP23049"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:b1d89101-7326-40c0-9603-db48fd79da39"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9c18f968-bb9c-4722-8a4d-821730514dbb",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9c18f968-bb9c-4722-8a4d-821730514dbb",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "80ee2091-2e91-487a-9db6-849f60364428"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2016-10-25T12:23:24-04:00",
- "end": "2017-10-25T12:23:24-04:00"
- },
- "created": "2016-10-25T12:23:24-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:80ee2091-2e91-487a-9db6-849f60364428"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000003b74"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-10-25T12:08:24-04:00",
- "end": "2016-10-25T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c7118a3b-9c09-44cc-be1f-42e855bf8892"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2016-10-25T12:08:24-04:00",
- "end": "2016-10-25T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:9d7f64df-2980-4e28-8285-ac03ab320c5e",
- "resource": {
- "resourceType": "Encounter",
- "id": "9d7f64df-2980-4e28-8285-ac03ab320c5e",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "display": "Dr. Timmy68 Treutel973"
- }
- }
- ],
- "period": {
- "start": "2017-04-22T12:08:24-04:00",
- "end": "2017-04-22T12:23:24-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:873050e9-7b35-4f7c-877d-e604896ae52e",
- "resource": {
- "resourceType": "Condition",
- "id": "873050e9-7b35-4f7c-877d-e604896ae52e",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:9d7f64df-2980-4e28-8285-ac03ab320c5e"
- },
- "onsetDateTime": "2017-04-22T12:08:24-04:00",
- "abatementDateTime": "2017-04-29T12:08:24-04:00",
- "recordedDate": "2017-04-22T12:08:24-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:16c2b409-a638-45c1-a3c0-d633b6942006",
- "resource": {
- "resourceType": "Claim",
- "id": "16c2b409-a638-45c1-a3c0-d633b6942006",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2017-04-22T12:08:24-04:00",
- "end": "2017-04-22T12:23:24-04:00"
- },
- "created": "2017-04-22T12:23:24-04:00",
- "provider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:873050e9-7b35-4f7c-877d-e604896ae52e"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:9d7f64df-2980-4e28-8285-ac03ab320c5e"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:23e4f80c-be06-473e-8159-c19ada949b18",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "23e4f80c-be06-473e-8159-c19ada949b18",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "16c2b409-a638-45c1-a3c0-d633b6942006"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2017-04-22T12:23:24-04:00",
- "end": "2018-04-22T12:23:24-04:00"
- },
- "created": "2017-04-22T12:23:24-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:16c2b409-a638-45c1-a3c0-d633b6942006"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:873050e9-7b35-4f7c-877d-e604896ae52e"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2017-04-22T12:08:24-04:00",
- "end": "2017-04-22T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:9d7f64df-2980-4e28-8285-ac03ab320c5e"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2017-04-22T12:08:24-04:00",
- "end": "2017-04-22T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:d4fbc253-d7a1-40ae-a7a2-b9065e99b043",
- "resource": {
- "resourceType": "Encounter",
- "id": "d4fbc253-d7a1-40ae-a7a2-b9065e99b043",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "display": "Dr. Timmy68 Treutel973"
- }
- }
- ],
- "period": {
- "start": "2018-05-29T12:08:24-04:00",
- "end": "2018-05-29T12:36:24-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2272fa7b-eaaf-4a6a-a750-cbd704fb3215",
- "resource": {
- "resourceType": "Condition",
- "id": "2272fa7b-eaaf-4a6a-a750-cbd704fb3215",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:d4fbc253-d7a1-40ae-a7a2-b9065e99b043"
- },
- "onsetDateTime": "2018-05-29T12:08:24-04:00",
- "abatementDateTime": "2018-06-05T12:08:24-04:00",
- "recordedDate": "2018-05-29T12:08:24-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:57e830d7-92f5-465f-a931-28d59081052e",
- "resource": {
- "resourceType": "Procedure",
- "id": "57e830d7-92f5-465f-a931-28d59081052e",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "23426006",
- "display": "Measurement of respiratory function (procedure)"
- }
- ],
- "text": "Measurement of respiratory function (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:d4fbc253-d7a1-40ae-a7a2-b9065e99b043"
- },
- "performedPeriod": {
- "start": "2018-05-29T12:08:24-04:00",
- "end": "2018-05-29T12:21:24-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c94744bc-fdcd-49f4-82cc-b7daa404b465",
- "display": "Acute bronchitis (disorder)"
- },
- {
- "reference": "urn:uuid:2272fa7b-eaaf-4a6a-a750-cbd704fb3215",
- "display": "Acute bronchitis (disorder)"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:f9dc1c02-c053-4444-b43e-af6b74df0a8d",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "f9dc1c02-c053-4444-b43e-af6b74df0a8d",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "313782",
- "display": "Acetaminophen 325 MG Oral Tablet"
- }
- ],
- "text": "Acetaminophen 325 MG Oral Tablet"
- },
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:d4fbc253-d7a1-40ae-a7a2-b9065e99b043"
- },
- "authoredOn": "2018-05-29T12:08:24-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "display": "Dr. Timmy68 Treutel973"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c94744bc-fdcd-49f4-82cc-b7daa404b465"
- },
- {
- "reference": "urn:uuid:2272fa7b-eaaf-4a6a-a750-cbd704fb3215"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:07109cae-710d-4057-9dc1-4bf900b3d373",
- "resource": {
- "resourceType": "Claim",
- "id": "07109cae-710d-4057-9dc1-4bf900b3d373",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2018-05-29T12:08:24-04:00",
- "end": "2018-05-29T12:36:24-04:00"
- },
- "created": "2018-05-29T12:36:24-04:00",
- "provider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:f9dc1c02-c053-4444-b43e-af6b74df0a8d"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d4fbc253-d7a1-40ae-a7a2-b9065e99b043"
- }
- ]
- }
- ],
- "total": {
- "value": 5.66,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:781f7cdd-91c6-46d8-b759-46c656310ce3",
- "resource": {
- "resourceType": "CareTeam",
- "id": "781f7cdd-91c6-46d8-b759-46c656310ce3",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:d4fbc253-d7a1-40ae-a7a2-b9065e99b043"
- },
- "period": {
- "start": "2018-05-29T12:08:24-04:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262",
- "display": "Dr. Timmy68 Treutel973"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:4fd7064d-bf7e-4bf3-b9e9-73adbb8e7e03",
- "resource": {
- "resourceType": "CarePlan",
- "id": "4fd7064d-bf7e-4bf3-b9e9-73adbb8e7e03",
- "text": {
- "status": "generated",
- "div": "Care Plan for Respiratory therapy.
Activities:
- Respiratory therapy
- Respiratory therapy
Care plan is meant to treat Acute bronchitis (disorder).
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "53950000",
- "display": "Respiratory therapy"
- }
- ],
- "text": "Respiratory therapy"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:d4fbc253-d7a1-40ae-a7a2-b9065e99b043"
- },
- "period": {
- "start": "2018-05-29T12:08:24-04:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:781f7cdd-91c6-46d8-b759-46c656310ce3"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:c94744bc-fdcd-49f4-82cc-b7daa404b465"
- },
- {
- "reference": "urn:uuid:2272fa7b-eaaf-4a6a-a750-cbd704fb3215"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "304510005",
- "display": "Recommendation to avoid exercise"
- }
- ],
- "text": "Recommendation to avoid exercise"
- },
- "status": "in-progress",
- "location": {
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "371605008",
- "display": "Deep breathing and coughing exercises"
- }
- ],
- "text": "Deep breathing and coughing exercises"
- },
- "status": "in-progress",
- "location": {
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:595dc5aa-2583-4ed3-a30a-2ea27029736f",
- "resource": {
- "resourceType": "Claim",
- "id": "595dc5aa-2583-4ed3-a30a-2ea27029736f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2018-05-29T12:08:24-04:00",
- "end": "2018-05-29T12:36:24-04:00"
- },
- "created": "2018-05-29T12:36:24-04:00",
- "provider": {
- "reference": "urn:uuid:5103c940-0c08-392f-95cd-446e0cea042a",
- "display": "SHRINERS' HOSPITAL FOR CHILDREN (THE)"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:2272fa7b-eaaf-4a6a-a750-cbd704fb3215"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:57e830d7-92f5-465f-a931-28d59081052e"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d4fbc253-d7a1-40ae-a7a2-b9065e99b043"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "23426006",
- "display": "Measurement of respiratory function (procedure)"
- }
- ],
- "text": "Measurement of respiratory function (procedure)"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f1c3ab15-48e5-4760-b2ad-c6881c3d9bfc",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f1c3ab15-48e5-4760-b2ad-c6881c3d9bfc",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "595dc5aa-2583-4ed3-a30a-2ea27029736f"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2018-05-29T12:36:24-04:00",
- "end": "2019-05-29T12:36:24-04:00"
- },
- "created": "2018-05-29T12:36:24-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:595dc5aa-2583-4ed3-a30a-2ea27029736f"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000000262"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:2272fa7b-eaaf-4a6a-a750-cbd704fb3215"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2018-05-29T12:08:24-04:00",
- "end": "2018-05-29T12:36:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:d4fbc253-d7a1-40ae-a7a2-b9065e99b043"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "10509002",
- "display": "Acute bronchitis (disorder)"
- }
- ],
- "text": "Acute bronchitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2018-05-29T12:08:24-04:00",
- "end": "2018-05-29T12:36:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "23426006",
- "display": "Measurement of respiratory function (procedure)"
- }
- ],
- "text": "Measurement of respiratory function (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-05-29T12:08:24-04:00",
- "end": "2018-05-29T12:36:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f49b680a-202f-45b7-812b-e7bb60619a7c",
- "resource": {
- "resourceType": "Encounter",
- "id": "f49b680a-202f-45b7-812b-e7bb60619a7c",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Mr. Gregory545 Reynolds644"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d28",
- "display": "Dr. Lourdes258 Reyna401"
- }
- }
- ],
- "period": {
- "start": "2018-06-05T12:08:24-04:00",
- "end": "2018-06-05T12:23:24-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:7ffe74ac-786d-3c6d-bcb9-323352f6149c",
- "display": "CONCENTRA URGENT CARE - SPRINGFIELD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:778c31da-599c-4b99-ad1e-cd1af242f6d4",
- "resource": {
- "resourceType": "Immunization",
- "id": "778c31da-599c-4b99-ad1e-cd1af242f6d4",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "encounter": {
- "reference": "urn:uuid:f49b680a-202f-45b7-812b-e7bb60619a7c"
- },
- "occurrenceDateTime": "2018-06-05T12:08:24-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:91054cea-923c-43c8-89f8-bedd680fa261",
- "resource": {
- "resourceType": "Claim",
- "id": "91054cea-923c-43c8-89f8-bedd680fa261",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538",
- "display": "Gregory545 Reynolds644"
- },
- "billablePeriod": {
- "start": "2018-06-05T12:08:24-04:00",
- "end": "2018-06-05T12:23:24-04:00"
- },
- "created": "2018-06-05T12:23:24-04:00",
- "provider": {
- "reference": "urn:uuid:7ffe74ac-786d-3c6d-bcb9-323352f6149c",
- "display": "CONCENTRA URGENT CARE - SPRINGFIELD"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:778c31da-599c-4b99-ad1e-cd1af242f6d4"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f49b680a-202f-45b7-812b-e7bb60619a7c"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e02554d2-1013-47cb-88cc-022950ba2b82",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "e02554d2-1013-47cb-88cc-022950ba2b82",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d28"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d28"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Humana"
- },
- "beneficiary": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "payor": [
- {
- "display": "Humana"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "91054cea-923c-43c8-89f8-bedd680fa261"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:1c81d708-bf61-44a3-82f3-1500ad965538"
- },
- "billablePeriod": {
- "start": "2018-06-05T12:23:24-04:00",
- "end": "2019-06-05T12:23:24-04:00"
- },
- "created": "2018-06-05T12:23:24-04:00",
- "insurer": {
- "display": "Humana"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d28"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:91054cea-923c-43c8-89f8-bedd680fa261"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000016d28"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Humana"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "702927004",
- "display": "Urgent care clinic (procedure)"
- }
- ],
- "text": "Urgent care clinic (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-06-05T12:08:24-04:00",
- "end": "2018-06-05T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f49b680a-202f-45b7-812b-e7bb60619a7c"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2018-06-05T12:08:24-04:00",
- "end": "2018-06-05T12:23:24-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- }
- ]
-}
diff --git a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Jules135_Gutmann970_6bcb9066-cf6c-443e-91b3-c9022c8c4f6a.json b/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Jules135_Gutmann970_6bcb9066-cf6c-443e-91b3-c9022c8c4f6a.json
deleted file mode 100644
index 144a11a7..00000000
--- a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Jules135_Gutmann970_6bcb9066-cf6c-443e-91b3-c9022c8c4f6a.json
+++ /dev/null
@@ -1,55963 +0,0 @@
-{
- "resourceType": "Bundle",
- "type": "transaction",
- "entry": [
- {
- "fullUrl": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "resource": {
- "resourceType": "Patient",
- "id": "7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "text": {
- "status": "generated",
- "div": "Generated by
Synthea.Version identifier: v2.4.0-404-ge7ce2295\n . Person seed: 7251516320691860882 Population seed: 0
"
- },
- "extension": [
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2106-3",
- "display": "White"
- }
- },
- {
- "url": "text",
- "valueString": "White"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
- }
- },
- {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
- "valueString": "Louella862 Kutch271"
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
- "valueCode": "M"
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
- "valueAddress": {
- "city": "North Adams",
- "state": "Massachusetts",
- "country": "US"
- }
- },
- {
- "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
- "valueDecimal": 11.687058394580909
- },
- {
- "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
- "valueDecimal": 72.3129416054191
- }
- ],
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "6bcb9066-cf6c-443e-91b3-c9022c8c4f6a"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "MR",
- "display": "Medical Record Number"
- }
- ],
- "text": "Medical Record Number"
- },
- "system": "http://hospital.smarthealthit.org",
- "value": "6bcb9066-cf6c-443e-91b3-c9022c8c4f6a"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "SS",
- "display": "Social Security Number"
- }
- ],
- "text": "Social Security Number"
- },
- "system": "http://hl7.org/fhir/sid/us-ssn",
- "value": "999-59-2560"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "DL",
- "display": "Driver's License"
- }
- ],
- "text": "Driver's License"
- },
- "system": "urn:oid:2.16.840.1.113883.4.3.25",
- "value": "S99927966"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PPN",
- "display": "Passport Number"
- }
- ],
- "text": "Passport Number"
- },
- "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber",
- "value": "X11119429X"
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "Gutmann970",
- "given": [
- "Jules135"
- ],
- "prefix": [
- "Mr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "phone",
- "value": "555-892-4548",
- "use": "home"
- }
- ],
- "gender": "male",
- "birthDate": "1932-12-18",
- "deceasedDateTime": "2016-12-27T02:16:14-05:00",
- "address": [
- {
- "extension": [
- {
- "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
- "extension": [
- {
- "url": "latitude",
- "valueDecimal": 42.41228173793808
- },
- {
- "url": "longitude",
- "valueDecimal": -71.04014318120944
- }
- ]
- }
- ],
- "line": [
- "463 Dickens Mill"
- ],
- "city": "Boston",
- "state": "Massachusetts",
- "postalCode": "02108",
- "country": "US"
- }
- ],
- "maritalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
- "code": "S",
- "display": "S"
- }
- ],
- "text": "S"
- },
- "multipleBirthBoolean": false,
- "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English"
- }
- ],
- "text": "English"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Patient"
- }
- },
- {
- "fullUrl": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "resource": {
- "resourceType": "Organization",
- "id": "ed03dc2d-0567-3395-92df-4c18d4993565",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "ed03dc2d-0567-3395-92df-4c18d4993565"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "PCP127028",
- "address": [
- {
- "line": [
- "391 BROADWAY"
- ],
- "city": "EVERETT",
- "state": "MA",
- "postalCode": "02149-0009",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-00000000bb80",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "48000"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Eichmann909",
- "given": [
- "Manuel446"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Manuel446.Eichmann909@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "391 BROADWAY"
- ],
- "city": "EVERETT",
- "state": "MA",
- "postalCode": "02149-0009",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:3dac681d-52b9-4956-929f-2315e7ef2ff6",
- "resource": {
- "resourceType": "Encounter",
- "id": "3dac681d-52b9-4956-929f-2315e7ef2ff6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "1974-12-29T02:16:14-05:00",
- "end": "1974-12-29T02:31:14-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:13a572b8-ed76-40db-8f81-deea44e932dc",
- "resource": {
- "resourceType": "Condition",
- "id": "13a572b8-ed76-40db-8f81-deea44e932dc",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3dac681d-52b9-4956-929f-2315e7ef2ff6"
- },
- "onsetDateTime": "1974-12-29T02:16:14-05:00",
- "recordedDate": "1974-12-29T02:16:14-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:2a806fdd-4258-4b0f-857e-847d59705304",
- "resource": {
- "resourceType": "CareTeam",
- "id": "2a806fdd-4258-4b0f-857e-847d59705304",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3dac681d-52b9-4956-929f-2315e7ef2ff6"
- },
- "period": {
- "start": "1974-12-29T02:16:14-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:89578d17-3ab1-4e0e-840e-b6546e70123e",
- "resource": {
- "resourceType": "Goal",
- "id": "89578d17-3ab1-4e0e-840e-b6546e70123e",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Hemoglobin A1c total in Blood < 7.0"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:666e5804-e183-4734-b51c-85b9b6bea7e6",
- "resource": {
- "resourceType": "Goal",
- "id": "666e5804-e183-4734-b51c-85b9b6bea7e6",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Glucose [Mass/volume] in Blood < 108"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:b10e52e8-b815-4dd5-8611-611422d2954e",
- "resource": {
- "resourceType": "Goal",
- "id": "b10e52e8-b815-4dd5-8611-611422d2954e",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Maintain blood pressure below 140/90 mmHg"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:199e2d83-3134-4571-9a50-bf3328e6ca29",
- "resource": {
- "resourceType": "Goal",
- "id": "199e2d83-3134-4571-9a50-bf3328e6ca29",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Improve and maintenance of optimal foot health: aim at early detection of peripheral vascular problems and neuropathy presumed due to diabetes; and prevention of diabetic foot ulcer, gangrene"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:0d1ebcc2-607b-4cbe-a356-bb7f227cb1f3",
- "resource": {
- "resourceType": "Goal",
- "id": "0d1ebcc2-607b-4cbe-a356-bb7f227cb1f3",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Address patient knowledge deficit on diabetic self-care"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:680a0350-63bb-4166-ac76-4faf451036c3",
- "resource": {
- "resourceType": "CarePlan",
- "id": "680a0350-63bb-4166-ac76-4faf451036c3",
- "text": {
- "status": "generated",
- "div": "Care Plan for Diabetes self management plan.
Activities:
- Diabetes self management plan
- Diabetes self management plan
Care plan is meant to treat Prediabetes.
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698360004",
- "display": "Diabetes self management plan"
- }
- ],
- "text": "Diabetes self management plan"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3dac681d-52b9-4956-929f-2315e7ef2ff6"
- },
- "period": {
- "start": "1974-12-29T02:16:14-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:2a806fdd-4258-4b0f-857e-847d59705304"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:13a572b8-ed76-40db-8f81-deea44e932dc"
- }
- ],
- "goal": [
- {
- "reference": "urn:uuid:89578d17-3ab1-4e0e-840e-b6546e70123e"
- },
- {
- "reference": "urn:uuid:666e5804-e183-4734-b51c-85b9b6bea7e6"
- },
- {
- "reference": "urn:uuid:b10e52e8-b815-4dd5-8611-611422d2954e"
- },
- {
- "reference": "urn:uuid:199e2d83-3134-4571-9a50-bf3328e6ca29"
- },
- {
- "reference": "urn:uuid:0d1ebcc2-607b-4cbe-a356-bb7f227cb1f3"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "160670007",
- "display": "Diabetic diet"
- }
- ],
- "text": "Diabetic diet"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP127028"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "229065009",
- "display": "Exercise therapy"
- }
- ],
- "text": "Exercise therapy"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP127028"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:104d59c8-e9f6-4328-9843-f532e7e15bd6",
- "resource": {
- "resourceType": "Claim",
- "id": "104d59c8-e9f6-4328-9843-f532e7e15bd6",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1974-12-29T02:16:14-05:00",
- "end": "1974-12-29T02:31:14-05:00"
- },
- "created": "1974-12-29T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:13a572b8-ed76-40db-8f81-deea44e932dc"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3dac681d-52b9-4956-929f-2315e7ef2ff6"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:726669d2-4677-4dcc-b857-070542cc3523",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "726669d2-4677-4dcc-b857-070542cc3523",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "104d59c8-e9f6-4328-9843-f532e7e15bd6"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1974-12-29T02:31:14-05:00",
- "end": "1975-12-29T02:31:14-05:00"
- },
- "created": "1974-12-29T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:104d59c8-e9f6-4328-9843-f532e7e15bd6"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:13a572b8-ed76-40db-8f81-deea44e932dc"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "1974-12-29T02:16:14-05:00",
- "end": "1974-12-29T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3dac681d-52b9-4956-929f-2315e7ef2ff6"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "15777000",
- "display": "Prediabetes"
- }
- ],
- "text": "Prediabetes"
- },
- "servicedPeriod": {
- "start": "1974-12-29T02:16:14-05:00",
- "end": "1974-12-29T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8045aeba-7739-4d92-be17-b2666756c941",
- "resource": {
- "resourceType": "Encounter",
- "id": "8045aeba-7739-4d92-be17-b2666756c941",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "1977-01-02T02:16:14-05:00",
- "end": "1977-01-02T02:31:14-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:28eb43b5-ee68-44da-bba4-4caa6fae9fc9",
- "resource": {
- "resourceType": "Condition",
- "id": "28eb43b5-ee68-44da-bba4-4caa6fae9fc9",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271737000",
- "display": "Anemia (disorder)"
- }
- ],
- "text": "Anemia (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:8045aeba-7739-4d92-be17-b2666756c941"
- },
- "onsetDateTime": "1977-01-02T02:16:14-05:00",
- "recordedDate": "1977-01-02T02:16:14-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:4116e99c-b084-4558-a004-c62ea04e8a82",
- "resource": {
- "resourceType": "Claim",
- "id": "4116e99c-b084-4558-a004-c62ea04e8a82",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1977-01-02T02:16:14-05:00",
- "end": "1977-01-02T02:31:14-05:00"
- },
- "created": "1977-01-02T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:28eb43b5-ee68-44da-bba4-4caa6fae9fc9"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8045aeba-7739-4d92-be17-b2666756c941"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271737000",
- "display": "Anemia (disorder)"
- }
- ],
- "text": "Anemia (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3434538e-36e8-45f3-8ff4-c531aa46f7d4",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3434538e-36e8-45f3-8ff4-c531aa46f7d4",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "4116e99c-b084-4558-a004-c62ea04e8a82"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1977-01-02T02:31:14-05:00",
- "end": "1978-01-02T02:31:14-05:00"
- },
- "created": "1977-01-02T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:4116e99c-b084-4558-a004-c62ea04e8a82"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:28eb43b5-ee68-44da-bba4-4caa6fae9fc9"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "1977-01-02T02:16:14-05:00",
- "end": "1977-01-02T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8045aeba-7739-4d92-be17-b2666756c941"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271737000",
- "display": "Anemia (disorder)"
- }
- ],
- "text": "Anemia (disorder)"
- },
- "servicedPeriod": {
- "start": "1977-01-02T02:16:14-05:00",
- "end": "1977-01-02T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "resource": {
- "resourceType": "Organization",
- "id": "d692e283-0833-3201-8e55-4f868a9c0736",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "d692e283-0833-3201-8e55-4f868a9c0736"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "HALLMARK HEALTH SYSTEM",
- "telecom": [
- {
- "system": "phone",
- "value": "7819793000"
- }
- ],
- "address": [
- {
- "line": [
- "585 LEBANON STREET"
- ],
- "city": "MELROSE",
- "state": "MA",
- "postalCode": "02176",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-00000000010e",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "270"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Jenkins714",
- "given": [
- "Renato359"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Renato359.Jenkins714@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "585 LEBANON STREET"
- ],
- "city": "MELROSE",
- "state": "MA",
- "postalCode": "02176",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:06ef404c-3a39-4a55-a0ae-60ee3d52343a",
- "resource": {
- "resourceType": "Encounter",
- "id": "06ef404c-3a39-4a55-a0ae-60ee3d52343a",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1977-01-02T02:16:14-05:00",
- "end": "1977-01-02T03:45:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "271737000",
- "display": "Anemia (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:9e7b1f49-8b1b-4a7c-87ba-202ec3b26a56",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "9e7b1f49-8b1b-4a7c-87ba-202ec3b26a56",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "2001499",
- "display": "Vitamin B 12 5 MG/ML Injectable Solution"
- }
- ],
- "text": "Vitamin B 12 5 MG/ML Injectable Solution"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:06ef404c-3a39-4a55-a0ae-60ee3d52343a"
- },
- "authoredOn": "1977-01-02T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:4463603e-475a-4f3d-891b-f42ee0365d30",
- "resource": {
- "resourceType": "Claim",
- "id": "4463603e-475a-4f3d-891b-f42ee0365d30",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1977-01-02T02:16:14-05:00",
- "end": "1977-01-02T03:45:14-05:00"
- },
- "created": "1977-01-02T03:45:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:9e7b1f49-8b1b-4a7c-87ba-202ec3b26a56"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:06ef404c-3a39-4a55-a0ae-60ee3d52343a"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:55a36305-38ae-42a6-876e-95bb2062d3d8",
- "resource": {
- "resourceType": "Claim",
- "id": "55a36305-38ae-42a6-876e-95bb2062d3d8",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1977-01-02T02:16:14-05:00",
- "end": "1977-01-02T03:45:14-05:00"
- },
- "created": "1977-01-02T03:45:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:06ef404c-3a39-4a55-a0ae-60ee3d52343a"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f3b86199-a5f0-4df8-80cb-bcb1cf8b6111",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f3b86199-a5f0-4df8-80cb-bcb1cf8b6111",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "55a36305-38ae-42a6-876e-95bb2062d3d8"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1977-01-02T03:45:14-05:00",
- "end": "1978-01-02T03:45:14-05:00"
- },
- "created": "1977-01-02T03:45:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:55a36305-38ae-42a6-876e-95bb2062d3d8"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "servicedPeriod": {
- "start": "1977-01-02T02:16:14-05:00",
- "end": "1977-01-02T03:45:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:06ef404c-3a39-4a55-a0ae-60ee3d52343a"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:641439f1-f134-4fa4-90e5-e83d6c23d857",
- "resource": {
- "resourceType": "Encounter",
- "id": "641439f1-f134-4fa4-90e5-e83d6c23d857",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1985-12-18T02:16:14-05:00",
- "end": "1985-12-18T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "75498004",
- "display": "Acute bacterial sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:161bb05f-0665-420c-8fec-3f1bbc9a6f93",
- "resource": {
- "resourceType": "Condition",
- "id": "161bb05f-0665-420c-8fec-3f1bbc9a6f93",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:641439f1-f134-4fa4-90e5-e83d6c23d857"
- },
- "onsetDateTime": "1985-12-18T02:16:14-05:00",
- "abatementDateTime": "1986-09-28T03:16:14-04:00",
- "recordedDate": "1985-12-18T02:16:14-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:57280a58-db9e-4a6f-a7db-6b30355f0601",
- "resource": {
- "resourceType": "Claim",
- "id": "57280a58-db9e-4a6f-a7db-6b30355f0601",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1985-12-18T02:16:14-05:00",
- "end": "1985-12-18T02:31:14-05:00"
- },
- "created": "1985-12-18T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:161bb05f-0665-420c-8fec-3f1bbc9a6f93"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:641439f1-f134-4fa4-90e5-e83d6c23d857"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:10446da7-8d8a-4295-baac-4503009609a8",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "10446da7-8d8a-4295-baac-4503009609a8",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "57280a58-db9e-4a6f-a7db-6b30355f0601"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1985-12-18T02:31:14-05:00",
- "end": "1986-12-18T02:31:14-05:00"
- },
- "created": "1985-12-18T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:57280a58-db9e-4a6f-a7db-6b30355f0601"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:161bb05f-0665-420c-8fec-3f1bbc9a6f93"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "1985-12-18T02:16:14-05:00",
- "end": "1985-12-18T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:641439f1-f134-4fa4-90e5-e83d6c23d857"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "1985-12-18T02:16:14-05:00",
- "end": "1985-12-18T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:2d0073f2-c711-4ed7-8949-dd887544e31a",
- "resource": {
- "resourceType": "Encounter",
- "id": "2d0073f2-c711-4ed7-8949-dd887544e31a",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1987-01-01T02:16:14-05:00",
- "end": "1987-01-01T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "75498004",
- "display": "Acute bacterial sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:cb366008-a2b6-45c1-8178-9444c1b200ed",
- "resource": {
- "resourceType": "Condition",
- "id": "cb366008-a2b6-45c1-8178-9444c1b200ed",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:2d0073f2-c711-4ed7-8949-dd887544e31a"
- },
- "onsetDateTime": "1987-01-01T02:16:14-05:00",
- "recordedDate": "1987-01-01T02:16:14-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:4c8a6e18-cc27-4dcb-beb1-aadbfd549769",
- "resource": {
- "resourceType": "Claim",
- "id": "4c8a6e18-cc27-4dcb-beb1-aadbfd549769",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1987-01-01T02:16:14-05:00",
- "end": "1987-01-01T02:31:14-05:00"
- },
- "created": "1987-01-01T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:cb366008-a2b6-45c1-8178-9444c1b200ed"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:2d0073f2-c711-4ed7-8949-dd887544e31a"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:46b59ef0-b9ba-4d2a-998e-b84460a886fb",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "46b59ef0-b9ba-4d2a-998e-b84460a886fb",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "4c8a6e18-cc27-4dcb-beb1-aadbfd549769"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1987-01-01T02:31:14-05:00",
- "end": "1988-01-01T02:31:14-05:00"
- },
- "created": "1987-01-01T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:4c8a6e18-cc27-4dcb-beb1-aadbfd549769"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:cb366008-a2b6-45c1-8178-9444c1b200ed"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "1987-01-01T02:16:14-05:00",
- "end": "1987-01-01T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:2d0073f2-c711-4ed7-8949-dd887544e31a"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "40055000",
- "display": "Chronic sinusitis (disorder)"
- }
- ],
- "text": "Chronic sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "1987-01-01T02:16:14-05:00",
- "end": "1987-01-01T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3e9ad956-8692-418b-8c32-200c5d6a98fa",
- "resource": {
- "resourceType": "Encounter",
- "id": "3e9ad956-8692-418b-8c32-200c5d6a98fa",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "1989-01-22T02:16:14-05:00",
- "end": "1989-01-22T02:46:14-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11",
- "resource": {
- "resourceType": "Condition",
- "id": "c88de552-d765-477f-9155-55ff641b3b11",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ],
- "text": "Hyperlipidemia"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3e9ad956-8692-418b-8c32-200c5d6a98fa"
- },
- "onsetDateTime": "1989-01-22T02:16:14-05:00",
- "recordedDate": "1989-01-22T02:16:14-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:47533461-bcf0-4723-a4a6-b6bd07a8f935",
- "resource": {
- "resourceType": "Claim",
- "id": "47533461-bcf0-4723-a4a6-b6bd07a8f935",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1989-01-22T02:16:14-05:00",
- "end": "1989-01-22T02:46:14-05:00"
- },
- "created": "1989-01-22T02:46:14-05:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3e9ad956-8692-418b-8c32-200c5d6a98fa"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ],
- "text": "Hyperlipidemia"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9713abd7-3ea5-4d4e-b7d0-b2ef9d1dd24f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9713abd7-3ea5-4d4e-b7d0-b2ef9d1dd24f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "47533461-bcf0-4723-a4a6-b6bd07a8f935"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1989-01-22T02:46:14-05:00",
- "end": "1990-01-22T02:46:14-05:00"
- },
- "created": "1989-01-22T02:46:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:47533461-bcf0-4723-a4a6-b6bd07a8f935"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "1989-01-22T02:16:14-05:00",
- "end": "1989-01-22T02:46:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3e9ad956-8692-418b-8c32-200c5d6a98fa"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ],
- "text": "Hyperlipidemia"
- },
- "servicedPeriod": {
- "start": "1989-01-22T02:16:14-05:00",
- "end": "1989-01-22T02:46:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8283d563-fb69-4c9b-9ff2-d77bfad9f081",
- "resource": {
- "resourceType": "Encounter",
- "id": "8283d563-fb69-4c9b-9ff2-d77bfad9f081",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1989-02-12T02:16:14-05:00",
- "end": "1989-02-12T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:44bbafa6-83d4-4590-8e71-f86566c94a3b",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "44bbafa6-83d4-4590-8e71-f86566c94a3b",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:8283d563-fb69-4c9b-9ff2-d77bfad9f081"
- },
- "authoredOn": "1989-02-12T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:d0d66112-ab0a-44d8-be94-c9e3be2c949e",
- "resource": {
- "resourceType": "Claim",
- "id": "d0d66112-ab0a-44d8-be94-c9e3be2c949e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1989-02-12T02:16:14-05:00",
- "end": "1989-02-12T02:31:14-05:00"
- },
- "created": "1989-02-12T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:44bbafa6-83d4-4590-8e71-f86566c94a3b"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8283d563-fb69-4c9b-9ff2-d77bfad9f081"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:42309e2e-ebb3-4f8d-b9a5-74f8b2697666",
- "resource": {
- "resourceType": "CareTeam",
- "id": "42309e2e-ebb3-4f8d-b9a5-74f8b2697666",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:8283d563-fb69-4c9b-9ff2-d77bfad9f081"
- },
- "period": {
- "start": "1989-02-12T02:16:14-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ],
- "text": "Hyperlipidemia"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:c141ccf8-1c55-42cc-ad59-3c1c432affc0",
- "resource": {
- "resourceType": "CarePlan",
- "id": "c141ccf8-1c55-42cc-ad59-3c1c432affc0",
- "text": {
- "status": "generated",
- "div": "Care Plan for Hyperlipidemia clinical management plan.
Activities:
- Hyperlipidemia clinical management plan
- Hyperlipidemia clinical management plan
Care plan is meant to treat Hyperlipidemia.
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "736285004",
- "display": "Hyperlipidemia clinical management plan"
- }
- ],
- "text": "Hyperlipidemia clinical management plan"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:8283d563-fb69-4c9b-9ff2-d77bfad9f081"
- },
- "period": {
- "start": "1989-02-12T02:16:14-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:42309e2e-ebb3-4f8d-b9a5-74f8b2697666"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183063000",
- "display": "low salt diet education"
- }
- ],
- "text": "low salt diet education"
- },
- "status": "in-progress",
- "location": {
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183301007",
- "display": "physical exercise"
- }
- ],
- "text": "physical exercise"
- },
- "status": "in-progress",
- "location": {
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:c598a806-2225-4b3e-b6bd-5eba2a25f216",
- "resource": {
- "resourceType": "Claim",
- "id": "c598a806-2225-4b3e-b6bd-5eba2a25f216",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1989-02-12T02:16:14-05:00",
- "end": "1989-02-12T02:31:14-05:00"
- },
- "created": "1989-02-12T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8283d563-fb69-4c9b-9ff2-d77bfad9f081"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:032dc16f-273c-4ede-a921-2e0864d4ede7",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "032dc16f-273c-4ede-a921-2e0864d4ede7",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c598a806-2225-4b3e-b6bd-5eba2a25f216"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1989-02-12T02:31:14-05:00",
- "end": "1990-02-12T02:31:14-05:00"
- },
- "created": "1989-02-12T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c598a806-2225-4b3e-b6bd-5eba2a25f216"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "1989-02-12T02:16:14-05:00",
- "end": "1989-02-12T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8283d563-fb69-4c9b-9ff2-d77bfad9f081"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:4d123b1e-0fe2-401a-b5ee-962d18745c36",
- "resource": {
- "resourceType": "Encounter",
- "id": "4d123b1e-0fe2-401a-b5ee-962d18745c36",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1990-02-12T02:16:14-05:00",
- "end": "1990-02-12T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b3b56bc6-0979-4c9c-9d47-cbaa781c61ce",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "b3b56bc6-0979-4c9c-9d47-cbaa781c61ce",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:4d123b1e-0fe2-401a-b5ee-962d18745c36"
- },
- "authoredOn": "1990-02-12T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:25c50e08-64ad-4b24-ab2e-7fade1d8e62b",
- "resource": {
- "resourceType": "Claim",
- "id": "25c50e08-64ad-4b24-ab2e-7fade1d8e62b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1990-02-12T02:16:14-05:00",
- "end": "1990-02-12T02:31:14-05:00"
- },
- "created": "1990-02-12T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:b3b56bc6-0979-4c9c-9d47-cbaa781c61ce"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:4d123b1e-0fe2-401a-b5ee-962d18745c36"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b5782ba8-615e-4209-ae42-317d1fc36024",
- "resource": {
- "resourceType": "Claim",
- "id": "b5782ba8-615e-4209-ae42-317d1fc36024",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1990-02-12T02:16:14-05:00",
- "end": "1990-02-12T02:31:14-05:00"
- },
- "created": "1990-02-12T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:4d123b1e-0fe2-401a-b5ee-962d18745c36"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:249d6129-0dd4-4b33-abec-f47fc91166d5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "249d6129-0dd4-4b33-abec-f47fc91166d5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b5782ba8-615e-4209-ae42-317d1fc36024"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1990-02-12T02:31:14-05:00",
- "end": "1991-02-12T02:31:14-05:00"
- },
- "created": "1990-02-12T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b5782ba8-615e-4209-ae42-317d1fc36024"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "1990-02-12T02:16:14-05:00",
- "end": "1990-02-12T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:4d123b1e-0fe2-401a-b5ee-962d18745c36"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:157267b1-d25c-440d-a931-9d8ec4dab050",
- "resource": {
- "resourceType": "Encounter",
- "id": "157267b1-d25c-440d-a931-9d8ec4dab050",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1990-12-04T02:16:14-05:00",
- "end": "1990-12-04T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "201834006",
- "display": "Localized, primary osteoarthritis of the hand"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:37ee4665-1157-4f9f-82a4-4610d8272ae9",
- "resource": {
- "resourceType": "Condition",
- "id": "37ee4665-1157-4f9f-82a4-4610d8272ae9",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "201834006",
- "display": "Localized, primary osteoarthritis of the hand"
- }
- ],
- "text": "Localized, primary osteoarthritis of the hand"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:157267b1-d25c-440d-a931-9d8ec4dab050"
- },
- "onsetDateTime": "1990-12-04T02:16:14-05:00",
- "recordedDate": "1990-12-04T02:16:14-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:72821232-9bb7-45fb-9dde-e60cb7a55c9c",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "72821232-9bb7-45fb-9dde-e60cb7a55c9c",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "849574",
- "display": "Naproxen sodium 220 MG Oral Tablet"
- }
- ],
- "text": "Naproxen sodium 220 MG Oral Tablet"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:157267b1-d25c-440d-a931-9d8ec4dab050"
- },
- "authoredOn": "1990-12-04T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:37ee4665-1157-4f9f-82a4-4610d8272ae9"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:98d21205-7728-4f7d-a283-ce8d630935a8",
- "resource": {
- "resourceType": "Claim",
- "id": "98d21205-7728-4f7d-a283-ce8d630935a8",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1990-12-04T02:16:14-05:00",
- "end": "1990-12-04T02:31:14-05:00"
- },
- "created": "1990-12-04T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:72821232-9bb7-45fb-9dde-e60cb7a55c9c"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:157267b1-d25c-440d-a931-9d8ec4dab050"
- }
- ]
- }
- ],
- "total": {
- "value": 19.01,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e07f1675-6a79-4371-9e57-c3e2081f15a6",
- "resource": {
- "resourceType": "CareTeam",
- "id": "e07f1675-6a79-4371-9e57-c3e2081f15a6",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:157267b1-d25c-440d-a931-9d8ec4dab050"
- },
- "period": {
- "start": "1990-12-04T02:16:14-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "201834006",
- "display": "Localized, primary osteoarthritis of the hand"
- }
- ],
- "text": "Localized, primary osteoarthritis of the hand"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:609b1f7a-1321-461f-a382-6f33adf8ecca",
- "resource": {
- "resourceType": "CarePlan",
- "id": "609b1f7a-1321-461f-a382-6f33adf8ecca",
- "text": {
- "status": "generated",
- "div": "Care Plan for Musculoskeletal care.
Activities:
- Musculoskeletal care
- Musculoskeletal care
Care plan is meant to treat Localized, primary osteoarthritis of the hand.
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "408869004",
- "display": "Musculoskeletal care"
- }
- ],
- "text": "Musculoskeletal care"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:157267b1-d25c-440d-a931-9d8ec4dab050"
- },
- "period": {
- "start": "1990-12-04T02:16:14-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:e07f1675-6a79-4371-9e57-c3e2081f15a6"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:37ee4665-1157-4f9f-82a4-4610d8272ae9"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "386294003",
- "display": "Joint mobility exercises"
- }
- ],
- "text": "Joint mobility exercises"
- },
- "status": "in-progress",
- "location": {
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266694003",
- "display": "Heat therapy"
- }
- ],
- "text": "Heat therapy"
- },
- "status": "in-progress",
- "location": {
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:53ad9604-2d9e-46db-ad29-e9264137a9e9",
- "resource": {
- "resourceType": "Claim",
- "id": "53ad9604-2d9e-46db-ad29-e9264137a9e9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1990-12-04T02:16:14-05:00",
- "end": "1990-12-04T02:31:14-05:00"
- },
- "created": "1990-12-04T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:37ee4665-1157-4f9f-82a4-4610d8272ae9"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:157267b1-d25c-440d-a931-9d8ec4dab050"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "201834006",
- "display": "Localized, primary osteoarthritis of the hand"
- }
- ],
- "text": "Localized, primary osteoarthritis of the hand"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:93e23a3c-0455-4e68-a879-cccb0527291a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "93e23a3c-0455-4e68-a879-cccb0527291a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "53ad9604-2d9e-46db-ad29-e9264137a9e9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1990-12-04T02:31:14-05:00",
- "end": "1991-12-04T02:31:14-05:00"
- },
- "created": "1990-12-04T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:53ad9604-2d9e-46db-ad29-e9264137a9e9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:37ee4665-1157-4f9f-82a4-4610d8272ae9"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "servicedPeriod": {
- "start": "1990-12-04T02:16:14-05:00",
- "end": "1990-12-04T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:157267b1-d25c-440d-a931-9d8ec4dab050"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "201834006",
- "display": "Localized, primary osteoarthritis of the hand"
- }
- ],
- "text": "Localized, primary osteoarthritis of the hand"
- },
- "servicedPeriod": {
- "start": "1990-12-04T02:16:14-05:00",
- "end": "1990-12-04T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:56316946-b7da-4a2b-af7e-c6b1f862f28e",
- "resource": {
- "resourceType": "Encounter",
- "id": "56316946-b7da-4a2b-af7e-c6b1f862f28e",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1991-02-12T02:16:14-05:00",
- "end": "1991-02-12T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c4a8a87a-ea64-4151-850a-a936e17fd8be",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "c4a8a87a-ea64-4151-850a-a936e17fd8be",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:56316946-b7da-4a2b-af7e-c6b1f862f28e"
- },
- "authoredOn": "1991-02-12T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:6d68e9cf-ab35-44e1-a0f8-3b84b975c1b5",
- "resource": {
- "resourceType": "Claim",
- "id": "6d68e9cf-ab35-44e1-a0f8-3b84b975c1b5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1991-02-12T02:16:14-05:00",
- "end": "1991-02-12T02:31:14-05:00"
- },
- "created": "1991-02-12T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:c4a8a87a-ea64-4151-850a-a936e17fd8be"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:56316946-b7da-4a2b-af7e-c6b1f862f28e"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0a69b62f-1614-4621-b647-78549131e2c5",
- "resource": {
- "resourceType": "Claim",
- "id": "0a69b62f-1614-4621-b647-78549131e2c5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1991-02-12T02:16:14-05:00",
- "end": "1991-02-12T02:31:14-05:00"
- },
- "created": "1991-02-12T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:56316946-b7da-4a2b-af7e-c6b1f862f28e"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e70d93d4-64c6-46ca-8e51-476519e8e956",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "e70d93d4-64c6-46ca-8e51-476519e8e956",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "0a69b62f-1614-4621-b647-78549131e2c5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1991-02-12T02:31:14-05:00",
- "end": "1992-02-12T02:31:14-05:00"
- },
- "created": "1991-02-12T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:0a69b62f-1614-4621-b647-78549131e2c5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "1991-02-12T02:16:14-05:00",
- "end": "1991-02-12T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:56316946-b7da-4a2b-af7e-c6b1f862f28e"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:40467fb2-dae1-4643-84d6-a45ba6e31d25",
- "resource": {
- "resourceType": "Encounter",
- "id": "40467fb2-dae1-4643-84d6-a45ba6e31d25",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1992-02-12T02:16:14-05:00",
- "end": "1992-02-12T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2f6c2083-c7e2-427d-a7cc-da9721c63373",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "2f6c2083-c7e2-427d-a7cc-da9721c63373",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:40467fb2-dae1-4643-84d6-a45ba6e31d25"
- },
- "authoredOn": "1992-02-12T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:ce5fe5da-6522-41d6-9fb5-e7ed2cf31a76",
- "resource": {
- "resourceType": "Claim",
- "id": "ce5fe5da-6522-41d6-9fb5-e7ed2cf31a76",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1992-02-12T02:16:14-05:00",
- "end": "1992-02-12T02:31:14-05:00"
- },
- "created": "1992-02-12T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:2f6c2083-c7e2-427d-a7cc-da9721c63373"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:40467fb2-dae1-4643-84d6-a45ba6e31d25"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:fbc999c7-d51e-43c5-bb3b-6c0e46b241df",
- "resource": {
- "resourceType": "Claim",
- "id": "fbc999c7-d51e-43c5-bb3b-6c0e46b241df",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1992-02-12T02:16:14-05:00",
- "end": "1992-02-12T02:31:14-05:00"
- },
- "created": "1992-02-12T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:40467fb2-dae1-4643-84d6-a45ba6e31d25"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:8d1c7a89-917e-496e-a81c-f0f4071de296",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "8d1c7a89-917e-496e-a81c-f0f4071de296",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "fbc999c7-d51e-43c5-bb3b-6c0e46b241df"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1992-02-12T02:31:14-05:00",
- "end": "1993-02-12T02:31:14-05:00"
- },
- "created": "1992-02-12T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:fbc999c7-d51e-43c5-bb3b-6c0e46b241df"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "1992-02-12T02:16:14-05:00",
- "end": "1992-02-12T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:40467fb2-dae1-4643-84d6-a45ba6e31d25"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8969fa20-fafd-497f-a073-aa3b7ba4c0c6",
- "resource": {
- "resourceType": "Encounter",
- "id": "8969fa20-fafd-497f-a073-aa3b7ba4c0c6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1993-02-11T02:16:14-05:00",
- "end": "1993-02-11T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a03bf7ce-ac4e-4c93-9a31-f240867207dd",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "a03bf7ce-ac4e-4c93-9a31-f240867207dd",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:8969fa20-fafd-497f-a073-aa3b7ba4c0c6"
- },
- "authoredOn": "1993-02-11T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:af86867c-4e74-41f4-b367-1d013072dfd2",
- "resource": {
- "resourceType": "Claim",
- "id": "af86867c-4e74-41f4-b367-1d013072dfd2",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1993-02-11T02:16:14-05:00",
- "end": "1993-02-11T02:31:14-05:00"
- },
- "created": "1993-02-11T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:a03bf7ce-ac4e-4c93-9a31-f240867207dd"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8969fa20-fafd-497f-a073-aa3b7ba4c0c6"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:432b9304-60c1-47a9-a5d0-751d1faed46e",
- "resource": {
- "resourceType": "Claim",
- "id": "432b9304-60c1-47a9-a5d0-751d1faed46e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1993-02-11T02:16:14-05:00",
- "end": "1993-02-11T02:31:14-05:00"
- },
- "created": "1993-02-11T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8969fa20-fafd-497f-a073-aa3b7ba4c0c6"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:fd9cf05a-7242-47de-91f2-48e4ceff8616",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "fd9cf05a-7242-47de-91f2-48e4ceff8616",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "432b9304-60c1-47a9-a5d0-751d1faed46e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1993-02-11T02:31:14-05:00",
- "end": "1994-02-11T02:31:14-05:00"
- },
- "created": "1993-02-11T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:432b9304-60c1-47a9-a5d0-751d1faed46e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "1993-02-11T02:16:14-05:00",
- "end": "1993-02-11T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8969fa20-fafd-497f-a073-aa3b7ba4c0c6"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:b16f761c-0849-4080-9017-2a7d91ad2e90",
- "resource": {
- "resourceType": "Encounter",
- "id": "b16f761c-0849-4080-9017-2a7d91ad2e90",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1994-02-11T02:16:14-05:00",
- "end": "1994-02-11T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:ffc550d6-4b71-4218-828a-c5835df18ff1",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "ffc550d6-4b71-4218-828a-c5835df18ff1",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b16f761c-0849-4080-9017-2a7d91ad2e90"
- },
- "authoredOn": "1994-02-11T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:d646f88b-fcb1-41e0-a37a-265087ae394e",
- "resource": {
- "resourceType": "Claim",
- "id": "d646f88b-fcb1-41e0-a37a-265087ae394e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1994-02-11T02:16:14-05:00",
- "end": "1994-02-11T02:31:14-05:00"
- },
- "created": "1994-02-11T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:ffc550d6-4b71-4218-828a-c5835df18ff1"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:b16f761c-0849-4080-9017-2a7d91ad2e90"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1f79c352-e6aa-4402-b559-42ecd1a941a5",
- "resource": {
- "resourceType": "Claim",
- "id": "1f79c352-e6aa-4402-b559-42ecd1a941a5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1994-02-11T02:16:14-05:00",
- "end": "1994-02-11T02:31:14-05:00"
- },
- "created": "1994-02-11T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:b16f761c-0849-4080-9017-2a7d91ad2e90"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b61edefc-dbd7-4d5e-b80e-01b38dd04b54",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "b61edefc-dbd7-4d5e-b80e-01b38dd04b54",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "1f79c352-e6aa-4402-b559-42ecd1a941a5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1994-02-11T02:31:14-05:00",
- "end": "1995-02-11T02:31:14-05:00"
- },
- "created": "1994-02-11T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:1f79c352-e6aa-4402-b559-42ecd1a941a5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "1994-02-11T02:16:14-05:00",
- "end": "1994-02-11T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:b16f761c-0849-4080-9017-2a7d91ad2e90"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:5bbb8a58-cc6f-4a34-b415-2c10fe49745d",
- "resource": {
- "resourceType": "Encounter",
- "id": "5bbb8a58-cc6f-4a34-b415-2c10fe49745d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1995-02-11T02:16:14-05:00",
- "end": "1995-02-11T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2b145b80-87e8-4ffd-8b05-ea783d63e22d",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "2b145b80-87e8-4ffd-8b05-ea783d63e22d",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5bbb8a58-cc6f-4a34-b415-2c10fe49745d"
- },
- "authoredOn": "1995-02-11T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:8d200946-c792-4067-b4b0-f3d36301342e",
- "resource": {
- "resourceType": "Claim",
- "id": "8d200946-c792-4067-b4b0-f3d36301342e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1995-02-11T02:16:14-05:00",
- "end": "1995-02-11T02:31:14-05:00"
- },
- "created": "1995-02-11T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:2b145b80-87e8-4ffd-8b05-ea783d63e22d"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:5bbb8a58-cc6f-4a34-b415-2c10fe49745d"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:24cb0c8b-8215-4bf8-9e64-b1e16b9aef82",
- "resource": {
- "resourceType": "Claim",
- "id": "24cb0c8b-8215-4bf8-9e64-b1e16b9aef82",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1995-02-11T02:16:14-05:00",
- "end": "1995-02-11T02:31:14-05:00"
- },
- "created": "1995-02-11T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:5bbb8a58-cc6f-4a34-b415-2c10fe49745d"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:41118bca-3f95-4ea8-8cd3-f7cc3119378d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "41118bca-3f95-4ea8-8cd3-f7cc3119378d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "24cb0c8b-8215-4bf8-9e64-b1e16b9aef82"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1995-02-11T02:31:14-05:00",
- "end": "1996-02-11T02:31:14-05:00"
- },
- "created": "1995-02-11T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:24cb0c8b-8215-4bf8-9e64-b1e16b9aef82"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "1995-02-11T02:16:14-05:00",
- "end": "1995-02-11T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:5bbb8a58-cc6f-4a34-b415-2c10fe49745d"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:aeca376d-2cdb-418d-b180-6ad74e281ab5",
- "resource": {
- "resourceType": "Encounter",
- "id": "aeca376d-2cdb-418d-b180-6ad74e281ab5",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1996-02-11T02:16:14-05:00",
- "end": "1996-02-11T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:252254e0-df04-4141-b28d-4c256450c83e",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "252254e0-df04-4141-b28d-4c256450c83e",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:aeca376d-2cdb-418d-b180-6ad74e281ab5"
- },
- "authoredOn": "1996-02-11T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:dc5bc84b-240f-4199-9bba-5d6c741e858f",
- "resource": {
- "resourceType": "Claim",
- "id": "dc5bc84b-240f-4199-9bba-5d6c741e858f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1996-02-11T02:16:14-05:00",
- "end": "1996-02-11T02:31:14-05:00"
- },
- "created": "1996-02-11T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:252254e0-df04-4141-b28d-4c256450c83e"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:aeca376d-2cdb-418d-b180-6ad74e281ab5"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:7689f5c1-84cf-4adc-9fe2-e2b0cc0b3ee6",
- "resource": {
- "resourceType": "Claim",
- "id": "7689f5c1-84cf-4adc-9fe2-e2b0cc0b3ee6",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1996-02-11T02:16:14-05:00",
- "end": "1996-02-11T02:31:14-05:00"
- },
- "created": "1996-02-11T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:aeca376d-2cdb-418d-b180-6ad74e281ab5"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:bf07238d-9b6c-4749-9c73-84c28b88d47a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "bf07238d-9b6c-4749-9c73-84c28b88d47a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "7689f5c1-84cf-4adc-9fe2-e2b0cc0b3ee6"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1996-02-11T02:31:14-05:00",
- "end": "1997-02-11T02:31:14-05:00"
- },
- "created": "1996-02-11T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:7689f5c1-84cf-4adc-9fe2-e2b0cc0b3ee6"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "1996-02-11T02:16:14-05:00",
- "end": "1996-02-11T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:aeca376d-2cdb-418d-b180-6ad74e281ab5"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:dd195652-2cdc-4e16-83ae-c28c4163f2dd",
- "resource": {
- "resourceType": "Encounter",
- "id": "dd195652-2cdc-4e16-83ae-c28c4163f2dd",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1997-02-10T02:16:14-05:00",
- "end": "1997-02-10T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d9f83cba-78d5-4fe3-b40a-0191512b802a",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "d9f83cba-78d5-4fe3-b40a-0191512b802a",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dd195652-2cdc-4e16-83ae-c28c4163f2dd"
- },
- "authoredOn": "1997-02-10T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:52e0e7f5-45b6-4308-a98a-ecfb073865d9",
- "resource": {
- "resourceType": "Claim",
- "id": "52e0e7f5-45b6-4308-a98a-ecfb073865d9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1997-02-10T02:16:14-05:00",
- "end": "1997-02-10T02:31:14-05:00"
- },
- "created": "1997-02-10T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:d9f83cba-78d5-4fe3-b40a-0191512b802a"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:dd195652-2cdc-4e16-83ae-c28c4163f2dd"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:c0b61fd4-8502-4395-a1ce-23ad4de20d98",
- "resource": {
- "resourceType": "Claim",
- "id": "c0b61fd4-8502-4395-a1ce-23ad4de20d98",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1997-02-10T02:16:14-05:00",
- "end": "1997-02-10T02:31:14-05:00"
- },
- "created": "1997-02-10T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:dd195652-2cdc-4e16-83ae-c28c4163f2dd"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0d6d59b6-c9c9-406f-b01f-727f151cf7b9",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0d6d59b6-c9c9-406f-b01f-727f151cf7b9",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "UnitedHealthcare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "UnitedHealthcare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c0b61fd4-8502-4395-a1ce-23ad4de20d98"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1997-02-10T02:31:14-05:00",
- "end": "1998-02-10T02:31:14-05:00"
- },
- "created": "1997-02-10T02:31:14-05:00",
- "insurer": {
- "display": "UnitedHealthcare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c0b61fd4-8502-4395-a1ce-23ad4de20d98"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "UnitedHealthcare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "1997-02-10T02:16:14-05:00",
- "end": "1997-02-10T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:dd195652-2cdc-4e16-83ae-c28c4163f2dd"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a090227b-18c0-42e4-be8e-2890033bb165",
- "resource": {
- "resourceType": "Encounter",
- "id": "a090227b-18c0-42e4-be8e-2890033bb165",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1998-02-10T02:16:14-05:00",
- "end": "1998-02-10T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:6336c649-fce6-41d7-80f9-8e8a605bc2ef",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "6336c649-fce6-41d7-80f9-8e8a605bc2ef",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:a090227b-18c0-42e4-be8e-2890033bb165"
- },
- "authoredOn": "1998-02-10T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:3a56c0e4-abd4-4138-9a21-c8136f1ade30",
- "resource": {
- "resourceType": "Claim",
- "id": "3a56c0e4-abd4-4138-9a21-c8136f1ade30",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1998-02-10T02:16:14-05:00",
- "end": "1998-02-10T02:31:14-05:00"
- },
- "created": "1998-02-10T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:6336c649-fce6-41d7-80f9-8e8a605bc2ef"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a090227b-18c0-42e4-be8e-2890033bb165"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:515ec0fc-1515-4183-9572-5fa8909894f8",
- "resource": {
- "resourceType": "Claim",
- "id": "515ec0fc-1515-4183-9572-5fa8909894f8",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1998-02-10T02:16:14-05:00",
- "end": "1998-02-10T02:31:14-05:00"
- },
- "created": "1998-02-10T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a090227b-18c0-42e4-be8e-2890033bb165"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:8c2dd5f7-1d9a-47b6-a407-a45cb31ed987",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "8c2dd5f7-1d9a-47b6-a407-a45cb31ed987",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "515ec0fc-1515-4183-9572-5fa8909894f8"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1998-02-10T02:31:14-05:00",
- "end": "1999-02-10T02:31:14-05:00"
- },
- "created": "1998-02-10T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:515ec0fc-1515-4183-9572-5fa8909894f8"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "1998-02-10T02:16:14-05:00",
- "end": "1998-02-10T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:a090227b-18c0-42e4-be8e-2890033bb165"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f9c481ca-b733-4fb5-a4fa-a21c7adbd917",
- "resource": {
- "resourceType": "Encounter",
- "id": "f9c481ca-b733-4fb5-a4fa-a21c7adbd917",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "1999-02-10T02:16:14-05:00",
- "end": "1999-02-10T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:7750b881-bdaf-4355-a6d3-f30d29b0d0e9",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "7750b881-bdaf-4355-a6d3-f30d29b0d0e9",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f9c481ca-b733-4fb5-a4fa-a21c7adbd917"
- },
- "authoredOn": "1999-02-10T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:aab24d74-ff2e-4223-81ca-2c63d95f9630",
- "resource": {
- "resourceType": "Claim",
- "id": "aab24d74-ff2e-4223-81ca-2c63d95f9630",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1999-02-10T02:16:14-05:00",
- "end": "1999-02-10T02:31:14-05:00"
- },
- "created": "1999-02-10T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:7750b881-bdaf-4355-a6d3-f30d29b0d0e9"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f9c481ca-b733-4fb5-a4fa-a21c7adbd917"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:a80fa248-5065-4df2-a4a1-5fea894005b2",
- "resource": {
- "resourceType": "Claim",
- "id": "a80fa248-5065-4df2-a4a1-5fea894005b2",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "1999-02-10T02:16:14-05:00",
- "end": "1999-02-10T02:31:14-05:00"
- },
- "created": "1999-02-10T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f9c481ca-b733-4fb5-a4fa-a21c7adbd917"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:52137c4f-c1b8-4cc1-8f25-bc7a181d1938",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "52137c4f-c1b8-4cc1-8f25-bc7a181d1938",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "a80fa248-5065-4df2-a4a1-5fea894005b2"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "1999-02-10T02:31:14-05:00",
- "end": "2000-02-10T02:31:14-05:00"
- },
- "created": "1999-02-10T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:a80fa248-5065-4df2-a4a1-5fea894005b2"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "1999-02-10T02:16:14-05:00",
- "end": "1999-02-10T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f9c481ca-b733-4fb5-a4fa-a21c7adbd917"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c14f33a4-b499-47d4-a65d-c338aa334978",
- "resource": {
- "resourceType": "Encounter",
- "id": "c14f33a4-b499-47d4-a65d-c338aa334978",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2000-02-10T02:16:14-05:00",
- "end": "2000-02-10T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:1bb13df4-db3f-481b-8c82-8543821696cd",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "1bb13df4-db3f-481b-8c82-8543821696cd",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c14f33a4-b499-47d4-a65d-c338aa334978"
- },
- "authoredOn": "2000-02-10T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:ec7a005e-549f-4a76-8243-56f27c0bd586",
- "resource": {
- "resourceType": "Claim",
- "id": "ec7a005e-549f-4a76-8243-56f27c0bd586",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2000-02-10T02:16:14-05:00",
- "end": "2000-02-10T02:31:14-05:00"
- },
- "created": "2000-02-10T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:1bb13df4-db3f-481b-8c82-8543821696cd"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c14f33a4-b499-47d4-a65d-c338aa334978"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:79809715-c994-4402-884c-004b22595734",
- "resource": {
- "resourceType": "Claim",
- "id": "79809715-c994-4402-884c-004b22595734",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2000-02-10T02:16:14-05:00",
- "end": "2000-02-10T02:31:14-05:00"
- },
- "created": "2000-02-10T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c14f33a4-b499-47d4-a65d-c338aa334978"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:38cf0360-7e52-4ece-ab87-d72ddb98645b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "38cf0360-7e52-4ece-ab87-d72ddb98645b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "79809715-c994-4402-884c-004b22595734"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2000-02-10T02:31:14-05:00",
- "end": "2001-02-10T02:31:14-05:00"
- },
- "created": "2000-02-10T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:79809715-c994-4402-884c-004b22595734"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2000-02-10T02:16:14-05:00",
- "end": "2000-02-10T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c14f33a4-b499-47d4-a65d-c338aa334978"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3668cab8-7078-4a83-81fb-525e6f9d20c4",
- "resource": {
- "resourceType": "Encounter",
- "id": "3668cab8-7078-4a83-81fb-525e6f9d20c4",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2001-02-09T02:16:14-05:00",
- "end": "2001-02-09T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:7483b8fd-eb87-4f49-86ae-498d10829dc3",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "7483b8fd-eb87-4f49-86ae-498d10829dc3",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3668cab8-7078-4a83-81fb-525e6f9d20c4"
- },
- "authoredOn": "2001-02-09T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:22bfc45e-33b9-4c27-8e58-2f1c1d62c1d5",
- "resource": {
- "resourceType": "Claim",
- "id": "22bfc45e-33b9-4c27-8e58-2f1c1d62c1d5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2001-02-09T02:16:14-05:00",
- "end": "2001-02-09T02:31:14-05:00"
- },
- "created": "2001-02-09T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:7483b8fd-eb87-4f49-86ae-498d10829dc3"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3668cab8-7078-4a83-81fb-525e6f9d20c4"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:96d77696-9568-4e08-bfdb-241ed90bce5e",
- "resource": {
- "resourceType": "Claim",
- "id": "96d77696-9568-4e08-bfdb-241ed90bce5e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2001-02-09T02:16:14-05:00",
- "end": "2001-02-09T02:31:14-05:00"
- },
- "created": "2001-02-09T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3668cab8-7078-4a83-81fb-525e6f9d20c4"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:6595fbc5-e15b-467b-824c-038130f3cea2",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "6595fbc5-e15b-467b-824c-038130f3cea2",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "96d77696-9568-4e08-bfdb-241ed90bce5e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2001-02-09T02:31:14-05:00",
- "end": "2002-02-09T02:31:14-05:00"
- },
- "created": "2001-02-09T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:96d77696-9568-4e08-bfdb-241ed90bce5e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2001-02-09T02:16:14-05:00",
- "end": "2001-02-09T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3668cab8-7078-4a83-81fb-525e6f9d20c4"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8a3596b1-6d3f-4721-9b44-45c40c1180c7",
- "resource": {
- "resourceType": "Encounter",
- "id": "8a3596b1-6d3f-4721-9b44-45c40c1180c7",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2002-02-09T02:16:14-05:00",
- "end": "2002-02-09T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:4c2530e7-4f48-4d19-b434-8872e6009b9e",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "4c2530e7-4f48-4d19-b434-8872e6009b9e",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:8a3596b1-6d3f-4721-9b44-45c40c1180c7"
- },
- "authoredOn": "2002-02-09T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:a837ea87-e66b-4bc6-94e8-7c7d68676d9e",
- "resource": {
- "resourceType": "Claim",
- "id": "a837ea87-e66b-4bc6-94e8-7c7d68676d9e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2002-02-09T02:16:14-05:00",
- "end": "2002-02-09T02:31:14-05:00"
- },
- "created": "2002-02-09T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:4c2530e7-4f48-4d19-b434-8872e6009b9e"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8a3596b1-6d3f-4721-9b44-45c40c1180c7"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5f6b845c-0923-4163-aebf-635f502e318a",
- "resource": {
- "resourceType": "Claim",
- "id": "5f6b845c-0923-4163-aebf-635f502e318a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2002-02-09T02:16:14-05:00",
- "end": "2002-02-09T02:31:14-05:00"
- },
- "created": "2002-02-09T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8a3596b1-6d3f-4721-9b44-45c40c1180c7"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3753c49e-dfa5-43e7-bc9a-bb3109162c87",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3753c49e-dfa5-43e7-bc9a-bb3109162c87",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5f6b845c-0923-4163-aebf-635f502e318a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2002-02-09T02:31:14-05:00",
- "end": "2003-02-09T02:31:14-05:00"
- },
- "created": "2002-02-09T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5f6b845c-0923-4163-aebf-635f502e318a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2002-02-09T02:16:14-05:00",
- "end": "2002-02-09T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8a3596b1-6d3f-4721-9b44-45c40c1180c7"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a1462b6d-647f-4a66-8a41-ec9d0cc1258b",
- "resource": {
- "resourceType": "Encounter",
- "id": "a1462b6d-647f-4a66-8a41-ec9d0cc1258b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "230690007",
- "display": "Stroke"
- }
- ],
- "text": "Stroke"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2002-10-27T02:16:14-05:00",
- "end": "2002-10-27T03:46:14-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:06c41e43-680b-49f4-9be3-3c42d1d22a74",
- "resource": {
- "resourceType": "Condition",
- "id": "06c41e43-680b-49f4-9be3-3c42d1d22a74",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "230690007",
- "display": "Stroke"
- }
- ],
- "text": "Stroke"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:a1462b6d-647f-4a66-8a41-ec9d0cc1258b"
- },
- "onsetDateTime": "2002-10-27T02:16:14-05:00",
- "recordedDate": "2002-10-27T02:16:14-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:3eb2abba-7252-4122-8e75-9053cf819fa4",
- "resource": {
- "resourceType": "Claim",
- "id": "3eb2abba-7252-4122-8e75-9053cf819fa4",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2002-10-27T02:16:14-05:00",
- "end": "2002-10-27T03:46:14-05:00"
- },
- "created": "2002-10-27T03:46:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:06c41e43-680b-49f4-9be3-3c42d1d22a74"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "230690007",
- "display": "Stroke"
- }
- ],
- "text": "Stroke"
- },
- "encounter": [
- {
- "reference": "urn:uuid:a1462b6d-647f-4a66-8a41-ec9d0cc1258b"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "230690007",
- "display": "Stroke"
- }
- ],
- "text": "Stroke"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:35917ea6-ea40-41a7-8bd6-799b0fbac731",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "35917ea6-ea40-41a7-8bd6-799b0fbac731",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3eb2abba-7252-4122-8e75-9053cf819fa4"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2002-10-27T03:46:14-05:00",
- "end": "2003-10-27T03:46:14-05:00"
- },
- "created": "2002-10-27T03:46:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3eb2abba-7252-4122-8e75-9053cf819fa4"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:06c41e43-680b-49f4-9be3-3c42d1d22a74"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "230690007",
- "display": "Stroke"
- }
- ],
- "text": "Stroke"
- },
- "servicedPeriod": {
- "start": "2002-10-27T02:16:14-05:00",
- "end": "2002-10-27T03:46:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:a1462b6d-647f-4a66-8a41-ec9d0cc1258b"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "230690007",
- "display": "Stroke"
- }
- ],
- "text": "Stroke"
- },
- "servicedPeriod": {
- "start": "2002-10-27T02:16:14-05:00",
- "end": "2002-10-27T03:46:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:87040320-1a47-4eda-9f3a-934bf38aed0d",
- "resource": {
- "resourceType": "Encounter",
- "id": "87040320-1a47-4eda-9f3a-934bf38aed0d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2003-02-09T02:16:14-05:00",
- "end": "2003-02-09T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:44dfa3f7-6d89-447e-9a71-1edb006a9c51",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "44dfa3f7-6d89-447e-9a71-1edb006a9c51",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:87040320-1a47-4eda-9f3a-934bf38aed0d"
- },
- "authoredOn": "2003-02-09T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:742b4ca4-fb46-4338-af51-e8c4c803944a",
- "resource": {
- "resourceType": "Claim",
- "id": "742b4ca4-fb46-4338-af51-e8c4c803944a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2003-02-09T02:16:14-05:00",
- "end": "2003-02-09T02:31:14-05:00"
- },
- "created": "2003-02-09T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:44dfa3f7-6d89-447e-9a71-1edb006a9c51"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:87040320-1a47-4eda-9f3a-934bf38aed0d"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:146e615e-5258-417a-896b-1adefd2b4563",
- "resource": {
- "resourceType": "Claim",
- "id": "146e615e-5258-417a-896b-1adefd2b4563",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2003-02-09T02:16:14-05:00",
- "end": "2003-02-09T02:31:14-05:00"
- },
- "created": "2003-02-09T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:87040320-1a47-4eda-9f3a-934bf38aed0d"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:55341e8a-610a-4afa-8090-fb899ba26ef5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "55341e8a-610a-4afa-8090-fb899ba26ef5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "146e615e-5258-417a-896b-1adefd2b4563"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2003-02-09T02:31:14-05:00",
- "end": "2004-02-09T02:31:14-05:00"
- },
- "created": "2003-02-09T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:146e615e-5258-417a-896b-1adefd2b4563"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2003-02-09T02:16:14-05:00",
- "end": "2003-02-09T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:87040320-1a47-4eda-9f3a-934bf38aed0d"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:54b4be8c-40bb-43f7-871c-0308c8db3827",
- "resource": {
- "resourceType": "Encounter",
- "id": "54b4be8c-40bb-43f7-871c-0308c8db3827",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2004-02-09T02:16:14-05:00",
- "end": "2004-02-09T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2836e49a-d388-4b27-8b65-973ffd9222dd",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "2836e49a-d388-4b27-8b65-973ffd9222dd",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:54b4be8c-40bb-43f7-871c-0308c8db3827"
- },
- "authoredOn": "2004-02-09T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:6ff904cd-4b8d-4fdf-bba6-96618afdacdf",
- "resource": {
- "resourceType": "Claim",
- "id": "6ff904cd-4b8d-4fdf-bba6-96618afdacdf",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2004-02-09T02:16:14-05:00",
- "end": "2004-02-09T02:31:14-05:00"
- },
- "created": "2004-02-09T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:2836e49a-d388-4b27-8b65-973ffd9222dd"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:54b4be8c-40bb-43f7-871c-0308c8db3827"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e42a2861-0f7a-49e3-b254-3cf0d7cd8ba8",
- "resource": {
- "resourceType": "Claim",
- "id": "e42a2861-0f7a-49e3-b254-3cf0d7cd8ba8",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2004-02-09T02:16:14-05:00",
- "end": "2004-02-09T02:31:14-05:00"
- },
- "created": "2004-02-09T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:54b4be8c-40bb-43f7-871c-0308c8db3827"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9e5ab983-d5a5-4fab-b53c-39804afd339e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9e5ab983-d5a5-4fab-b53c-39804afd339e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "e42a2861-0f7a-49e3-b254-3cf0d7cd8ba8"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2004-02-09T02:31:14-05:00",
- "end": "2005-02-09T02:31:14-05:00"
- },
- "created": "2004-02-09T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:e42a2861-0f7a-49e3-b254-3cf0d7cd8ba8"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2004-02-09T02:16:14-05:00",
- "end": "2004-02-09T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:54b4be8c-40bb-43f7-871c-0308c8db3827"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:25ea74f4-1cd1-4236-bd68-ed185c600b6d",
- "resource": {
- "resourceType": "Encounter",
- "id": "25ea74f4-1cd1-4236-bd68-ed185c600b6d",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2005-02-08T02:16:14-05:00",
- "end": "2005-02-08T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:6e4d966b-9f70-4810-9f3a-3228f1363154",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "6e4d966b-9f70-4810-9f3a-3228f1363154",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:25ea74f4-1cd1-4236-bd68-ed185c600b6d"
- },
- "authoredOn": "2005-02-08T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:9f2f4f39-4f8e-4f32-b30f-0b90ffb50cd8",
- "resource": {
- "resourceType": "Claim",
- "id": "9f2f4f39-4f8e-4f32-b30f-0b90ffb50cd8",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2005-02-08T02:16:14-05:00",
- "end": "2005-02-08T02:31:14-05:00"
- },
- "created": "2005-02-08T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:6e4d966b-9f70-4810-9f3a-3228f1363154"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:25ea74f4-1cd1-4236-bd68-ed185c600b6d"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:529e6779-1020-4549-8163-f8aad6714e2d",
- "resource": {
- "resourceType": "Claim",
- "id": "529e6779-1020-4549-8163-f8aad6714e2d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2005-02-08T02:16:14-05:00",
- "end": "2005-02-08T02:31:14-05:00"
- },
- "created": "2005-02-08T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:25ea74f4-1cd1-4236-bd68-ed185c600b6d"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d191b98c-214f-4467-81b1-3001c0d7da67",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d191b98c-214f-4467-81b1-3001c0d7da67",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "529e6779-1020-4549-8163-f8aad6714e2d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2005-02-08T02:31:14-05:00",
- "end": "2006-02-08T02:31:14-05:00"
- },
- "created": "2005-02-08T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:529e6779-1020-4549-8163-f8aad6714e2d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2005-02-08T02:16:14-05:00",
- "end": "2005-02-08T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:25ea74f4-1cd1-4236-bd68-ed185c600b6d"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:e207cbaa-40fa-492b-a797-5f0aa1c6c4f8",
- "resource": {
- "resourceType": "Encounter",
- "id": "e207cbaa-40fa-492b-a797-5f0aa1c6c4f8",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2006-02-08T02:16:14-05:00",
- "end": "2006-02-08T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:09e74133-2c91-4044-bca0-c1c215c09f9c",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "09e74133-2c91-4044-bca0-c1c215c09f9c",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e207cbaa-40fa-492b-a797-5f0aa1c6c4f8"
- },
- "authoredOn": "2006-02-08T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:ddf85b04-685e-4b0c-b13b-0c3696e21c57",
- "resource": {
- "resourceType": "Claim",
- "id": "ddf85b04-685e-4b0c-b13b-0c3696e21c57",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2006-02-08T02:16:14-05:00",
- "end": "2006-02-08T02:31:14-05:00"
- },
- "created": "2006-02-08T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:09e74133-2c91-4044-bca0-c1c215c09f9c"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e207cbaa-40fa-492b-a797-5f0aa1c6c4f8"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9997055d-ebe5-4dab-b67c-ba97e2d1df50",
- "resource": {
- "resourceType": "Claim",
- "id": "9997055d-ebe5-4dab-b67c-ba97e2d1df50",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2006-02-08T02:16:14-05:00",
- "end": "2006-02-08T02:31:14-05:00"
- },
- "created": "2006-02-08T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e207cbaa-40fa-492b-a797-5f0aa1c6c4f8"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:de65d3a7-9847-456c-9add-5adf6efaeed0",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "de65d3a7-9847-456c-9add-5adf6efaeed0",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "9997055d-ebe5-4dab-b67c-ba97e2d1df50"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2006-02-08T02:31:14-05:00",
- "end": "2007-02-08T02:31:14-05:00"
- },
- "created": "2006-02-08T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:9997055d-ebe5-4dab-b67c-ba97e2d1df50"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2006-02-08T02:16:14-05:00",
- "end": "2006-02-08T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:e207cbaa-40fa-492b-a797-5f0aa1c6c4f8"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86",
- "resource": {
- "resourceType": "Encounter",
- "id": "1fe369c7-6e23-43c7-9fd4-0aa5e482eb86",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2007-02-08T02:16:14-05:00",
- "end": "2007-02-08T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:25f52c79-591b-445c-8196-6476584b0570",
- "resource": {
- "resourceType": "Observation",
- "id": "25f52c79-591b-445c-8196-6476584b0570",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 96.4028483799105,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b29765df-768d-48c1-ab16-1a833f6a6eb6",
- "resource": {
- "resourceType": "Observation",
- "id": "b29765df-768d-48c1-ab16-1a833f6a6eb6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 17.017524356489695,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5b54fa79-0a0f-47d1-9ec3-42c9e23f04dd",
- "resource": {
- "resourceType": "Observation",
- "id": "5b54fa79-0a0f-47d1-9ec3-42c9e23f04dd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.9379777428049705,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:45d53f16-8750-44c9-aaf6-cc5824c77b2a",
- "resource": {
- "resourceType": "Observation",
- "id": "45d53f16-8750-44c9-aaf6-cc5824c77b2a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 8.831753599533362,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:072b3b53-b35d-43d2-b6c3-50f518e46699",
- "resource": {
- "resourceType": "Observation",
- "id": "072b3b53-b35d-43d2-b6c3-50f518e46699",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 140.77480503517089,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:60f68dc6-bd73-4f26-8952-609adf2c4c73",
- "resource": {
- "resourceType": "Observation",
- "id": "60f68dc6-bd73-4f26-8952-609adf2c4c73",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.5543413243754065,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:db49f814-9abb-4a57-88f6-d0adb09ab77a",
- "resource": {
- "resourceType": "Observation",
- "id": "db49f814-9abb-4a57-88f6-d0adb09ab77a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 102.52240000073546,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b7ed3899-69f5-40d2-a468-89837505189d",
- "resource": {
- "resourceType": "Observation",
- "id": "b7ed3899-69f5-40d2-a468-89837505189d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 23.209521932919717,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f9994e97-756c-454b-a491-3d3774976e66",
- "resource": {
- "resourceType": "Observation",
- "id": "f9994e97-756c-454b-a491-3d3774976e66",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33914-3",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- }
- ],
- "text": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 78.0591913481034,
- "unit": "mL/min",
- "system": "http://unitsofmeasure.org",
- "code": "mL/min"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5f9b549a-ca8e-470c-a014-83f2601baacd",
- "resource": {
- "resourceType": "Observation",
- "id": "5f9b549a-ca8e-470c-a014-83f2601baacd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2885-2",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Protein [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 74.39993613145614,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9222d6ed-7281-4f37-8c7f-f411d362ce81",
- "resource": {
- "resourceType": "Observation",
- "id": "9222d6ed-7281-4f37-8c7f-f411d362ce81",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1751-7",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Albumin [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.827659496723138,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:08713005-54d0-4e14-9f5f-f90861c33cd6",
- "resource": {
- "resourceType": "Observation",
- "id": "08713005-54d0-4e14-9f5f-f90861c33cd6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10834-0",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- }
- ],
- "text": "Globulin [Mass/volume] in Serum by calculation"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.664371665223645,
- "unit": "g/L",
- "system": "http://unitsofmeasure.org",
- "code": "g/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f852c0e3-d238-46ce-b162-f798b956698a",
- "resource": {
- "resourceType": "Observation",
- "id": "f852c0e3-d238-46ce-b162-f798b956698a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1975-2",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.3204379582517555,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f8f7da84-101c-47ea-b106-fcb5fbb36a2c",
- "resource": {
- "resourceType": "Observation",
- "id": "f8f7da84-101c-47ea-b106-fcb5fbb36a2c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6768-6",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 35.39219914645315,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:62b35c5f-0ca3-4447-bc12-de0ebb4637b5",
- "resource": {
- "resourceType": "Observation",
- "id": "62b35c5f-0ca3-4447-bc12-de0ebb4637b5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1742-6",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 48.98452086139102,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d71a5548-9381-4201-b132-979c729ec14d",
- "resource": {
- "resourceType": "Observation",
- "id": "d71a5548-9381-4201-b132-979c729ec14d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1920-8",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 17.48784911619125,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:254d301b-9b63-45a2-81cf-b292709fa5e4",
- "resource": {
- "resourceType": "Observation",
- "id": "254d301b-9b63-45a2-81cf-b292709fa5e4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 150.5191988499874,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ebd9ca91-30d1-41eb-adc4-154de88c6301",
- "resource": {
- "resourceType": "Observation",
- "id": "ebd9ca91-30d1-41eb-adc4-154de88c6301",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 129.99321690914263,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bf53e70b-0b70-4f7a-89ba-c0791504bcea",
- "resource": {
- "resourceType": "Observation",
- "id": "bf53e70b-0b70-4f7a-89ba-c0791504bcea",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 128.285953981543,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cccb42a3-f8db-4a4e-ac64-0c0a83428003",
- "resource": {
- "resourceType": "Observation",
- "id": "cccb42a3-f8db-4a4e-ac64-0c0a83428003",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 64.41347456120594,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6232d479-c785-44c8-b9b0-83cb9a5fd4e2",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "6232d479-c785-44c8-b9b0-83cb9a5fd4e2",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "authoredOn": "2007-02-08T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:aa8cba8d-002c-42f2-9786-00b4e5c5b9dc",
- "resource": {
- "resourceType": "Claim",
- "id": "aa8cba8d-002c-42f2-9786-00b4e5c5b9dc",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2007-02-08T02:16:14-05:00",
- "end": "2007-02-08T02:31:14-05:00"
- },
- "created": "2007-02-08T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:6232d479-c785-44c8-b9b0-83cb9a5fd4e2"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4966ece3-a236-474f-b03a-c85258936f8d",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "4966ece3-a236-474f-b03a-c85258936f8d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "24323-8",
- "display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- }
- ],
- "text": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:25f52c79-591b-445c-8196-6476584b0570",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:b29765df-768d-48c1-ab16-1a833f6a6eb6",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:5b54fa79-0a0f-47d1-9ec3-42c9e23f04dd",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:45d53f16-8750-44c9-aaf6-cc5824c77b2a",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:072b3b53-b35d-43d2-b6c3-50f518e46699",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:60f68dc6-bd73-4f26-8952-609adf2c4c73",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:db49f814-9abb-4a57-88f6-d0adb09ab77a",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:b7ed3899-69f5-40d2-a468-89837505189d",
- "display": "Carbon Dioxide"
- },
- {
- "reference": "urn:uuid:f9994e97-756c-454b-a491-3d3774976e66",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- {
- "reference": "urn:uuid:5f9b549a-ca8e-470c-a014-83f2601baacd",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:9222d6ed-7281-4f37-8c7f-f411d362ce81",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:08713005-54d0-4e14-9f5f-f90861c33cd6",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- },
- {
- "reference": "urn:uuid:f852c0e3-d238-46ce-b162-f798b956698a",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:f8f7da84-101c-47ea-b106-fcb5fbb36a2c",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:62b35c5f-0ca3-4447-bc12-de0ebb4637b5",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:d71a5548-9381-4201-b132-979c729ec14d",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:cf1e56a0-c28d-4e19-aa85-d10004dbcc04",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "cf1e56a0-c28d-4e19-aa85-d10004dbcc04",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- },
- "effectiveDateTime": "2007-02-08T02:16:14-05:00",
- "issued": "2007-02-08T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:254d301b-9b63-45a2-81cf-b292709fa5e4",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:ebd9ca91-30d1-41eb-adc4-154de88c6301",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:bf53e70b-0b70-4f7a-89ba-c0791504bcea",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:cccb42a3-f8db-4a4e-ac64-0c0a83428003",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:35a490a8-6eb2-44fc-a58f-6941ac1a38db",
- "resource": {
- "resourceType": "Claim",
- "id": "35a490a8-6eb2-44fc-a58f-6941ac1a38db",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2007-02-08T02:16:14-05:00",
- "end": "2007-02-08T02:31:14-05:00"
- },
- "created": "2007-02-08T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:fc8550ec-36e8-425e-9b42-e1046d8de91d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "fc8550ec-36e8-425e-9b42-e1046d8de91d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "35a490a8-6eb2-44fc-a58f-6941ac1a38db"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2007-02-08T02:31:14-05:00",
- "end": "2008-02-08T02:31:14-05:00"
- },
- "created": "2007-02-08T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:35a490a8-6eb2-44fc-a58f-6941ac1a38db"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2007-02-08T02:16:14-05:00",
- "end": "2007-02-08T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:1fe369c7-6e23-43c7-9fd4-0aa5e482eb86"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988",
- "resource": {
- "resourceType": "Encounter",
- "id": "91f9aa2a-81a7-41fc-9af3-17202e61f988",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "2007-05-06T03:16:14-04:00",
- "end": "2007-05-06T03:46:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a74d60eb-62c4-4262-86bf-e21eb9266d70",
- "resource": {
- "resourceType": "Observation",
- "id": "a74d60eb-62c4-4262-86bf-e21eb9266d70",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2293f6f1-0d8c-45d5-bd4d-970af8492b85",
- "resource": {
- "resourceType": "Observation",
- "id": "2293f6f1-0d8c-45d5-bd4d-970af8492b85",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 1.1630524327643652,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:434492b9-1e9f-467a-9e19-7cc4ab038196",
- "resource": {
- "resourceType": "Observation",
- "id": "434492b9-1e9f-467a-9e19-7cc4ab038196",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2f9ae53c-998c-45e4-bc94-a387aa973cbe",
- "resource": {
- "resourceType": "Observation",
- "id": "2f9ae53c-998c-45e4-bc94-a387aa973cbe",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:518f2271-d1c1-41be-bf32-817b869397cc",
- "resource": {
- "resourceType": "Observation",
- "id": "518f2271-d1c1-41be-bf32-817b869397cc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 79.86909351353822,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 115.89516032921986,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:22da7629-9827-4670-9500-2c0565dff98b",
- "resource": {
- "resourceType": "Observation",
- "id": "22da7629-9827-4670-9500-2c0565dff98b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 92.76583397966272,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:08c43987-d3ea-4f09-a850-4d477c0ec22e",
- "resource": {
- "resourceType": "Observation",
- "id": "08c43987-d3ea-4f09-a850-4d477c0ec22e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 7.013382225267039,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:882ed8b6-127a-4a7a-b32c-f1c325bddaf0",
- "resource": {
- "resourceType": "Observation",
- "id": "882ed8b6-127a-4a7a-b32c-f1c325bddaf0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.7194948566815221,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b71d9919-6370-469c-8c79-b8ff7c81a732",
- "resource": {
- "resourceType": "Observation",
- "id": "b71d9919-6370-469c-8c79-b8ff7c81a732",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 9.881671979193195,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:37e75ddb-4569-4447-8114-562705d9ea0c",
- "resource": {
- "resourceType": "Observation",
- "id": "37e75ddb-4569-4447-8114-562705d9ea0c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 139.88017082813806,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9884550b-c50b-47af-948a-6aba8a918fda",
- "resource": {
- "resourceType": "Observation",
- "id": "9884550b-c50b-47af-948a-6aba8a918fda",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.169988984278636,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2a5c09bf-6cc3-4a22-b05d-d358a2ece7e2",
- "resource": {
- "resourceType": "Observation",
- "id": "2a5c09bf-6cc3-4a22-b05d-d358a2ece7e2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 108.30492345127988,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4a504414-da34-43ad-8bee-9673d78319ec",
- "resource": {
- "resourceType": "Observation",
- "id": "4a504414-da34-43ad-8bee-9673d78319ec",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 25.55228456921263,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:28aef432-1a6c-4b81-b12e-8ed8d38011b3",
- "resource": {
- "resourceType": "Observation",
- "id": "28aef432-1a6c-4b81-b12e-8ed8d38011b3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 188.42672663256369,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b024c35b-d9f3-4111-a6c0-4fbf68a1803d",
- "resource": {
- "resourceType": "Observation",
- "id": "b024c35b-d9f3-4111-a6c0-4fbf68a1803d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 129.7595401671905,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:facece1c-27c0-4dc4-b248-088ea8eacf60",
- "resource": {
- "resourceType": "Observation",
- "id": "facece1c-27c0-4dc4-b248-088ea8eacf60",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 89.3034067589403,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:155f435f-f314-4c66-9821-d9534b30315d",
- "resource": {
- "resourceType": "Observation",
- "id": "155f435f-f314-4c66-9821-d9534b30315d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 73.17141184018529,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:25cf52c9-8db3-40ea-90cc-39cd7d447cfb",
- "resource": {
- "resourceType": "Observation",
- "id": "25cf52c9-8db3-40ea-90cc-39cd7d447cfb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9025191f-d07b-4503-84cd-f85dff7e8d75",
- "resource": {
- "resourceType": "Observation",
- "id": "9025191f-d07b-4503-84cd-f85dff7e8d75",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 6.07734462811619,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2b92a1ab-78bb-4607-a66e-f0d237904f46",
- "resource": {
- "resourceType": "Procedure",
- "id": "2b92a1ab-78bb-4607-a66e-f0d237904f46",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "performedPeriod": {
- "start": "2007-05-06T03:16:14-04:00",
- "end": "2007-05-06T03:31:14-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:408df4ca-36ba-4409-a75d-d72bd7dcaa67",
- "resource": {
- "resourceType": "Immunization",
- "id": "408df4ca-36ba-4409-a75d-d72bd7dcaa67",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "occurrenceDateTime": "2007-05-06T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:68603a0e-ae14-40d0-92d9-8a43baf4bccd",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "68603a0e-ae14-40d0-92d9-8a43baf4bccd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:22da7629-9827-4670-9500-2c0565dff98b",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:08c43987-d3ea-4f09-a850-4d477c0ec22e",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:882ed8b6-127a-4a7a-b32c-f1c325bddaf0",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:b71d9919-6370-469c-8c79-b8ff7c81a732",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:37e75ddb-4569-4447-8114-562705d9ea0c",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:9884550b-c50b-47af-948a-6aba8a918fda",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:2a5c09bf-6cc3-4a22-b05d-d358a2ece7e2",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:4a504414-da34-43ad-8bee-9673d78319ec",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:9e9c073f-a0ea-4461-8d0c-6382c8b7bce5",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "9e9c073f-a0ea-4461-8d0c-6382c8b7bce5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- },
- "effectiveDateTime": "2007-05-06T03:16:14-04:00",
- "issued": "2007-05-06T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:28aef432-1a6c-4b81-b12e-8ed8d38011b3",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:b024c35b-d9f3-4111-a6c0-4fbf68a1803d",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:facece1c-27c0-4dc4-b248-088ea8eacf60",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:155f435f-f314-4c66-9821-d9534b30315d",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:5b18ca8a-944e-4365-9fe0-fb482c08365e",
- "resource": {
- "resourceType": "Claim",
- "id": "5b18ca8a-944e-4365-9fe0-fb482c08365e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2007-05-06T03:16:14-04:00",
- "end": "2007-05-06T03:46:14-04:00"
- },
- "created": "2007-05-06T03:46:14-04:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:408df4ca-36ba-4409-a75d-d72bd7dcaa67"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:2b92a1ab-78bb-4607-a66e-f0d237904f46"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 961.49,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1cd69d49-aa0a-401e-b32c-0c7137f302ca",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "1cd69d49-aa0a-401e-b32c-0c7137f302ca",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5b18ca8a-944e-4365-9fe0-fb482c08365e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2007-05-06T03:46:14-04:00",
- "end": "2008-05-06T03:46:14-04:00"
- },
- "created": "2007-05-06T03:46:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5b18ca8a-944e-4365-9fe0-fb482c08365e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2007-05-06T03:16:14-04:00",
- "end": "2007-05-06T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:91f9aa2a-81a7-41fc-9af3-17202e61f988"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2007-05-06T03:16:14-04:00",
- "end": "2007-05-06T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2007-05-06T03:16:14-04:00",
- "end": "2007-05-06T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 961.49,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 192.298,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 769.192,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 961.49,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 961.49,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 881.6080000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1",
- "resource": {
- "resourceType": "Encounter",
- "id": "afdf6c1e-357b-476e-b763-a7c46ad62dd1",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2008-02-08T02:16:14-05:00",
- "end": "2008-02-08T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:29b4b658-460a-4354-b252-36def4b89734",
- "resource": {
- "resourceType": "Observation",
- "id": "29b4b658-460a-4354-b252-36def4b89734",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 88.40737792780921,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e33dc3b5-231f-4830-8989-bb41da2b6a4b",
- "resource": {
- "resourceType": "Observation",
- "id": "e33dc3b5-231f-4830-8989-bb41da2b6a4b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 9.59619958559502,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8a701beb-6eb9-4a51-87a0-8c1453add23b",
- "resource": {
- "resourceType": "Observation",
- "id": "8a701beb-6eb9-4a51-87a0-8c1453add23b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.2752552306404317,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:400781cf-1136-4759-8782-5becedf941cf",
- "resource": {
- "resourceType": "Observation",
- "id": "400781cf-1136-4759-8782-5becedf941cf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 9.0099056269116,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5fac9e32-4d1f-406c-ad18-30fb0843f5e3",
- "resource": {
- "resourceType": "Observation",
- "id": "5fac9e32-4d1f-406c-ad18-30fb0843f5e3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 142.75447099693784,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:97059efb-dd0e-4065-b7b6-94fbeb22351a",
- "resource": {
- "resourceType": "Observation",
- "id": "97059efb-dd0e-4065-b7b6-94fbeb22351a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.096727380118613,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0a41f7f0-70ca-40c5-9f7d-2998afe320fe",
- "resource": {
- "resourceType": "Observation",
- "id": "0a41f7f0-70ca-40c5-9f7d-2998afe320fe",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 109.35795750787246,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fcda01ea-adac-4fa7-b362-8f801e5b6824",
- "resource": {
- "resourceType": "Observation",
- "id": "fcda01ea-adac-4fa7-b362-8f801e5b6824",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 26.07442764902808,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:980b1e2d-2216-49a7-8d95-980a509c4d23",
- "resource": {
- "resourceType": "Observation",
- "id": "980b1e2d-2216-49a7-8d95-980a509c4d23",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33914-3",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- }
- ],
- "text": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 82.63578705322415,
- "unit": "mL/min",
- "system": "http://unitsofmeasure.org",
- "code": "mL/min"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8c828eb7-1c4c-49bb-bf1d-c31a55845efa",
- "resource": {
- "resourceType": "Observation",
- "id": "8c828eb7-1c4c-49bb-bf1d-c31a55845efa",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2885-2",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Protein [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 78.44195675908966,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:530ed3d5-f7ab-4eec-87e7-6faf03f84f08",
- "resource": {
- "resourceType": "Observation",
- "id": "530ed3d5-f7ab-4eec-87e7-6faf03f84f08",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1751-7",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Albumin [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 5.394999520543779,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:07841133-71c2-41de-a33a-6453075617b0",
- "resource": {
- "resourceType": "Observation",
- "id": "07841133-71c2-41de-a33a-6453075617b0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10834-0",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- }
- ],
- "text": "Globulin [Mass/volume] in Serum by calculation"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.9343040471397575,
- "unit": "g/L",
- "system": "http://unitsofmeasure.org",
- "code": "g/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c2c6ccb3-657e-4be6-b691-05f39e7440e2",
- "resource": {
- "resourceType": "Observation",
- "id": "c2c6ccb3-657e-4be6-b691-05f39e7440e2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1975-2",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 1.184944400492493,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fd60046d-6dbb-4dbc-bd2a-1a40584ad1d7",
- "resource": {
- "resourceType": "Observation",
- "id": "fd60046d-6dbb-4dbc-bd2a-1a40584ad1d7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6768-6",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 59.47679246183463,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6121170f-14a3-465f-801c-7bbdddcd0848",
- "resource": {
- "resourceType": "Observation",
- "id": "6121170f-14a3-465f-801c-7bbdddcd0848",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1742-6",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 52.614049764627595,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fd28aa75-a56f-49c7-be1c-245933720365",
- "resource": {
- "resourceType": "Observation",
- "id": "fd28aa75-a56f-49c7-be1c-245933720365",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1920-8",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 9.4638032038687,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:015963f6-95d6-4257-863e-e93fc3d1ba7f",
- "resource": {
- "resourceType": "Observation",
- "id": "015963f6-95d6-4257-863e-e93fc3d1ba7f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 167.99618384528668,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:be2c4eaa-ad7f-4cf4-a741-aeca1ae8cdc4",
- "resource": {
- "resourceType": "Observation",
- "id": "be2c4eaa-ad7f-4cf4-a741-aeca1ae8cdc4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 167.49732036766562,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:08b84b33-83bd-4b7f-acb8-901cc755ab70",
- "resource": {
- "resourceType": "Observation",
- "id": "08b84b33-83bd-4b7f-acb8-901cc755ab70",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 109.15026177322702,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1b13b98d-70ac-4c24-98b6-8eeab14e5765",
- "resource": {
- "resourceType": "Observation",
- "id": "1b13b98d-70ac-4c24-98b6-8eeab14e5765",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 34.455260176759694,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ed41bc58-3dd1-45e7-9b93-9c878f8a7845",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "ed41bc58-3dd1-45e7-9b93-9c878f8a7845",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "authoredOn": "2008-02-08T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:55186400-d627-4ed7-9a0c-2e31630a04a0",
- "resource": {
- "resourceType": "Claim",
- "id": "55186400-d627-4ed7-9a0c-2e31630a04a0",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2008-02-08T02:16:14-05:00",
- "end": "2008-02-08T02:31:14-05:00"
- },
- "created": "2008-02-08T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:ed41bc58-3dd1-45e7-9b93-9c878f8a7845"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:95eb09bc-969a-4a1c-a850-bef38df0f16d",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "95eb09bc-969a-4a1c-a850-bef38df0f16d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "24323-8",
- "display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- }
- ],
- "text": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:29b4b658-460a-4354-b252-36def4b89734",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:e33dc3b5-231f-4830-8989-bb41da2b6a4b",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:8a701beb-6eb9-4a51-87a0-8c1453add23b",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:400781cf-1136-4759-8782-5becedf941cf",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:5fac9e32-4d1f-406c-ad18-30fb0843f5e3",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:97059efb-dd0e-4065-b7b6-94fbeb22351a",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:0a41f7f0-70ca-40c5-9f7d-2998afe320fe",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:fcda01ea-adac-4fa7-b362-8f801e5b6824",
- "display": "Carbon Dioxide"
- },
- {
- "reference": "urn:uuid:980b1e2d-2216-49a7-8d95-980a509c4d23",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- {
- "reference": "urn:uuid:8c828eb7-1c4c-49bb-bf1d-c31a55845efa",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:530ed3d5-f7ab-4eec-87e7-6faf03f84f08",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:07841133-71c2-41de-a33a-6453075617b0",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- },
- {
- "reference": "urn:uuid:c2c6ccb3-657e-4be6-b691-05f39e7440e2",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:fd60046d-6dbb-4dbc-bd2a-1a40584ad1d7",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:6121170f-14a3-465f-801c-7bbdddcd0848",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:fd28aa75-a56f-49c7-be1c-245933720365",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:775a5132-a85a-410c-b5ac-6ec305521614",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "775a5132-a85a-410c-b5ac-6ec305521614",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- },
- "effectiveDateTime": "2008-02-08T02:16:14-05:00",
- "issued": "2008-02-08T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:015963f6-95d6-4257-863e-e93fc3d1ba7f",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:be2c4eaa-ad7f-4cf4-a741-aeca1ae8cdc4",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:08b84b33-83bd-4b7f-acb8-901cc755ab70",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:1b13b98d-70ac-4c24-98b6-8eeab14e5765",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:c5f225db-6398-4bb9-879e-07eb0ff92a4e",
- "resource": {
- "resourceType": "Claim",
- "id": "c5f225db-6398-4bb9-879e-07eb0ff92a4e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2008-02-08T02:16:14-05:00",
- "end": "2008-02-08T02:31:14-05:00"
- },
- "created": "2008-02-08T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d5b914b8-2c7f-4085-bdf6-3428a9c37925",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d5b914b8-2c7f-4085-bdf6-3428a9c37925",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c5f225db-6398-4bb9-879e-07eb0ff92a4e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2008-02-08T02:31:14-05:00",
- "end": "2009-02-08T02:31:14-05:00"
- },
- "created": "2008-02-08T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c5f225db-6398-4bb9-879e-07eb0ff92a4e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2008-02-08T02:16:14-05:00",
- "end": "2008-02-08T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:afdf6c1e-357b-476e-b763-a7c46ad62dd1"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04",
- "resource": {
- "resourceType": "Encounter",
- "id": "3640d9f1-f78c-462d-b6d7-2e09a4df5a04",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "2008-05-11T03:16:14-04:00",
- "end": "2008-05-11T03:46:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:53c48cf2-3878-4dcc-821a-0d5ac6423fa4",
- "resource": {
- "resourceType": "Observation",
- "id": "53c48cf2-3878-4dcc-821a-0d5ac6423fa4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:60694eda-73c4-4d2e-9f1e-986cd2d9b31e",
- "resource": {
- "resourceType": "Observation",
- "id": "60694eda-73c4-4d2e-9f1e-986cd2d9b31e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.31846401488247666,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:38f6bd54-1bc6-450f-825c-077f7b21863f",
- "resource": {
- "resourceType": "Observation",
- "id": "38f6bd54-1bc6-450f-825c-077f7b21863f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a85982a6-ac33-4a3f-9fc4-358d393df5d4",
- "resource": {
- "resourceType": "Observation",
- "id": "a85982a6-ac33-4a3f-9fc4-358d393df5d4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:236254b3-92ce-470e-8bc9-84efac0ef5eb",
- "resource": {
- "resourceType": "Observation",
- "id": "236254b3-92ce-470e-8bc9-84efac0ef5eb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 73.59363742273457,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 117.95977960156522,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:16742f7d-e8a2-46cf-8ad1-2a89b233f2af",
- "resource": {
- "resourceType": "Observation",
- "id": "16742f7d-e8a2-46cf-8ad1-2a89b233f2af",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 89.20219340288921,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:89760568-9704-4098-b380-9ac1a429480a",
- "resource": {
- "resourceType": "Observation",
- "id": "89760568-9704-4098-b380-9ac1a429480a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 13.178363655338032,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8eff9f23-7e9c-4fc4-a765-32f687d1f6ca",
- "resource": {
- "resourceType": "Observation",
- "id": "8eff9f23-7e9c-4fc4-a765-32f687d1f6ca",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.708593419459075,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8f34e23c-7cfc-439c-91bc-ae4816f25c49",
- "resource": {
- "resourceType": "Observation",
- "id": "8f34e23c-7cfc-439c-91bc-ae4816f25c49",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 8.51234031310937,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:63378115-5429-4989-b43e-2fec5612be07",
- "resource": {
- "resourceType": "Observation",
- "id": "63378115-5429-4989-b43e-2fec5612be07",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 143.28833332065446,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7ab437dd-c36d-4528-8208-20d6f3d905a5",
- "resource": {
- "resourceType": "Observation",
- "id": "7ab437dd-c36d-4528-8208-20d6f3d905a5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.071672755142829,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e0190888-edb8-482e-8216-488c44bb4e74",
- "resource": {
- "resourceType": "Observation",
- "id": "e0190888-edb8-482e-8216-488c44bb4e74",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 104.33690278520234,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8ba6e170-60b9-4d81-8038-83b94c7636c8",
- "resource": {
- "resourceType": "Observation",
- "id": "8ba6e170-60b9-4d81-8038-83b94c7636c8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 21.139857986233885,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a37f02de-b780-40e5-b839-33502c0ec6e6",
- "resource": {
- "resourceType": "Observation",
- "id": "a37f02de-b780-40e5-b839-33502c0ec6e6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c14d79ca-d607-4eaa-af37-427c70149a14",
- "resource": {
- "resourceType": "Observation",
- "id": "c14d79ca-d607-4eaa-af37-427c70149a14",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 6.042040205599899,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:efb61a53-5845-4f18-b992-ac398580c0bb",
- "resource": {
- "resourceType": "Procedure",
- "id": "efb61a53-5845-4f18-b992-ac398580c0bb",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "performedPeriod": {
- "start": "2008-05-11T03:16:14-04:00",
- "end": "2008-05-11T03:31:14-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:b8d4ee2c-e5b6-4129-afb6-2daced44d114",
- "resource": {
- "resourceType": "Immunization",
- "id": "b8d4ee2c-e5b6-4129-afb6-2daced44d114",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "occurrenceDateTime": "2008-05-11T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:28ee8d8c-802f-469c-bc04-e1a223ff4ff7",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "28ee8d8c-802f-469c-bc04-e1a223ff4ff7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- },
- "effectiveDateTime": "2008-05-11T03:16:14-04:00",
- "issued": "2008-05-11T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:16742f7d-e8a2-46cf-8ad1-2a89b233f2af",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:89760568-9704-4098-b380-9ac1a429480a",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:8eff9f23-7e9c-4fc4-a765-32f687d1f6ca",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:8f34e23c-7cfc-439c-91bc-ae4816f25c49",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:63378115-5429-4989-b43e-2fec5612be07",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:7ab437dd-c36d-4528-8208-20d6f3d905a5",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:e0190888-edb8-482e-8216-488c44bb4e74",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:8ba6e170-60b9-4d81-8038-83b94c7636c8",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:5efb4227-7966-4dad-8cb5-dfa6a8dabe16",
- "resource": {
- "resourceType": "Claim",
- "id": "5efb4227-7966-4dad-8cb5-dfa6a8dabe16",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2008-05-11T03:16:14-04:00",
- "end": "2008-05-11T03:46:14-04:00"
- },
- "created": "2008-05-11T03:46:14-04:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:b8d4ee2c-e5b6-4129-afb6-2daced44d114"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:efb61a53-5845-4f18-b992-ac398580c0bb"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 496.15,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:2dc67214-f521-4aec-a7eb-53be38dbe9b5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "2dc67214-f521-4aec-a7eb-53be38dbe9b5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5efb4227-7966-4dad-8cb5-dfa6a8dabe16"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2008-05-11T03:46:14-04:00",
- "end": "2009-05-11T03:46:14-04:00"
- },
- "created": "2008-05-11T03:46:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5efb4227-7966-4dad-8cb5-dfa6a8dabe16"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2008-05-11T03:16:14-04:00",
- "end": "2008-05-11T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3640d9f1-f78c-462d-b6d7-2e09a4df5a04"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2008-05-11T03:16:14-04:00",
- "end": "2008-05-11T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2008-05-11T03:16:14-04:00",
- "end": "2008-05-11T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 496.15,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 99.23,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 396.92,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 496.15,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 496.15,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 509.336,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:df41a61f-86cb-422d-93ab-13c0d1d715a7",
- "resource": {
- "resourceType": "Encounter",
- "id": "df41a61f-86cb-422d-93ab-13c0d1d715a7",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2008-12-07T02:16:14-05:00",
- "end": "2008-12-07T03:33:14-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:18ce5a6a-b7fb-4eca-9e5b-5e85fe75dcb5",
- "resource": {
- "resourceType": "Condition",
- "id": "18ce5a6a-b7fb-4eca-9e5b-5e85fe75dcb5",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "68496003",
- "display": "Polyp of colon"
- }
- ],
- "text": "Polyp of colon"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:df41a61f-86cb-422d-93ab-13c0d1d715a7"
- },
- "onsetDateTime": "2008-12-07T02:16:14-05:00",
- "abatementDateTime": "2009-12-02T02:16:14-05:00",
- "recordedDate": "2008-12-07T02:16:14-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:78ad950b-e477-43a4-a45e-0a0cb7c41df3",
- "resource": {
- "resourceType": "Observation",
- "id": "78ad950b-e477-43a4-a45e-0a0cb7c41df3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "procedure",
- "display": "procedure"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33756-8",
- "display": "Polyp size greatest dimension by CAP cancer protocols"
- }
- ],
- "text": "Polyp size greatest dimension by CAP cancer protocols"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:df41a61f-86cb-422d-93ab-13c0d1d715a7"
- },
- "effectiveDateTime": "2008-12-07T02:16:14-05:00",
- "issued": "2008-12-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.2465859223204405,
- "unit": "mm",
- "system": "http://unitsofmeasure.org",
- "code": "mm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9db9a8de-8f03-49fa-bd60-192db0950842",
- "resource": {
- "resourceType": "Observation",
- "id": "9db9a8de-8f03-49fa-bd60-192db0950842",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57905-2",
- "display": "Hemoglobin.gastrointestinal [Presence] in Stool by Immunologic method"
- }
- ],
- "text": "Hemoglobin.gastrointestinal [Presence] in Stool by Immunologic method"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:df41a61f-86cb-422d-93ab-13c0d1d715a7"
- },
- "effectiveDateTime": "2008-12-07T02:16:14-05:00",
- "issued": "2008-12-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 18.572324000229166,
- "unit": "ng/mL",
- "system": "http://unitsofmeasure.org",
- "code": "ng/mL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:45e1351a-8fc7-46ce-8af0-d6d734560021",
- "resource": {
- "resourceType": "Procedure",
- "id": "45e1351a-8fc7-46ce-8af0-d6d734560021",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:df41a61f-86cb-422d-93ab-13c0d1d715a7"
- },
- "performedPeriod": {
- "start": "2008-12-07T02:16:14-05:00",
- "end": "2008-12-07T02:48:14-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:94e5cb44-6beb-4118-b417-71205c2a0df3",
- "resource": {
- "resourceType": "Procedure",
- "id": "94e5cb44-6beb-4118-b417-71205c2a0df3",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "1015401000000102",
- "display": "Fecal occult blood test"
- }
- ],
- "text": "Fecal occult blood test"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:df41a61f-86cb-422d-93ab-13c0d1d715a7"
- },
- "performedPeriod": {
- "start": "2008-12-07T02:16:14-05:00",
- "end": "2008-12-07T02:31:14-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:18ce5a6a-b7fb-4eca-9e5b-5e85fe75dcb5",
- "display": "Polyp of colon"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:f89ea5ac-73ac-482b-9206-cb7930f13166",
- "resource": {
- "resourceType": "Procedure",
- "id": "f89ea5ac-73ac-482b-9206-cb7930f13166",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274031008",
- "display": "Rectal polypectomy"
- }
- ],
- "text": "Rectal polypectomy"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:df41a61f-86cb-422d-93ab-13c0d1d715a7"
- },
- "performedPeriod": {
- "start": "2008-12-07T02:16:14-05:00",
- "end": "2008-12-07T02:31:14-05:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:18ce5a6a-b7fb-4eca-9e5b-5e85fe75dcb5",
- "display": "Polyp of colon"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:5b05edf0-5d1c-4794-942b-e985431aa2b6",
- "resource": {
- "resourceType": "Claim",
- "id": "5b05edf0-5d1c-4794-942b-e985431aa2b6",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2008-12-07T02:16:14-05:00",
- "end": "2008-12-07T03:33:14-05:00"
- },
- "created": "2008-12-07T03:33:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:18ce5a6a-b7fb-4eca-9e5b-5e85fe75dcb5"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:45e1351a-8fc7-46ce-8af0-d6d734560021"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:94e5cb44-6beb-4118-b417-71205c2a0df3"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:f89ea5ac-73ac-482b-9206-cb7930f13166"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "encounter": [
- {
- "reference": "urn:uuid:df41a61f-86cb-422d-93ab-13c0d1d715a7"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "net": {
- "value": 12914.81,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "68496003",
- "display": "Polyp of colon"
- }
- ],
- "text": "Polyp of colon"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "1015401000000102",
- "display": "Fecal occult blood test"
- }
- ],
- "text": "Fecal occult blood test"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274031008",
- "display": "Rectal polypectomy"
- }
- ],
- "text": "Rectal polypectomy"
- },
- "net": {
- "value": 7355.51,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:426d263a-6aef-4187-a415-bf29dab3a0da",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "426d263a-6aef-4187-a415-bf29dab3a0da",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5b05edf0-5d1c-4794-942b-e985431aa2b6"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2008-12-07T03:33:14-05:00",
- "end": "2009-12-07T03:33:14-05:00"
- },
- "created": "2008-12-07T03:33:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5b05edf0-5d1c-4794-942b-e985431aa2b6"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:18ce5a6a-b7fb-4eca-9e5b-5e85fe75dcb5"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "servicedPeriod": {
- "start": "2008-12-07T02:16:14-05:00",
- "end": "2008-12-07T03:33:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:df41a61f-86cb-422d-93ab-13c0d1d715a7"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "servicedPeriod": {
- "start": "2008-12-07T02:16:14-05:00",
- "end": "2008-12-07T03:33:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 12914.81,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2582.962,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 10331.848,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 12914.81,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 12914.81,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "68496003",
- "display": "Polyp of colon"
- }
- ],
- "text": "Polyp of colon"
- },
- "servicedPeriod": {
- "start": "2008-12-07T02:16:14-05:00",
- "end": "2008-12-07T03:33:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "1015401000000102",
- "display": "Fecal occult blood test"
- }
- ],
- "text": "Fecal occult blood test"
- },
- "servicedPeriod": {
- "start": "2008-12-07T02:16:14-05:00",
- "end": "2008-12-07T03:33:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274031008",
- "display": "Rectal polypectomy"
- }
- ],
- "text": "Rectal polypectomy"
- },
- "servicedPeriod": {
- "start": "2008-12-07T02:16:14-05:00",
- "end": "2008-12-07T03:33:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 7355.51,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1471.102,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 5884.408,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7355.51,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 7355.51,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 16629.576,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75",
- "resource": {
- "resourceType": "Encounter",
- "id": "ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2009-02-07T02:16:14-05:00",
- "end": "2009-02-07T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2046d0fb-4a0e-481b-a1b0-d58af8dde566",
- "resource": {
- "resourceType": "Observation",
- "id": "2046d0fb-4a0e-481b-a1b0-d58af8dde566",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 67.28341963991541,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:08c34738-48a1-4914-9e6d-86092cee658d",
- "resource": {
- "resourceType": "Observation",
- "id": "08c34738-48a1-4914-9e6d-86092cee658d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 19.969756498816295,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2caacbb3-eb38-4157-a3f0-f7df05b9cb89",
- "resource": {
- "resourceType": "Observation",
- "id": "2caacbb3-eb38-4157-a3f0-f7df05b9cb89",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.7470273004307257,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6e5ec503-bc39-48d0-800d-4f2a752a9e9b",
- "resource": {
- "resourceType": "Observation",
- "id": "6e5ec503-bc39-48d0-800d-4f2a752a9e9b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 10.164642223330368,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ca48d169-6752-40a5-bc38-4ea0c47d8274",
- "resource": {
- "resourceType": "Observation",
- "id": "ca48d169-6752-40a5-bc38-4ea0c47d8274",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 141.05416371494894,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:477baa14-b648-47d4-b7c5-a9b1eafeb8e2",
- "resource": {
- "resourceType": "Observation",
- "id": "477baa14-b648-47d4-b7c5-a9b1eafeb8e2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.681886952200325,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3cd1947c-98e5-46f3-b6df-b2b9a48d4e96",
- "resource": {
- "resourceType": "Observation",
- "id": "3cd1947c-98e5-46f3-b6df-b2b9a48d4e96",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 102.71414886316302,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9cf02c9c-e09e-4e4d-89ab-d02b8943cd43",
- "resource": {
- "resourceType": "Observation",
- "id": "9cf02c9c-e09e-4e4d-89ab-d02b8943cd43",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 24.2924819010653,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9d874f34-a883-4bde-9264-4dede82b0af6",
- "resource": {
- "resourceType": "Observation",
- "id": "9d874f34-a883-4bde-9264-4dede82b0af6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33914-3",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- }
- ],
- "text": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 66.81007944493183,
- "unit": "mL/min",
- "system": "http://unitsofmeasure.org",
- "code": "mL/min"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1fc0cc97-13fd-4f3a-8c4b-288ab41e787b",
- "resource": {
- "resourceType": "Observation",
- "id": "1fc0cc97-13fd-4f3a-8c4b-288ab41e787b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2885-2",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Protein [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 69.03998184464547,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ef0e67b1-babf-4365-bfa8-90f3d69c94b2",
- "resource": {
- "resourceType": "Observation",
- "id": "ef0e67b1-babf-4365-bfa8-90f3d69c94b2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1751-7",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Albumin [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 5.499621140339182,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b47af362-fe7b-474d-82b3-1f71a54442ab",
- "resource": {
- "resourceType": "Observation",
- "id": "b47af362-fe7b-474d-82b3-1f71a54442ab",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10834-0",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- }
- ],
- "text": "Globulin [Mass/volume] in Serum by calculation"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.1928200935069206,
- "unit": "g/L",
- "system": "http://unitsofmeasure.org",
- "code": "g/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:35faec68-0746-491c-9972-9dad0f02b110",
- "resource": {
- "resourceType": "Observation",
- "id": "35faec68-0746-491c-9972-9dad0f02b110",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1975-2",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 1.0942839767675299,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:77c0b36b-419a-466b-a6c3-ad99027f5021",
- "resource": {
- "resourceType": "Observation",
- "id": "77c0b36b-419a-466b-a6c3-ad99027f5021",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6768-6",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 104.80436567747147,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:208f33a6-50b2-4f8d-ab1c-c44cd0f2fd09",
- "resource": {
- "resourceType": "Observation",
- "id": "208f33a6-50b2-4f8d-ab1c-c44cd0f2fd09",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1742-6",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 46.59653777053855,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:47e7a718-f2f6-43f8-8382-0040228fef26",
- "resource": {
- "resourceType": "Observation",
- "id": "47e7a718-f2f6-43f8-8382-0040228fef26",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1920-8",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 36.03283800165259,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:19338476-aeb9-430c-a33f-325b5f87776b",
- "resource": {
- "resourceType": "Observation",
- "id": "19338476-aeb9-430c-a33f-325b5f87776b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 167.75705227680507,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:27670d76-9664-4455-b8a1-af76c8c0041a",
- "resource": {
- "resourceType": "Observation",
- "id": "27670d76-9664-4455-b8a1-af76c8c0041a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 117.40169257016713,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a5be33bf-5653-4362-885f-0699798e06b7",
- "resource": {
- "resourceType": "Observation",
- "id": "a5be33bf-5653-4362-885f-0699798e06b7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 128.78377142495873,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5b97a3b8-7664-4ee3-a97f-f6bcb0fd7951",
- "resource": {
- "resourceType": "Observation",
- "id": "5b97a3b8-7664-4ee3-a97f-f6bcb0fd7951",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 68.8975831974738,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c8521157-eae3-4661-9cce-944b0e107094",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "c8521157-eae3-4661-9cce-944b0e107094",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "authoredOn": "2009-02-07T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:49e94df0-848f-498c-a393-71fed3fd5399",
- "resource": {
- "resourceType": "Claim",
- "id": "49e94df0-848f-498c-a393-71fed3fd5399",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2009-02-07T02:16:14-05:00",
- "end": "2009-02-07T02:31:14-05:00"
- },
- "created": "2009-02-07T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:c8521157-eae3-4661-9cce-944b0e107094"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b61df4b8-d7cd-45d7-b6a4-7657d4e8a971",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "b61df4b8-d7cd-45d7-b6a4-7657d4e8a971",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "24323-8",
- "display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- }
- ],
- "text": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:2046d0fb-4a0e-481b-a1b0-d58af8dde566",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:08c34738-48a1-4914-9e6d-86092cee658d",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:2caacbb3-eb38-4157-a3f0-f7df05b9cb89",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:6e5ec503-bc39-48d0-800d-4f2a752a9e9b",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:ca48d169-6752-40a5-bc38-4ea0c47d8274",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:477baa14-b648-47d4-b7c5-a9b1eafeb8e2",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:3cd1947c-98e5-46f3-b6df-b2b9a48d4e96",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:9cf02c9c-e09e-4e4d-89ab-d02b8943cd43",
- "display": "Carbon Dioxide"
- },
- {
- "reference": "urn:uuid:9d874f34-a883-4bde-9264-4dede82b0af6",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- {
- "reference": "urn:uuid:1fc0cc97-13fd-4f3a-8c4b-288ab41e787b",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:ef0e67b1-babf-4365-bfa8-90f3d69c94b2",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:b47af362-fe7b-474d-82b3-1f71a54442ab",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- },
- {
- "reference": "urn:uuid:35faec68-0746-491c-9972-9dad0f02b110",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:77c0b36b-419a-466b-a6c3-ad99027f5021",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:208f33a6-50b2-4f8d-ab1c-c44cd0f2fd09",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:47e7a718-f2f6-43f8-8382-0040228fef26",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:3e673ebb-6c8b-4393-9b56-3242173a27b2",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "3e673ebb-6c8b-4393-9b56-3242173a27b2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- },
- "effectiveDateTime": "2009-02-07T02:16:14-05:00",
- "issued": "2009-02-07T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:19338476-aeb9-430c-a33f-325b5f87776b",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:27670d76-9664-4455-b8a1-af76c8c0041a",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:a5be33bf-5653-4362-885f-0699798e06b7",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:5b97a3b8-7664-4ee3-a97f-f6bcb0fd7951",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:922a378f-0440-4c22-9b95-08c3acc296ad",
- "resource": {
- "resourceType": "Claim",
- "id": "922a378f-0440-4c22-9b95-08c3acc296ad",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2009-02-07T02:16:14-05:00",
- "end": "2009-02-07T02:31:14-05:00"
- },
- "created": "2009-02-07T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:2e5795c6-57b3-43c0-a299-969eea717489",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "2e5795c6-57b3-43c0-a299-969eea717489",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "922a378f-0440-4c22-9b95-08c3acc296ad"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2009-02-07T02:31:14-05:00",
- "end": "2010-02-07T02:31:14-05:00"
- },
- "created": "2009-02-07T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:922a378f-0440-4c22-9b95-08c3acc296ad"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2009-02-07T02:16:14-05:00",
- "end": "2009-02-07T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ac5975fe-c9e4-4d6e-b85e-07ec4c5eff75"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37",
- "resource": {
- "resourceType": "Encounter",
- "id": "0e1f4ac5-b19b-402a-b7b0-f676d3680e37",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "2009-05-17T03:16:14-04:00",
- "end": "2009-05-17T03:31:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:5c9fbc2e-9649-4af8-a93f-6af137cea8de",
- "resource": {
- "resourceType": "Observation",
- "id": "5c9fbc2e-9649-4af8-a93f-6af137cea8de",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d2e69968-3076-4741-985c-c0b266cc276d",
- "resource": {
- "resourceType": "Observation",
- "id": "d2e69968-3076-4741-985c-c0b266cc276d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 1.8543341583730282,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e618c74d-6af9-41d5-ae11-0a6981c0f145",
- "resource": {
- "resourceType": "Observation",
- "id": "e618c74d-6af9-41d5-ae11-0a6981c0f145",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9a3c6a41-bf63-4a54-9141-db48b32eef22",
- "resource": {
- "resourceType": "Observation",
- "id": "9a3c6a41-bf63-4a54-9141-db48b32eef22",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a9e1e3b1-234e-4929-a70c-cf36bce167e2",
- "resource": {
- "resourceType": "Observation",
- "id": "a9e1e3b1-234e-4929-a70c-cf36bce167e2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 78.39812112035538,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 129.25706952494144,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:50f47995-2285-449a-9b11-95dc38dc6156",
- "resource": {
- "resourceType": "Observation",
- "id": "50f47995-2285-449a-9b11-95dc38dc6156",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 89.1605160375288,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cd37c40f-354d-46d8-98b8-89cc2b727ad6",
- "resource": {
- "resourceType": "Observation",
- "id": "cd37c40f-354d-46d8-98b8-89cc2b727ad6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 19.89477278982625,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1de1f150-8f86-4def-aa2c-d20b29d6ce0e",
- "resource": {
- "resourceType": "Observation",
- "id": "1de1f150-8f86-4def-aa2c-d20b29d6ce0e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.6976919822366275,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bd107a27-e7a3-4313-8c08-dc3ac2754b87",
- "resource": {
- "resourceType": "Observation",
- "id": "bd107a27-e7a3-4313-8c08-dc3ac2754b87",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 8.84688019853997,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e0cf0851-a29e-493e-a099-4f60a1401c1f",
- "resource": {
- "resourceType": "Observation",
- "id": "e0cf0851-a29e-493e-a099-4f60a1401c1f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 143.10927674370566,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:209146a0-f1b0-4968-8800-b5509e668d43",
- "resource": {
- "resourceType": "Observation",
- "id": "209146a0-f1b0-4968-8800-b5509e668d43",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.665973825054767,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:76926ac8-e624-4b31-9c20-a76f29666ec3",
- "resource": {
- "resourceType": "Observation",
- "id": "76926ac8-e624-4b31-9c20-a76f29666ec3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 108.21054606534483,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cea5cb2c-2fa4-42bb-98c7-de76534edce3",
- "resource": {
- "resourceType": "Observation",
- "id": "cea5cb2c-2fa4-42bb-98c7-de76534edce3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 28.16061279569666,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:996f04a1-ade6-4c7d-afae-87f58031b70e",
- "resource": {
- "resourceType": "Observation",
- "id": "996f04a1-ade6-4c7d-afae-87f58031b70e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e8b2a764-30b2-4aeb-a1ba-407ab891548a",
- "resource": {
- "resourceType": "Observation",
- "id": "e8b2a764-30b2-4aeb-a1ba-407ab891548a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 6.039740443659902,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5d586d97-52e8-4a5c-bee4-2910571ed915",
- "resource": {
- "resourceType": "Immunization",
- "id": "5d586d97-52e8-4a5c-bee4-2910571ed915",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "occurrenceDateTime": "2009-05-17T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:4afaa5c7-691a-4973-8186-6f3d1a291274",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "4afaa5c7-691a-4973-8186-6f3d1a291274",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- },
- "effectiveDateTime": "2009-05-17T03:16:14-04:00",
- "issued": "2009-05-17T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:50f47995-2285-449a-9b11-95dc38dc6156",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:cd37c40f-354d-46d8-98b8-89cc2b727ad6",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:1de1f150-8f86-4def-aa2c-d20b29d6ce0e",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:bd107a27-e7a3-4313-8c08-dc3ac2754b87",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:e0cf0851-a29e-493e-a099-4f60a1401c1f",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:209146a0-f1b0-4968-8800-b5509e668d43",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:76926ac8-e624-4b31-9c20-a76f29666ec3",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:cea5cb2c-2fa4-42bb-98c7-de76534edce3",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:99a61d01-09ef-4053-b821-14b207b5e035",
- "resource": {
- "resourceType": "Claim",
- "id": "99a61d01-09ef-4053-b821-14b207b5e035",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2009-05-17T03:16:14-04:00",
- "end": "2009-05-17T03:31:14-04:00"
- },
- "created": "2009-05-17T03:31:14-04:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:5d586d97-52e8-4a5c-bee4-2910571ed915"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3f977fa2-b729-482e-b3fe-2c9f41745b16",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3f977fa2-b729-482e-b3fe-2c9f41745b16",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "99a61d01-09ef-4053-b821-14b207b5e035"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2009-05-17T03:31:14-04:00",
- "end": "2010-05-17T03:31:14-04:00"
- },
- "created": "2009-05-17T03:31:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:99a61d01-09ef-4053-b821-14b207b5e035"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2009-05-17T03:16:14-04:00",
- "end": "2009-05-17T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:0e1f4ac5-b19b-402a-b7b0-f676d3680e37"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2009-05-17T03:16:14-04:00",
- "end": "2009-05-17T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:74ee2fd9-7e5d-42c3-8d25-5c8a565afb55",
- "resource": {
- "resourceType": "Encounter",
- "id": "74ee2fd9-7e5d-42c3-8d25-5c8a565afb55",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2009-12-02T02:16:14-05:00",
- "end": "2009-12-02T03:05:14-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:3111a668-f478-4d02-a738-60385d9cb7c5",
- "resource": {
- "resourceType": "Procedure",
- "id": "3111a668-f478-4d02-a738-60385d9cb7c5",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:74ee2fd9-7e5d-42c3-8d25-5c8a565afb55"
- },
- "performedPeriod": {
- "start": "2009-12-02T02:16:14-05:00",
- "end": "2009-12-02T02:50:14-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:ec3e67aa-fccd-4c9d-bd4f-2732af111ed3",
- "resource": {
- "resourceType": "Claim",
- "id": "ec3e67aa-fccd-4c9d-bd4f-2732af111ed3",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2009-12-02T02:16:14-05:00",
- "end": "2009-12-02T03:05:14-05:00"
- },
- "created": "2009-12-02T03:05:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:3111a668-f478-4d02-a738-60385d9cb7c5"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "encounter": [
- {
- "reference": "urn:uuid:74ee2fd9-7e5d-42c3-8d25-5c8a565afb55"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "net": {
- "value": 15259.62,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:996be441-7fae-49f6-8bd9-3b51326df81a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "996be441-7fae-49f6-8bd9-3b51326df81a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ec3e67aa-fccd-4c9d-bd4f-2732af111ed3"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2009-12-02T03:05:14-05:00",
- "end": "2010-12-02T03:05:14-05:00"
- },
- "created": "2009-12-02T03:05:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ec3e67aa-fccd-4c9d-bd4f-2732af111ed3"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "servicedPeriod": {
- "start": "2009-12-02T02:16:14-05:00",
- "end": "2009-12-02T03:05:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:74ee2fd9-7e5d-42c3-8d25-5c8a565afb55"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "servicedPeriod": {
- "start": "2009-12-02T02:16:14-05:00",
- "end": "2009-12-02T03:05:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 15259.62,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 3051.9240000000004,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 12207.696000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 15259.62,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 15259.62,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 12207.696000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867",
- "resource": {
- "resourceType": "Encounter",
- "id": "f98a1de2-d3e7-4df6-a471-dc36a2d80867",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2010-02-07T02:16:14-05:00",
- "end": "2010-02-07T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:1ac90f03-a73b-4195-a57c-a494fa112d9b",
- "resource": {
- "resourceType": "Observation",
- "id": "1ac90f03-a73b-4195-a57c-a494fa112d9b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 78.849899096746,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a5ecaf89-501a-4c09-b6bf-24f8ced7764e",
- "resource": {
- "resourceType": "Observation",
- "id": "a5ecaf89-501a-4c09-b6bf-24f8ced7764e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 10.895746921203568,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2625b236-296e-4a1a-8929-57846121a75d",
- "resource": {
- "resourceType": "Observation",
- "id": "2625b236-296e-4a1a-8929-57846121a75d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.1963288928635305,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e2c9b2a3-6954-4e73-8acf-ae3d332ea044",
- "resource": {
- "resourceType": "Observation",
- "id": "e2c9b2a3-6954-4e73-8acf-ae3d332ea044",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 10.166219866030184,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:99b8c4dc-23e8-4d25-84f2-f430132c30fc",
- "resource": {
- "resourceType": "Observation",
- "id": "99b8c4dc-23e8-4d25-84f2-f430132c30fc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 137.73943333482748,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:70663839-087e-4cb6-8524-eb6c9c109ea5",
- "resource": {
- "resourceType": "Observation",
- "id": "70663839-087e-4cb6-8524-eb6c9c109ea5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.565820919869535,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4f72269e-56ab-4e50-90bf-70aa136d4319",
- "resource": {
- "resourceType": "Observation",
- "id": "4f72269e-56ab-4e50-90bf-70aa136d4319",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 108.58155828280472,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0fac60b5-f827-4ec5-99bb-15ee6920dc35",
- "resource": {
- "resourceType": "Observation",
- "id": "0fac60b5-f827-4ec5-99bb-15ee6920dc35",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 23.322601734870855,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e248475a-31b4-47b5-a5bd-a43c3abdc264",
- "resource": {
- "resourceType": "Observation",
- "id": "e248475a-31b4-47b5-a5bd-a43c3abdc264",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33914-3",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- }
- ],
- "text": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 77.44850780323205,
- "unit": "mL/min",
- "system": "http://unitsofmeasure.org",
- "code": "mL/min"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:266a48f2-95ea-48f1-a777-d82785403454",
- "resource": {
- "resourceType": "Observation",
- "id": "266a48f2-95ea-48f1-a777-d82785403454",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2885-2",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Protein [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 69.94453973824932,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f8966bd7-818f-4cab-b651-58a81c3c733b",
- "resource": {
- "resourceType": "Observation",
- "id": "f8966bd7-818f-4cab-b651-58a81c3c733b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1751-7",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Albumin [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.937174248858219,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:de7a4fbd-3ccb-497e-af4d-15b510f0130c",
- "resource": {
- "resourceType": "Observation",
- "id": "de7a4fbd-3ccb-497e-af4d-15b510f0130c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10834-0",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- }
- ],
- "text": "Globulin [Mass/volume] in Serum by calculation"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.84591384036199,
- "unit": "g/L",
- "system": "http://unitsofmeasure.org",
- "code": "g/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0ecf8d2c-3c70-489a-8c99-0f5a6424b3d4",
- "resource": {
- "resourceType": "Observation",
- "id": "0ecf8d2c-3c70-489a-8c99-0f5a6424b3d4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1975-2",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.12284522419232202,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b42a9207-0550-4703-8678-036ccda32c53",
- "resource": {
- "resourceType": "Observation",
- "id": "b42a9207-0550-4703-8678-036ccda32c53",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6768-6",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 115.70024938265611,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:75181738-6704-4098-8cf8-dfdcd9ecbe5b",
- "resource": {
- "resourceType": "Observation",
- "id": "75181738-6704-4098-8cf8-dfdcd9ecbe5b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1742-6",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 25.683258792768903,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b918d387-e0da-4813-acdc-6a9db1415667",
- "resource": {
- "resourceType": "Observation",
- "id": "b918d387-e0da-4813-acdc-6a9db1415667",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1920-8",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 28.47465068922566,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cebae20b-b660-4f63-9334-895b789f5cc4",
- "resource": {
- "resourceType": "Observation",
- "id": "cebae20b-b660-4f63-9334-895b789f5cc4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 202.2261152269167,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:279fb1c0-910d-49af-9961-f57c370e79c7",
- "resource": {
- "resourceType": "Observation",
- "id": "279fb1c0-910d-49af-9961-f57c370e79c7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 190.21575246526004,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:979af401-a552-464f-8b2e-be062767e138",
- "resource": {
- "resourceType": "Observation",
- "id": "979af401-a552-464f-8b2e-be062767e138",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 130.86591488784805,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3aaaf0f1-f7e3-46a1-9016-9df21e53c70d",
- "resource": {
- "resourceType": "Observation",
- "id": "3aaaf0f1-f7e3-46a1-9016-9df21e53c70d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 36.27161814485784,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:230110fe-70bf-4b91-a10a-997d76920d1a",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "230110fe-70bf-4b91-a10a-997d76920d1a",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "authoredOn": "2010-02-07T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:3efe37ad-de54-4097-af8f-29c688fd9588",
- "resource": {
- "resourceType": "Claim",
- "id": "3efe37ad-de54-4097-af8f-29c688fd9588",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2010-02-07T02:16:14-05:00",
- "end": "2010-02-07T02:31:14-05:00"
- },
- "created": "2010-02-07T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:230110fe-70bf-4b91-a10a-997d76920d1a"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1806f4ca-300f-4a3f-8f74-d33829a8b0a1",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "1806f4ca-300f-4a3f-8f74-d33829a8b0a1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "24323-8",
- "display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- }
- ],
- "text": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:1ac90f03-a73b-4195-a57c-a494fa112d9b",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:a5ecaf89-501a-4c09-b6bf-24f8ced7764e",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:2625b236-296e-4a1a-8929-57846121a75d",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:e2c9b2a3-6954-4e73-8acf-ae3d332ea044",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:99b8c4dc-23e8-4d25-84f2-f430132c30fc",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:70663839-087e-4cb6-8524-eb6c9c109ea5",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:4f72269e-56ab-4e50-90bf-70aa136d4319",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:0fac60b5-f827-4ec5-99bb-15ee6920dc35",
- "display": "Carbon Dioxide"
- },
- {
- "reference": "urn:uuid:e248475a-31b4-47b5-a5bd-a43c3abdc264",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- {
- "reference": "urn:uuid:266a48f2-95ea-48f1-a777-d82785403454",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:f8966bd7-818f-4cab-b651-58a81c3c733b",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:de7a4fbd-3ccb-497e-af4d-15b510f0130c",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- },
- {
- "reference": "urn:uuid:0ecf8d2c-3c70-489a-8c99-0f5a6424b3d4",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:b42a9207-0550-4703-8678-036ccda32c53",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:75181738-6704-4098-8cf8-dfdcd9ecbe5b",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:b918d387-e0da-4813-acdc-6a9db1415667",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:b84224f9-5127-4290-aca0-10664f2a9c82",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "b84224f9-5127-4290-aca0-10664f2a9c82",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- },
- "effectiveDateTime": "2010-02-07T02:16:14-05:00",
- "issued": "2010-02-07T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:cebae20b-b660-4f63-9334-895b789f5cc4",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:279fb1c0-910d-49af-9961-f57c370e79c7",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:979af401-a552-464f-8b2e-be062767e138",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:3aaaf0f1-f7e3-46a1-9016-9df21e53c70d",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:3a2ebd7c-5574-41f3-bb36-a2e5ffb7476c",
- "resource": {
- "resourceType": "Claim",
- "id": "3a2ebd7c-5574-41f3-bb36-a2e5ffb7476c",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2010-02-07T02:16:14-05:00",
- "end": "2010-02-07T02:31:14-05:00"
- },
- "created": "2010-02-07T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:96f8fb4e-b0e1-4d2b-93cf-c60f19314ba6",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "96f8fb4e-b0e1-4d2b-93cf-c60f19314ba6",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3a2ebd7c-5574-41f3-bb36-a2e5ffb7476c"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2010-02-07T02:31:14-05:00",
- "end": "2011-02-07T02:31:14-05:00"
- },
- "created": "2010-02-07T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3a2ebd7c-5574-41f3-bb36-a2e5ffb7476c"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2010-02-07T02:16:14-05:00",
- "end": "2010-02-07T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f98a1de2-d3e7-4df6-a471-dc36a2d80867"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51",
- "resource": {
- "resourceType": "Encounter",
- "id": "77ad99da-931c-44ea-89f3-3f654729bd51",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "2010-05-23T03:16:14-04:00",
- "end": "2010-05-23T03:31:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:e2ac32d2-214c-47cf-8b47-ae4685ffc090",
- "resource": {
- "resourceType": "Observation",
- "id": "e2ac32d2-214c-47cf-8b47-ae4685ffc090",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bdb0530d-15c5-422e-bafc-feeeb12d16bb",
- "resource": {
- "resourceType": "Observation",
- "id": "bdb0530d-15c5-422e-bafc-feeeb12d16bb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 3.4007356674364435,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:087881ad-e987-4509-af66-f75a8aeca2d1",
- "resource": {
- "resourceType": "Observation",
- "id": "087881ad-e987-4509-af66-f75a8aeca2d1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b9ab81c2-3d3a-420f-9704-730a4fe6e500",
- "resource": {
- "resourceType": "Observation",
- "id": "b9ab81c2-3d3a-420f-9704-730a4fe6e500",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d06a3888-3cdd-4a54-a11f-56d4bfe17888",
- "resource": {
- "resourceType": "Observation",
- "id": "d06a3888-3cdd-4a54-a11f-56d4bfe17888",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 73.46430714015945,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 117.27065189250517,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:36514933-34d3-41e0-af0b-343f7eec34d6",
- "resource": {
- "resourceType": "Observation",
- "id": "36514933-34d3-41e0-af0b-343f7eec34d6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 82.87410152348559,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:52b11ec8-e28b-44e3-9cf7-e917e28ff95e",
- "resource": {
- "resourceType": "Observation",
- "id": "52b11ec8-e28b-44e3-9cf7-e917e28ff95e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 8.114745755576534,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ece54943-3d5a-4f70-a2fb-3a374f2a15a8",
- "resource": {
- "resourceType": "Observation",
- "id": "ece54943-3d5a-4f70-a2fb-3a374f2a15a8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.6867905450141802,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1e2012c5-0f55-4eef-a539-5403fe0e912e",
- "resource": {
- "resourceType": "Observation",
- "id": "1e2012c5-0f55-4eef-a539-5403fe0e912e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 9.111570492873822,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d33c5744-d078-443e-86ff-6072797cae48",
- "resource": {
- "resourceType": "Observation",
- "id": "d33c5744-d078-443e-86ff-6072797cae48",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 143.5712847051162,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:10692c12-70f7-4d08-bdc4-a07920d70797",
- "resource": {
- "resourceType": "Observation",
- "id": "10692c12-70f7-4d08-bdc4-a07920d70797",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.863841764649372,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1647ef1c-7917-4c66-806b-b2b41ced4cc5",
- "resource": {
- "resourceType": "Observation",
- "id": "1647ef1c-7917-4c66-806b-b2b41ced4cc5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 106.78136137060875,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9deef054-cc9f-4172-8263-766fdf8981e4",
- "resource": {
- "resourceType": "Observation",
- "id": "9deef054-cc9f-4172-8263-766fdf8981e4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 22.81766773590681,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1ca9d262-5453-4eb5-a188-5e3b9697364c",
- "resource": {
- "resourceType": "Observation",
- "id": "1ca9d262-5453-4eb5-a188-5e3b9697364c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 178.58660004704174,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:402d579b-088b-4f0e-82c2-7c4b76694b02",
- "resource": {
- "resourceType": "Observation",
- "id": "402d579b-088b-4f0e-82c2-7c4b76694b02",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 145.42496827819065,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:05a46120-22e6-4b89-aeba-a1fd51f1304b",
- "resource": {
- "resourceType": "Observation",
- "id": "05a46120-22e6-4b89-aeba-a1fd51f1304b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 85.37570989594431,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2946929e-6734-4aa2-b124-fe2adedbab09",
- "resource": {
- "resourceType": "Observation",
- "id": "2946929e-6734-4aa2-b124-fe2adedbab09",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 64.1258964954593,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4a1c747c-9873-4ced-9351-465cad1373b8",
- "resource": {
- "resourceType": "Observation",
- "id": "4a1c747c-9873-4ced-9351-465cad1373b8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 5.39016867714979,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:af69ebea-38ee-48c0-8f58-367d34eb8608",
- "resource": {
- "resourceType": "Observation",
- "id": "af69ebea-38ee-48c0-8f58-367d34eb8608",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.430165946406081,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a8867c85-5ae4-476d-9256-def63da0e2c2",
- "resource": {
- "resourceType": "Observation",
- "id": "a8867c85-5ae4-476d-9256-def63da0e2c2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 12.898048766382642,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:728d7103-f4e7-48e8-9f45-b199547ffc3b",
- "resource": {
- "resourceType": "Observation",
- "id": "728d7103-f4e7-48e8-9f45-b199547ffc3b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 41.15490003830351,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a9ab90e4-1cf1-416f-8b3d-1c6e3844ef9d",
- "resource": {
- "resourceType": "Observation",
- "id": "a9ab90e4-1cf1-416f-8b3d-1c6e3844ef9d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 82.00875779770112,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:52c26dd2-f87a-4113-8e44-bef7fd00dd92",
- "resource": {
- "resourceType": "Observation",
- "id": "52c26dd2-f87a-4113-8e44-bef7fd00dd92",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 30.00219318718634,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:681ef133-616f-4b2d-a138-711b2bfed5dd",
- "resource": {
- "resourceType": "Observation",
- "id": "681ef133-616f-4b2d-a138-711b2bfed5dd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 34.362771852722034,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bd249527-d9d7-48b9-89b0-e5317d320b35",
- "resource": {
- "resourceType": "Observation",
- "id": "bd249527-d9d7-48b9-89b0-e5317d320b35",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 45.737791474377964,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a5c87470-b0e7-4df0-ba59-f5c2b8a7dd5c",
- "resource": {
- "resourceType": "Observation",
- "id": "a5c87470-b0e7-4df0-ba59-f5c2b8a7dd5c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 216.95831002216613,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:69ee6d40-7857-4dc3-b19e-6291b3229b86",
- "resource": {
- "resourceType": "Observation",
- "id": "69ee6d40-7857-4dc3-b19e-6291b3229b86",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 180.11056937250152,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:36abb516-51a4-48da-8cee-b2d23db63a48",
- "resource": {
- "resourceType": "Observation",
- "id": "36abb516-51a4-48da-8cee-b2d23db63a48",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 10.395293098999915,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e6180382-2c3b-4187-b28a-8ac81bc14403",
- "resource": {
- "resourceType": "Observation",
- "id": "e6180382-2c3b-4187-b28a-8ac81bc14403",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:89d3b154-c189-4058-8f0c-2fb98322153e",
- "resource": {
- "resourceType": "Observation",
- "id": "89d3b154-c189-4058-8f0c-2fb98322153e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 6.141324393306089,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c3a41e93-21ee-46d7-bcad-c44251fbd14f",
- "resource": {
- "resourceType": "Immunization",
- "id": "c3a41e93-21ee-46d7-bcad-c44251fbd14f",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "occurrenceDateTime": "2010-05-23T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:61636f39-02d6-46cb-9907-f52020802991",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "61636f39-02d6-46cb-9907-f52020802991",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:36514933-34d3-41e0-af0b-343f7eec34d6",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:52b11ec8-e28b-44e3-9cf7-e917e28ff95e",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:ece54943-3d5a-4f70-a2fb-3a374f2a15a8",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:1e2012c5-0f55-4eef-a539-5403fe0e912e",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:d33c5744-d078-443e-86ff-6072797cae48",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:10692c12-70f7-4d08-bdc4-a07920d70797",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:1647ef1c-7917-4c66-806b-b2b41ced4cc5",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:9deef054-cc9f-4172-8263-766fdf8981e4",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:7540a003-20f5-4113-9419-b496e5945dc4",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "7540a003-20f5-4113-9419-b496e5945dc4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:1ca9d262-5453-4eb5-a188-5e3b9697364c",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:402d579b-088b-4f0e-82c2-7c4b76694b02",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:05a46120-22e6-4b89-aeba-a1fd51f1304b",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:2946929e-6734-4aa2-b124-fe2adedbab09",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:9d4c0f14-8185-4d6a-9971-6bd0be5aa82b",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "9d4c0f14-8185-4d6a-9971-6bd0be5aa82b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- },
- "effectiveDateTime": "2010-05-23T03:16:14-04:00",
- "issued": "2010-05-23T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:4a1c747c-9873-4ced-9351-465cad1373b8",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:af69ebea-38ee-48c0-8f58-367d34eb8608",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:a8867c85-5ae4-476d-9256-def63da0e2c2",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:728d7103-f4e7-48e8-9f45-b199547ffc3b",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:a9ab90e4-1cf1-416f-8b3d-1c6e3844ef9d",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:52c26dd2-f87a-4113-8e44-bef7fd00dd92",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:681ef133-616f-4b2d-a138-711b2bfed5dd",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:bd249527-d9d7-48b9-89b0-e5317d320b35",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:a5c87470-b0e7-4df0-ba59-f5c2b8a7dd5c",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:69ee6d40-7857-4dc3-b19e-6291b3229b86",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:36abb516-51a4-48da-8cee-b2d23db63a48",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:891893ba-eea4-48fe-8ce0-3c31ab38f217",
- "resource": {
- "resourceType": "Claim",
- "id": "891893ba-eea4-48fe-8ce0-3c31ab38f217",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2010-05-23T03:16:14-04:00",
- "end": "2010-05-23T03:31:14-04:00"
- },
- "created": "2010-05-23T03:31:14-04:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:c3a41e93-21ee-46d7-bcad-c44251fbd14f"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:bfa745a1-13d2-4d78-8107-ce60779b2179",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "bfa745a1-13d2-4d78-8107-ce60779b2179",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "891893ba-eea4-48fe-8ce0-3c31ab38f217"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2010-05-23T03:31:14-04:00",
- "end": "2011-05-23T03:31:14-04:00"
- },
- "created": "2010-05-23T03:31:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:891893ba-eea4-48fe-8ce0-3c31ab38f217"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-05-23T03:16:14-04:00",
- "end": "2010-05-23T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:77ad99da-931c-44ea-89f3-3f654729bd51"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2010-05-23T03:16:14-04:00",
- "end": "2010-05-23T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f",
- "resource": {
- "resourceType": "Encounter",
- "id": "65b42553-51d5-48d2-9470-d0d10a5ce45f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2011-02-07T02:16:14-05:00",
- "end": "2011-02-07T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:26f9b54b-1617-4da0-ba1f-6356755ecbba",
- "resource": {
- "resourceType": "Observation",
- "id": "26f9b54b-1617-4da0-ba1f-6356755ecbba",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 68.51746705778439,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a990af13-64ec-4eb6-a4a2-6fdd6c163174",
- "resource": {
- "resourceType": "Observation",
- "id": "a990af13-64ec-4eb6-a4a2-6fdd6c163174",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 15.849852432386305,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:13ab15a0-71cb-422c-aae7-6e9a14702bb6",
- "resource": {
- "resourceType": "Observation",
- "id": "13ab15a0-71cb-422c-aae7-6e9a14702bb6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.5644281200608323,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a8911a2b-39d5-40b5-8be4-687b84863323",
- "resource": {
- "resourceType": "Observation",
- "id": "a8911a2b-39d5-40b5-8be4-687b84863323",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 9.795267545614932,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:394a11a4-0055-4e29-a58e-fda22f5fd6aa",
- "resource": {
- "resourceType": "Observation",
- "id": "394a11a4-0055-4e29-a58e-fda22f5fd6aa",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 136.57743999124048,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cacd7761-cd20-4268-9236-0833d0024443",
- "resource": {
- "resourceType": "Observation",
- "id": "cacd7761-cd20-4268-9236-0833d0024443",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 5.160796056494625,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cf565cef-3eae-4701-ad2b-daacc9d5df5b",
- "resource": {
- "resourceType": "Observation",
- "id": "cf565cef-3eae-4701-ad2b-daacc9d5df5b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 106.76514127406976,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:41336970-700c-4abd-9096-034b8ba911b7",
- "resource": {
- "resourceType": "Observation",
- "id": "41336970-700c-4abd-9096-034b8ba911b7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 24.759768030984663,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3c52c390-2ff4-488a-8db4-f0a0c681eec2",
- "resource": {
- "resourceType": "Observation",
- "id": "3c52c390-2ff4-488a-8db4-f0a0c681eec2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33914-3",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- }
- ],
- "text": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 71.82747441211339,
- "unit": "mL/min",
- "system": "http://unitsofmeasure.org",
- "code": "mL/min"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d8e4724d-e4cc-4552-87f5-d93253b44761",
- "resource": {
- "resourceType": "Observation",
- "id": "d8e4724d-e4cc-4552-87f5-d93253b44761",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2885-2",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Protein [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 66.49920478774052,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4f3e2eba-0c03-486f-aaf8-c7053d0af6e6",
- "resource": {
- "resourceType": "Observation",
- "id": "4f3e2eba-0c03-486f-aaf8-c7053d0af6e6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1751-7",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Albumin [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.5870954783845583,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2702a2d5-552f-4cee-a8d2-db863c8e92c2",
- "resource": {
- "resourceType": "Observation",
- "id": "2702a2d5-552f-4cee-a8d2-db863c8e92c2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10834-0",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- }
- ],
- "text": "Globulin [Mass/volume] in Serum by calculation"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.2722002577517566,
- "unit": "g/L",
- "system": "http://unitsofmeasure.org",
- "code": "g/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ca22d184-9114-4dcb-9df6-e97b6f8dfe8f",
- "resource": {
- "resourceType": "Observation",
- "id": "ca22d184-9114-4dcb-9df6-e97b6f8dfe8f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1975-2",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.6423273562029045,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a1c86f24-c3a2-4b54-9cfb-b9cdc6d6d8b2",
- "resource": {
- "resourceType": "Observation",
- "id": "a1c86f24-c3a2-4b54-9cfb-b9cdc6d6d8b2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6768-6",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 28.54984363716956,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f96f54ce-e3e1-422b-8cc1-b942b9f9a872",
- "resource": {
- "resourceType": "Observation",
- "id": "f96f54ce-e3e1-422b-8cc1-b942b9f9a872",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1742-6",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 33.090825033462366,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:956d5925-b714-44f2-a4f2-cb0d9402041a",
- "resource": {
- "resourceType": "Observation",
- "id": "956d5925-b714-44f2-a4f2-cb0d9402041a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1920-8",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 10.238246270307549,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9528a699-3c4c-4362-bab1-8a3060ac5246",
- "resource": {
- "resourceType": "Observation",
- "id": "9528a699-3c4c-4362-bab1-8a3060ac5246",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 163.91222601533056,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ddb66f6d-9e62-41d5-adb7-4c56de2eed1e",
- "resource": {
- "resourceType": "Observation",
- "id": "ddb66f6d-9e62-41d5-adb7-4c56de2eed1e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 192.1071292090063,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:387c44c1-062e-435b-9223-6709ead489a9",
- "resource": {
- "resourceType": "Observation",
- "id": "387c44c1-062e-435b-9223-6709ead489a9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 85.40133524691964,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c0bdae66-6ce4-4779-bba4-e1b178bb020e",
- "resource": {
- "resourceType": "Observation",
- "id": "c0bdae66-6ce4-4779-bba4-e1b178bb020e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 51.70159742975086,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3ee0538d-6f45-4080-94fb-f24571fbe644",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "3ee0538d-6f45-4080-94fb-f24571fbe644",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "authoredOn": "2011-02-07T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:ccd2415d-a4d4-4db4-b98a-7ff53d8e5817",
- "resource": {
- "resourceType": "Claim",
- "id": "ccd2415d-a4d4-4db4-b98a-7ff53d8e5817",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2011-02-07T02:16:14-05:00",
- "end": "2011-02-07T02:31:14-05:00"
- },
- "created": "2011-02-07T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:3ee0538d-6f45-4080-94fb-f24571fbe644"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:cf4e27a8-2dd7-49d1-8bb7-5d78117feb14",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "cf4e27a8-2dd7-49d1-8bb7-5d78117feb14",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "24323-8",
- "display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- }
- ],
- "text": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:26f9b54b-1617-4da0-ba1f-6356755ecbba",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:a990af13-64ec-4eb6-a4a2-6fdd6c163174",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:13ab15a0-71cb-422c-aae7-6e9a14702bb6",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:a8911a2b-39d5-40b5-8be4-687b84863323",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:394a11a4-0055-4e29-a58e-fda22f5fd6aa",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:cacd7761-cd20-4268-9236-0833d0024443",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:cf565cef-3eae-4701-ad2b-daacc9d5df5b",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:41336970-700c-4abd-9096-034b8ba911b7",
- "display": "Carbon Dioxide"
- },
- {
- "reference": "urn:uuid:3c52c390-2ff4-488a-8db4-f0a0c681eec2",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- {
- "reference": "urn:uuid:d8e4724d-e4cc-4552-87f5-d93253b44761",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:4f3e2eba-0c03-486f-aaf8-c7053d0af6e6",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:2702a2d5-552f-4cee-a8d2-db863c8e92c2",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- },
- {
- "reference": "urn:uuid:ca22d184-9114-4dcb-9df6-e97b6f8dfe8f",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:a1c86f24-c3a2-4b54-9cfb-b9cdc6d6d8b2",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:f96f54ce-e3e1-422b-8cc1-b942b9f9a872",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:956d5925-b714-44f2-a4f2-cb0d9402041a",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:fc212ab9-87e7-48ce-89ea-c483451dbade",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "fc212ab9-87e7-48ce-89ea-c483451dbade",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- },
- "effectiveDateTime": "2011-02-07T02:16:14-05:00",
- "issued": "2011-02-07T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:9528a699-3c4c-4362-bab1-8a3060ac5246",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:ddb66f6d-9e62-41d5-adb7-4c56de2eed1e",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:387c44c1-062e-435b-9223-6709ead489a9",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:c0bdae66-6ce4-4779-bba4-e1b178bb020e",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:5045d557-0d03-4dc2-98f6-d348166e9bbd",
- "resource": {
- "resourceType": "Claim",
- "id": "5045d557-0d03-4dc2-98f6-d348166e9bbd",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2011-02-07T02:16:14-05:00",
- "end": "2011-02-07T02:31:14-05:00"
- },
- "created": "2011-02-07T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5a23b75a-77a4-47da-b2b0-7b3b77707b9e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5a23b75a-77a4-47da-b2b0-7b3b77707b9e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5045d557-0d03-4dc2-98f6-d348166e9bbd"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2011-02-07T02:31:14-05:00",
- "end": "2012-02-07T02:31:14-05:00"
- },
- "created": "2011-02-07T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5045d557-0d03-4dc2-98f6-d348166e9bbd"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2011-02-07T02:16:14-05:00",
- "end": "2011-02-07T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:65b42553-51d5-48d2-9470-d0d10a5ce45f"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947",
- "resource": {
- "resourceType": "Encounter",
- "id": "6255843f-02de-4cc9-b0e7-05bf32e89947",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "2011-05-29T03:16:14-04:00",
- "end": "2011-05-29T03:46:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:9de5cc93-4486-470b-a7a0-69e81d6f0cda",
- "resource": {
- "resourceType": "Observation",
- "id": "9de5cc93-4486-470b-a7a0-69e81d6f0cda",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5c6b36f4-eeef-47de-9751-9d7b48532333",
- "resource": {
- "resourceType": "Observation",
- "id": "5c6b36f4-eeef-47de-9751-9d7b48532333",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.21468024011572595,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:92451642-bd93-4362-89ff-da9e9081436f",
- "resource": {
- "resourceType": "Observation",
- "id": "92451642-bd93-4362-89ff-da9e9081436f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6c2a183a-b454-46dd-b076-d50f87884e00",
- "resource": {
- "resourceType": "Observation",
- "id": "6c2a183a-b454-46dd-b076-d50f87884e00",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:27e6fb32-b5f4-4cf9-bb6e-065c105fcd25",
- "resource": {
- "resourceType": "Observation",
- "id": "27e6fb32-b5f4-4cf9-bb6e-065c105fcd25",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 79.2143651101915,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 117.40277813390688,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:50992db7-0d1d-48a3-8b19-8e8710129aa8",
- "resource": {
- "resourceType": "Observation",
- "id": "50992db7-0d1d-48a3-8b19-8e8710129aa8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 91.44467735867146,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a827b368-92ea-422d-9c7f-16a27592137e",
- "resource": {
- "resourceType": "Observation",
- "id": "a827b368-92ea-422d-9c7f-16a27592137e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 19.975947224605044,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c1d6cd65-c459-4d19-9f24-b1f6bf265d12",
- "resource": {
- "resourceType": "Observation",
- "id": "c1d6cd65-c459-4d19-9f24-b1f6bf265d12",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.675889107791733,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5f1fb083-9a3d-4739-9362-b7f26cd47587",
- "resource": {
- "resourceType": "Observation",
- "id": "5f1fb083-9a3d-4739-9362-b7f26cd47587",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 9.580010829023776,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cd53421f-a053-4873-9009-06c71c053848",
- "resource": {
- "resourceType": "Observation",
- "id": "cd53421f-a053-4873-9009-06c71c053848",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 136.0981686193976,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:45a9ad8c-197d-4cb0-b46d-8e89f3890daa",
- "resource": {
- "resourceType": "Observation",
- "id": "45a9ad8c-197d-4cb0-b46d-8e89f3890daa",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.281697272607801,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bc33b362-2c96-46a0-8e94-7f13f56b1e11",
- "resource": {
- "resourceType": "Observation",
- "id": "bc33b362-2c96-46a0-8e94-7f13f56b1e11",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 109.20554271111158,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5ca7d6f8-435b-4bc4-a302-8ea739771097",
- "resource": {
- "resourceType": "Observation",
- "id": "5ca7d6f8-435b-4bc4-a302-8ea739771097",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 23.397964661517747,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fd0d38a4-6306-45a0-9b5b-b3abad3f6b34",
- "resource": {
- "resourceType": "Observation",
- "id": "fd0d38a4-6306-45a0-9b5b-b3abad3f6b34",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d3848ce1-95d1-4a78-9bac-03350607cf2c",
- "resource": {
- "resourceType": "Observation",
- "id": "d3848ce1-95d1-4a78-9bac-03350607cf2c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 6.3425767236647195,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:603b9e82-9900-4054-86cf-fb1daa707ed4",
- "resource": {
- "resourceType": "Procedure",
- "id": "603b9e82-9900-4054-86cf-fb1daa707ed4",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "performedPeriod": {
- "start": "2011-05-29T03:16:14-04:00",
- "end": "2011-05-29T03:31:14-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:06b0f442-1d5c-4c4e-ba33-b46a86120889",
- "resource": {
- "resourceType": "Immunization",
- "id": "06b0f442-1d5c-4c4e-ba33-b46a86120889",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "occurrenceDateTime": "2011-05-29T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:d2bdfe72-155a-4ac7-ac34-b9d5c8e41f72",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "d2bdfe72-155a-4ac7-ac34-b9d5c8e41f72",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- },
- "effectiveDateTime": "2011-05-29T03:16:14-04:00",
- "issued": "2011-05-29T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:50992db7-0d1d-48a3-8b19-8e8710129aa8",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:a827b368-92ea-422d-9c7f-16a27592137e",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:c1d6cd65-c459-4d19-9f24-b1f6bf265d12",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:5f1fb083-9a3d-4739-9362-b7f26cd47587",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:cd53421f-a053-4873-9009-06c71c053848",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:45a9ad8c-197d-4cb0-b46d-8e89f3890daa",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:bc33b362-2c96-46a0-8e94-7f13f56b1e11",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:5ca7d6f8-435b-4bc4-a302-8ea739771097",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:b2aca480-b5f7-4ef0-a43f-5be930fd67fd",
- "resource": {
- "resourceType": "Claim",
- "id": "b2aca480-b5f7-4ef0-a43f-5be930fd67fd",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2011-05-29T03:16:14-04:00",
- "end": "2011-05-29T03:46:14-04:00"
- },
- "created": "2011-05-29T03:46:14-04:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:06b0f442-1d5c-4c4e-ba33-b46a86120889"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:603b9e82-9900-4054-86cf-fb1daa707ed4"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 782.29,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:6c295fed-b2e6-4b26-b63a-b3322b890cb7",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "6c295fed-b2e6-4b26-b63a-b3322b890cb7",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b2aca480-b5f7-4ef0-a43f-5be930fd67fd"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2011-05-29T03:46:14-04:00",
- "end": "2012-05-29T03:46:14-04:00"
- },
- "created": "2011-05-29T03:46:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b2aca480-b5f7-4ef0-a43f-5be930fd67fd"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2011-05-29T03:16:14-04:00",
- "end": "2011-05-29T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:6255843f-02de-4cc9-b0e7-05bf32e89947"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2011-05-29T03:16:14-04:00",
- "end": "2011-05-29T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2011-05-29T03:16:14-04:00",
- "end": "2011-05-29T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 782.29,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 156.458,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 625.832,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 782.29,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 782.29,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 738.248,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9",
- "resource": {
- "resourceType": "Encounter",
- "id": "1fc6e039-3f2e-46ed-99ed-17141a5c23c9",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2012-02-07T02:16:14-05:00",
- "end": "2012-02-07T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:dc04053b-b778-4007-b6d4-566281a5350e",
- "resource": {
- "resourceType": "Observation",
- "id": "dc04053b-b778-4007-b6d4-566281a5350e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 89.10308911775303,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9d1e3ea9-9e7a-4486-a1f7-4a1b8fceeb92",
- "resource": {
- "resourceType": "Observation",
- "id": "9d1e3ea9-9e7a-4486-a1f7-4a1b8fceeb92",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 11.506443098786479,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:07c1023b-2452-44b9-87f6-4b548bf81887",
- "resource": {
- "resourceType": "Observation",
- "id": "07c1023b-2452-44b9-87f6-4b548bf81887",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.7639857998023323,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:923c59ea-ca38-444a-b068-91eeaa8f994b",
- "resource": {
- "resourceType": "Observation",
- "id": "923c59ea-ca38-444a-b068-91eeaa8f994b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 9.944378395758042,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1bd4dc03-4afa-44fc-9931-a7669a95c073",
- "resource": {
- "resourceType": "Observation",
- "id": "1bd4dc03-4afa-44fc-9931-a7669a95c073",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 143.4402819053855,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a1215aa0-f100-46cb-aea7-18b96f84ec71",
- "resource": {
- "resourceType": "Observation",
- "id": "a1215aa0-f100-46cb-aea7-18b96f84ec71",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.706369327688248,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3f04b067-4242-42d2-8c56-f11ed1ed2e90",
- "resource": {
- "resourceType": "Observation",
- "id": "3f04b067-4242-42d2-8c56-f11ed1ed2e90",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 108.32647228895176,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:518769bf-dc5e-4a14-9f23-9b04fea74323",
- "resource": {
- "resourceType": "Observation",
- "id": "518769bf-dc5e-4a14-9f23-9b04fea74323",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 28.463397375324714,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e5898088-3e65-4b58-a0fb-5422888a3f48",
- "resource": {
- "resourceType": "Observation",
- "id": "e5898088-3e65-4b58-a0fb-5422888a3f48",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33914-3",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- }
- ],
- "text": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 67.82440921525512,
- "unit": "mL/min",
- "system": "http://unitsofmeasure.org",
- "code": "mL/min"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:96c36eb0-80a7-4c32-b767-68b70f5565f7",
- "resource": {
- "resourceType": "Observation",
- "id": "96c36eb0-80a7-4c32-b767-68b70f5565f7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2885-2",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Protein [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 74.08091037223211,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:285d64cf-eebe-4bb7-939f-45c07a075667",
- "resource": {
- "resourceType": "Observation",
- "id": "285d64cf-eebe-4bb7-939f-45c07a075667",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1751-7",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Albumin [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.058914439467889,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6b375f28-d331-4853-8c4f-ba0776450d51",
- "resource": {
- "resourceType": "Observation",
- "id": "6b375f28-d331-4853-8c4f-ba0776450d51",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10834-0",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- }
- ],
- "text": "Globulin [Mass/volume] in Serum by calculation"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.878803483855237,
- "unit": "g/L",
- "system": "http://unitsofmeasure.org",
- "code": "g/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c7f3855e-98d3-4890-9465-07b3311da8d7",
- "resource": {
- "resourceType": "Observation",
- "id": "c7f3855e-98d3-4890-9465-07b3311da8d7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1975-2",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.18020042758430027,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cc29113c-ea07-4fd0-87a1-f8582d868ec8",
- "resource": {
- "resourceType": "Observation",
- "id": "cc29113c-ea07-4fd0-87a1-f8582d868ec8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6768-6",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 86.4841292010239,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:98ed8c10-681a-41a5-b5f0-f159b330fbfc",
- "resource": {
- "resourceType": "Observation",
- "id": "98ed8c10-681a-41a5-b5f0-f159b330fbfc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1742-6",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 55.966921226556735,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1668e72e-8fb5-4e07-9dee-7a8f55b6bbec",
- "resource": {
- "resourceType": "Observation",
- "id": "1668e72e-8fb5-4e07-9dee-7a8f55b6bbec",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1920-8",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 23.192555637447132,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:61a48b16-c54a-47fb-a023-0118c267acf6",
- "resource": {
- "resourceType": "Observation",
- "id": "61a48b16-c54a-47fb-a023-0118c267acf6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 183.24761712900144,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:067cba52-35d8-4d83-af5d-dd8b37badcf5",
- "resource": {
- "resourceType": "Observation",
- "id": "067cba52-35d8-4d83-af5d-dd8b37badcf5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 170.79333753635302,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ae22d6a8-c0f8-4812-8f5b-f8a0fa14b1c3",
- "resource": {
- "resourceType": "Observation",
- "id": "ae22d6a8-c0f8-4812-8f5b-f8a0fa14b1c3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 121.11050363777298,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4131a845-972a-4603-8521-588ff65dc556",
- "resource": {
- "resourceType": "Observation",
- "id": "4131a845-972a-4603-8521-588ff65dc556",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 35.17665078424632,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:085aa339-f5cb-4ac9-9e5b-1d89ef3dc247",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "085aa339-f5cb-4ac9-9e5b-1d89ef3dc247",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "authoredOn": "2012-02-07T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:90783f79-a0da-472d-86e5-a89520edbcfb",
- "resource": {
- "resourceType": "Claim",
- "id": "90783f79-a0da-472d-86e5-a89520edbcfb",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2012-02-07T02:16:14-05:00",
- "end": "2012-02-07T02:31:14-05:00"
- },
- "created": "2012-02-07T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:085aa339-f5cb-4ac9-9e5b-1d89ef3dc247"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:8b18137f-f297-468c-a564-97e3a35907f9",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "8b18137f-f297-468c-a564-97e3a35907f9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "24323-8",
- "display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- }
- ],
- "text": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:dc04053b-b778-4007-b6d4-566281a5350e",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:9d1e3ea9-9e7a-4486-a1f7-4a1b8fceeb92",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:07c1023b-2452-44b9-87f6-4b548bf81887",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:923c59ea-ca38-444a-b068-91eeaa8f994b",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:1bd4dc03-4afa-44fc-9931-a7669a95c073",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:a1215aa0-f100-46cb-aea7-18b96f84ec71",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:3f04b067-4242-42d2-8c56-f11ed1ed2e90",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:518769bf-dc5e-4a14-9f23-9b04fea74323",
- "display": "Carbon Dioxide"
- },
- {
- "reference": "urn:uuid:e5898088-3e65-4b58-a0fb-5422888a3f48",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- {
- "reference": "urn:uuid:96c36eb0-80a7-4c32-b767-68b70f5565f7",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:285d64cf-eebe-4bb7-939f-45c07a075667",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:6b375f28-d331-4853-8c4f-ba0776450d51",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- },
- {
- "reference": "urn:uuid:c7f3855e-98d3-4890-9465-07b3311da8d7",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:cc29113c-ea07-4fd0-87a1-f8582d868ec8",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:98ed8c10-681a-41a5-b5f0-f159b330fbfc",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:1668e72e-8fb5-4e07-9dee-7a8f55b6bbec",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:bda1329b-31de-4ee3-8f4d-5d71a069ff1a",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "bda1329b-31de-4ee3-8f4d-5d71a069ff1a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- },
- "effectiveDateTime": "2012-02-07T02:16:14-05:00",
- "issued": "2012-02-07T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:61a48b16-c54a-47fb-a023-0118c267acf6",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:067cba52-35d8-4d83-af5d-dd8b37badcf5",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:ae22d6a8-c0f8-4812-8f5b-f8a0fa14b1c3",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:4131a845-972a-4603-8521-588ff65dc556",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:08eb463f-db12-40f7-8078-f4f8d682a9d3",
- "resource": {
- "resourceType": "Claim",
- "id": "08eb463f-db12-40f7-8078-f4f8d682a9d3",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2012-02-07T02:16:14-05:00",
- "end": "2012-02-07T02:31:14-05:00"
- },
- "created": "2012-02-07T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:c6468d8e-2da9-4197-8f5a-17004dd57db4",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "c6468d8e-2da9-4197-8f5a-17004dd57db4",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "08eb463f-db12-40f7-8078-f4f8d682a9d3"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2012-02-07T02:31:14-05:00",
- "end": "2013-02-07T02:31:14-05:00"
- },
- "created": "2012-02-07T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:08eb463f-db12-40f7-8078-f4f8d682a9d3"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2012-02-07T02:16:14-05:00",
- "end": "2012-02-07T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:1fc6e039-3f2e-46ed-99ed-17141a5c23c9"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24",
- "resource": {
- "resourceType": "Encounter",
- "id": "f5689f9b-4bb0-45b9-abe5-909356815f24",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "2012-06-03T03:16:14-04:00",
- "end": "2012-06-03T03:46:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:cc4afe9b-2979-407c-87e7-bf66d7edb5e1",
- "resource": {
- "resourceType": "Observation",
- "id": "cc4afe9b-2979-407c-87e7-bf66d7edb5e1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:aabffa45-8e0b-48ee-9018-80fbb1a19d2e",
- "resource": {
- "resourceType": "Observation",
- "id": "aabffa45-8e0b-48ee-9018-80fbb1a19d2e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.5281901065968286,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a7aa9aec-9abb-4f1e-b0e6-d5c31afde5ac",
- "resource": {
- "resourceType": "Observation",
- "id": "a7aa9aec-9abb-4f1e-b0e6-d5c31afde5ac",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f814457e-2926-4342-a067-488ed4de6eb8",
- "resource": {
- "resourceType": "Observation",
- "id": "f814457e-2926-4342-a067-488ed4de6eb8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d8c1ed97-c982-45d1-8635-fbdbf623899f",
- "resource": {
- "resourceType": "Observation",
- "id": "d8c1ed97-c982-45d1-8635-fbdbf623899f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 84.34969196247285,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 123.275179688888,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f3bad883-d776-4ea9-9134-cebd0115cdbd",
- "resource": {
- "resourceType": "Observation",
- "id": "f3bad883-d776-4ea9-9134-cebd0115cdbd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 74.67047851101931,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b258b41a-7795-434f-ad03-aac1ed538fe8",
- "resource": {
- "resourceType": "Observation",
- "id": "b258b41a-7795-434f-ad03-aac1ed538fe8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 14.323738078976492,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cf948696-952e-4495-95af-aed90fafd3c0",
- "resource": {
- "resourceType": "Observation",
- "id": "cf948696-952e-4495-95af-aed90fafd3c0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.6649876705692856,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f11a55ef-4422-4998-9eb8-40c08b165662",
- "resource": {
- "resourceType": "Observation",
- "id": "f11a55ef-4422-4998-9eb8-40c08b165662",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 9.66512314804329,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6b1706af-0799-4bd4-b93e-4c03ca2c3e30",
- "resource": {
- "resourceType": "Observation",
- "id": "6b1706af-0799-4bd4-b93e-4c03ca2c3e30",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 138.3674759463867,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:51efcb47-6dd0-4b88-836e-9e402277cb4e",
- "resource": {
- "resourceType": "Observation",
- "id": "51efcb47-6dd0-4b88-836e-9e402277cb4e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.730089633044408,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7e67a112-241d-4411-80f6-cfade3ffa88e",
- "resource": {
- "resourceType": "Observation",
- "id": "7e67a112-241d-4411-80f6-cfade3ffa88e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 108.61509165313987,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:265b9dbe-1433-41d0-b59a-4d5f85f9a816",
- "resource": {
- "resourceType": "Observation",
- "id": "265b9dbe-1433-41d0-b59a-4d5f85f9a816",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 20.29342068772423,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:db35ea62-84d4-42f2-8122-8db6b7c0489a",
- "resource": {
- "resourceType": "Observation",
- "id": "db35ea62-84d4-42f2-8122-8db6b7c0489a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3f906f55-090a-4518-a51a-5f9ab6bd8ce9",
- "resource": {
- "resourceType": "Observation",
- "id": "3f906f55-090a-4518-a51a-5f9ab6bd8ce9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 6.398768600280697,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:76e06216-9b8b-422b-a2a7-073b9fe30c89",
- "resource": {
- "resourceType": "Procedure",
- "id": "76e06216-9b8b-422b-a2a7-073b9fe30c89",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "performedPeriod": {
- "start": "2012-06-03T03:16:14-04:00",
- "end": "2012-06-03T03:31:14-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:4dc0465b-2437-4fa8-aedf-c47d4505385c",
- "resource": {
- "resourceType": "Immunization",
- "id": "4dc0465b-2437-4fa8-aedf-c47d4505385c",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "occurrenceDateTime": "2012-06-03T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:f70cf21a-6225-4d07-b319-dd8af47fed80",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "f70cf21a-6225-4d07-b319-dd8af47fed80",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- },
- "effectiveDateTime": "2012-06-03T03:16:14-04:00",
- "issued": "2012-06-03T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:f3bad883-d776-4ea9-9134-cebd0115cdbd",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:b258b41a-7795-434f-ad03-aac1ed538fe8",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:cf948696-952e-4495-95af-aed90fafd3c0",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:f11a55ef-4422-4998-9eb8-40c08b165662",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:6b1706af-0799-4bd4-b93e-4c03ca2c3e30",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:51efcb47-6dd0-4b88-836e-9e402277cb4e",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:7e67a112-241d-4411-80f6-cfade3ffa88e",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:265b9dbe-1433-41d0-b59a-4d5f85f9a816",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:ca19f630-0ffa-40ca-a3b1-e24b5e6734d8",
- "resource": {
- "resourceType": "Claim",
- "id": "ca19f630-0ffa-40ca-a3b1-e24b5e6734d8",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2012-06-03T03:16:14-04:00",
- "end": "2012-06-03T03:46:14-04:00"
- },
- "created": "2012-06-03T03:46:14-04:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:4dc0465b-2437-4fa8-aedf-c47d4505385c"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:76e06216-9b8b-422b-a2a7-073b9fe30c89"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 818.27,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:92d98a0d-7308-47dd-8498-3529d4cedb2e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "92d98a0d-7308-47dd-8498-3529d4cedb2e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ca19f630-0ffa-40ca-a3b1-e24b5e6734d8"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2012-06-03T03:46:14-04:00",
- "end": "2013-06-03T03:46:14-04:00"
- },
- "created": "2012-06-03T03:46:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ca19f630-0ffa-40ca-a3b1-e24b5e6734d8"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-06-03T03:16:14-04:00",
- "end": "2012-06-03T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f5689f9b-4bb0-45b9-abe5-909356815f24"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2012-06-03T03:16:14-04:00",
- "end": "2012-06-03T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-06-03T03:16:14-04:00",
- "end": "2012-06-03T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 818.27,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 163.654,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 654.616,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 818.27,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 818.27,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 767.032,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c9a6b104-0e09-44a0-9fa7-fb514f3a4735",
- "resource": {
- "resourceType": "Encounter",
- "id": "c9a6b104-0e09-44a0-9fa7-fb514f3a4735",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2012-09-09T03:16:14-04:00",
- "end": "2016-10-23T03:16:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:273b8180-4a0f-46f6-9338-c86efbefc0b2",
- "resource": {
- "resourceType": "Immunization",
- "id": "273b8180-4a0f-46f6-9338-c86efbefc0b2",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c9a6b104-0e09-44a0-9fa7-fb514f3a4735"
- },
- "occurrenceDateTime": "2012-09-09T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:54b034bf-9c36-470d-8a26-d1fd38dc1d53",
- "resource": {
- "resourceType": "Claim",
- "id": "54b034bf-9c36-470d-8a26-d1fd38dc1d53",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2012-09-09T03:16:14-04:00",
- "end": "2016-10-23T03:16:14-04:00"
- },
- "created": "2016-10-23T03:16:14-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:273b8180-4a0f-46f6-9338-c86efbefc0b2"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c9a6b104-0e09-44a0-9fa7-fb514f3a4735"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:654e9793-5a1e-41a0-81a9-f1d7c23b0608",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "654e9793-5a1e-41a0-81a9-f1d7c23b0608",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "54b034bf-9c36-470d-8a26-d1fd38dc1d53"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-10-23T03:16:14-04:00",
- "end": "2017-10-23T03:16:14-04:00"
- },
- "created": "2016-10-23T03:16:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:54b034bf-9c36-470d-8a26-d1fd38dc1d53"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-09-09T03:16:14-04:00",
- "end": "2016-10-23T03:16:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c9a6b104-0e09-44a0-9fa7-fb514f3a4735"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2012-09-09T03:16:14-04:00",
- "end": "2016-10-23T03:16:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5",
- "resource": {
- "resourceType": "Encounter",
- "id": "c51f9308-04b1-426a-a515-d516d55a8cb5",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2012-09-07T03:16:14-04:00",
- "end": "2012-09-07T03:31:14-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:610c7b4e-1d02-4ec4-857b-771f15490528",
- "resource": {
- "resourceType": "Condition",
- "id": "610c7b4e-1d02-4ec4-857b-771f15490528",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "onsetDateTime": "2012-09-07T03:16:14-04:00",
- "abatementDateTime": "2012-09-28T03:16:14-04:00",
- "recordedDate": "2012-09-07T03:16:14-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:f272fecc-b7ae-482d-9e3b-be651e64bbb1",
- "resource": {
- "resourceType": "Observation",
- "id": "f272fecc-b7ae-482d-9e3b-be651e64bbb1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:adf850d0-534a-4f6c-958a-a48702eba61c",
- "resource": {
- "resourceType": "Observation",
- "id": "adf850d0-534a-4f6c-958a-a48702eba61c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 3.183258813769843,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b2a2766b-29d0-42bf-a96c-58b1a660e852",
- "resource": {
- "resourceType": "Observation",
- "id": "b2a2766b-29d0-42bf-a96c-58b1a660e852",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e375be09-702e-4de3-866c-a9b887066dcb",
- "resource": {
- "resourceType": "Observation",
- "id": "e375be09-702e-4de3-866c-a9b887066dcb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:69f2aaa5-fe08-48b8-9b55-561b00720339",
- "resource": {
- "resourceType": "Observation",
- "id": "69f2aaa5-fe08-48b8-9b55-561b00720339",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 74.01049929567196,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 119.8773140289053,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:48422c5a-7e39-49ab-a2be-279d5f7c48d3",
- "resource": {
- "resourceType": "Observation",
- "id": "48422c5a-7e39-49ab-a2be-279d5f7c48d3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 82.70683781213684,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ce704504-dd57-42ca-92c3-e83c9ac8a5ca",
- "resource": {
- "resourceType": "Observation",
- "id": "ce704504-dd57-42ca-92c3-e83c9ac8a5ca",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 14.893837465855928,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:60bc07e4-4ec1-4bf1-9457-df40d21e2d90",
- "resource": {
- "resourceType": "Observation",
- "id": "60bc07e4-4ec1-4bf1-9457-df40d21e2d90",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.6649876705692856,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fbf44fb6-72c2-477a-a3ca-90fbabb163f4",
- "resource": {
- "resourceType": "Observation",
- "id": "fbf44fb6-72c2-477a-a3ca-90fbabb163f4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 9.71408711077785,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7ab6d4a1-a7f8-4eaf-8ff9-a0ad9c8a0cb8",
- "resource": {
- "resourceType": "Observation",
- "id": "7ab6d4a1-a7f8-4eaf-8ff9-a0ad9c8a0cb8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 143.7206988239456,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:daf9b033-7c58-4c9c-8c2a-fa097171ebc8",
- "resource": {
- "resourceType": "Observation",
- "id": "daf9b033-7c58-4c9c-8c2a-fa097171ebc8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.645352520394527,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6e93bd13-5398-4d2d-a47a-aaec14934805",
- "resource": {
- "resourceType": "Observation",
- "id": "6e93bd13-5398-4d2d-a47a-aaec14934805",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 106.0255934814164,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:71bb70a0-4fe2-4151-b9d7-5f0d6d298d71",
- "resource": {
- "resourceType": "Observation",
- "id": "71bb70a0-4fe2-4151-b9d7-5f0d6d298d71",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 25.389640635953327,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4cdb2bf3-4379-453c-afdd-a0bbd73553f0",
- "resource": {
- "resourceType": "Observation",
- "id": "4cdb2bf3-4379-453c-afdd-a0bbd73553f0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:58f09997-6a78-47fa-9325-d6bbaece9eac",
- "resource": {
- "resourceType": "Observation",
- "id": "58f09997-6a78-47fa-9325-d6bbaece9eac",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 5.8077448051398015,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:152d2f71-d84b-48d2-beef-4826e91e73bb",
- "resource": {
- "resourceType": "Procedure",
- "id": "152d2f71-d84b-48d2-beef-4826e91e73bb",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "performedPeriod": {
- "start": "2012-09-09T03:16:14-04:00",
- "end": "2012-09-09T03:31:14-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:763a6e2c-f0a3-475b-9d66-4d4c46c1fff1",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "763a6e2c-f0a3-475b-9d66-4d4c46c1fff1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- },
- "effectiveDateTime": "2012-09-09T03:16:14-04:00",
- "issued": "2012-09-09T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:48422c5a-7e39-49ab-a2be-279d5f7c48d3",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:ce704504-dd57-42ca-92c3-e83c9ac8a5ca",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:60bc07e4-4ec1-4bf1-9457-df40d21e2d90",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:fbf44fb6-72c2-477a-a3ca-90fbabb163f4",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:7ab6d4a1-a7f8-4eaf-8ff9-a0ad9c8a0cb8",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:daf9b033-7c58-4c9c-8c2a-fa097171ebc8",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:6e93bd13-5398-4d2d-a47a-aaec14934805",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:71bb70a0-4fe2-4151-b9d7-5f0d6d298d71",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:4280215b-ae39-4390-be2e-d8023bb563b0",
- "resource": {
- "resourceType": "Claim",
- "id": "4280215b-ae39-4390-be2e-d8023bb563b0",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2012-09-07T03:16:14-04:00",
- "end": "2012-09-07T03:31:14-04:00"
- },
- "created": "2012-09-07T03:31:14-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:610c7b4e-1d02-4ec4-857b-771f15490528"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:152d2f71-d84b-48d2-beef-4826e91e73bb"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 445.63,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f9070fd9-6f80-41ee-b113-0727c5fcb163",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f9070fd9-6f80-41ee-b113-0727c5fcb163",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "4280215b-ae39-4390-be2e-d8023bb563b0"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2012-09-07T03:31:14-04:00",
- "end": "2013-09-07T03:31:14-04:00"
- },
- "created": "2012-09-07T03:31:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:4280215b-ae39-4390-be2e-d8023bb563b0"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:610c7b4e-1d02-4ec4-857b-771f15490528"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2012-09-07T03:16:14-04:00",
- "end": "2012-09-07T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c51f9308-04b1-426a-a515-d516d55a8cb5"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2012-09-07T03:16:14-04:00",
- "end": "2012-09-07T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-09-07T03:16:14-04:00",
- "end": "2012-09-07T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 445.63,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 89.126,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 356.504,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 445.63,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 445.63,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 356.504,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db",
- "resource": {
- "resourceType": "Encounter",
- "id": "f1ee87a6-60b0-4c26-93ef-441dbe15f7db",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2013-02-06T02:16:14-05:00",
- "end": "2013-02-06T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2c8b4139-36ea-4430-bdfc-e05198b02d3f",
- "resource": {
- "resourceType": "Observation",
- "id": "2c8b4139-36ea-4430-bdfc-e05198b02d3f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 88.95594584193861,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7ed24a1f-178e-4dd0-837c-9056a9330f23",
- "resource": {
- "resourceType": "Observation",
- "id": "7ed24a1f-178e-4dd0-837c-9056a9330f23",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 14.47337266430738,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d40efb9d-1706-4eb8-a483-2ea90dfa639d",
- "resource": {
- "resourceType": "Observation",
- "id": "d40efb9d-1706-4eb8-a483-2ea90dfa639d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.3085329247902338,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c9adce7c-a416-48c0-8c26-90bad2928231",
- "resource": {
- "resourceType": "Observation",
- "id": "c9adce7c-a416-48c0-8c26-90bad2928231",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 9.948438972320316,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a2124c35-7e4a-4174-b82e-b45a003aa149",
- "resource": {
- "resourceType": "Observation",
- "id": "a2124c35-7e4a-4174-b82e-b45a003aa149",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 143.99855800926716,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:121dbe05-0174-4792-94f7-99fc345bff14",
- "resource": {
- "resourceType": "Observation",
- "id": "121dbe05-0174-4792-94f7-99fc345bff14",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.135899285027555,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:248bf626-865b-453d-8daa-077b094eca2c",
- "resource": {
- "resourceType": "Observation",
- "id": "248bf626-865b-453d-8daa-077b094eca2c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 108.55630742549354,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:dcd3d35d-b21f-4223-aa51-66c41fd8ae83",
- "resource": {
- "resourceType": "Observation",
- "id": "dcd3d35d-b21f-4223-aa51-66c41fd8ae83",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 27.501083474011214,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:05c068eb-0fab-46b7-80d8-ba2e2ba67f15",
- "resource": {
- "resourceType": "Observation",
- "id": "05c068eb-0fab-46b7-80d8-ba2e2ba67f15",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33914-3",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- }
- ],
- "text": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 75.01712680491111,
- "unit": "mL/min",
- "system": "http://unitsofmeasure.org",
- "code": "mL/min"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ddd540c7-a4e9-4d75-90a3-2d58991902f4",
- "resource": {
- "resourceType": "Observation",
- "id": "ddd540c7-a4e9-4d75-90a3-2d58991902f4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2885-2",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Protein [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 77.26448359038568,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:46b35f9c-f8e4-4ad4-9b28-a327b0cf449c",
- "resource": {
- "resourceType": "Observation",
- "id": "46b35f9c-f8e4-4ad4-9b28-a327b0cf449c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1751-7",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Albumin [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.88002658192847,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:af0e4cb8-036a-462a-b981-740288d97cf9",
- "resource": {
- "resourceType": "Observation",
- "id": "af0e4cb8-036a-462a-b981-740288d97cf9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10834-0",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- }
- ],
- "text": "Globulin [Mass/volume] in Serum by calculation"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.3349848966633364,
- "unit": "g/L",
- "system": "http://unitsofmeasure.org",
- "code": "g/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bdb04915-bcf2-4370-8460-4578fd589c56",
- "resource": {
- "resourceType": "Observation",
- "id": "bdb04915-bcf2-4370-8460-4578fd589c56",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1975-2",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.35719114116574,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:316366e9-fc07-443f-b276-750c2e79abe8",
- "resource": {
- "resourceType": "Observation",
- "id": "316366e9-fc07-443f-b276-750c2e79abe8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6768-6",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 111.75063355196818,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:567f3a31-c4df-440c-88db-9d567d43117d",
- "resource": {
- "resourceType": "Observation",
- "id": "567f3a31-c4df-440c-88db-9d567d43117d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1742-6",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 20.227836140627964,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2f2bce1d-76ca-4d41-b52e-c79442d957f7",
- "resource": {
- "resourceType": "Observation",
- "id": "2f2bce1d-76ca-4d41-b52e-c79442d957f7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1920-8",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 20.145082341687694,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3f91f037-f0bd-473a-9c02-2f9fb1a100e8",
- "resource": {
- "resourceType": "Observation",
- "id": "3f91f037-f0bd-473a-9c02-2f9fb1a100e8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 158.34316038303118,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:43b0f2bd-293e-43ac-9743-61c2bfefce00",
- "resource": {
- "resourceType": "Observation",
- "id": "43b0f2bd-293e-43ac-9743-61c2bfefce00",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 177.10598541584704,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1b92924e-c249-46b7-a399-2d6e16ddec76",
- "resource": {
- "resourceType": "Observation",
- "id": "1b92924e-c249-46b7-a399-2d6e16ddec76",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 149.58385853949176,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a9774e55-46df-4474-940f-ad6ae5585cef",
- "resource": {
- "resourceType": "Observation",
- "id": "a9774e55-46df-4474-940f-ad6ae5585cef",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 74.72984266784268,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:aaa35e47-e19b-4dba-9829-19626537ff15",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "aaa35e47-e19b-4dba-9829-19626537ff15",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "authoredOn": "2013-02-06T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:a7d272ba-62bb-423f-b431-f89699f86c56",
- "resource": {
- "resourceType": "Claim",
- "id": "a7d272ba-62bb-423f-b431-f89699f86c56",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2013-02-06T02:16:14-05:00",
- "end": "2013-02-06T02:31:14-05:00"
- },
- "created": "2013-02-06T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:aaa35e47-e19b-4dba-9829-19626537ff15"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:04326dad-805b-4c95-8719-73a8a6479db9",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "04326dad-805b-4c95-8719-73a8a6479db9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "24323-8",
- "display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- }
- ],
- "text": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:2c8b4139-36ea-4430-bdfc-e05198b02d3f",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:7ed24a1f-178e-4dd0-837c-9056a9330f23",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:d40efb9d-1706-4eb8-a483-2ea90dfa639d",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:c9adce7c-a416-48c0-8c26-90bad2928231",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:a2124c35-7e4a-4174-b82e-b45a003aa149",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:121dbe05-0174-4792-94f7-99fc345bff14",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:248bf626-865b-453d-8daa-077b094eca2c",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:dcd3d35d-b21f-4223-aa51-66c41fd8ae83",
- "display": "Carbon Dioxide"
- },
- {
- "reference": "urn:uuid:05c068eb-0fab-46b7-80d8-ba2e2ba67f15",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- {
- "reference": "urn:uuid:ddd540c7-a4e9-4d75-90a3-2d58991902f4",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:46b35f9c-f8e4-4ad4-9b28-a327b0cf449c",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:af0e4cb8-036a-462a-b981-740288d97cf9",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- },
- {
- "reference": "urn:uuid:bdb04915-bcf2-4370-8460-4578fd589c56",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:316366e9-fc07-443f-b276-750c2e79abe8",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:567f3a31-c4df-440c-88db-9d567d43117d",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:2f2bce1d-76ca-4d41-b52e-c79442d957f7",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:5968cd14-73f5-4a33-a671-0ce7f419cfa6",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "5968cd14-73f5-4a33-a671-0ce7f419cfa6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- },
- "effectiveDateTime": "2013-02-06T02:16:14-05:00",
- "issued": "2013-02-06T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:3f91f037-f0bd-473a-9c02-2f9fb1a100e8",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:43b0f2bd-293e-43ac-9743-61c2bfefce00",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:1b92924e-c249-46b7-a399-2d6e16ddec76",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:a9774e55-46df-4474-940f-ad6ae5585cef",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:ad591d1b-337c-46cc-9ab9-41bbed2dd448",
- "resource": {
- "resourceType": "Claim",
- "id": "ad591d1b-337c-46cc-9ab9-41bbed2dd448",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2013-02-06T02:16:14-05:00",
- "end": "2013-02-06T02:31:14-05:00"
- },
- "created": "2013-02-06T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d6b30148-1ee4-4bad-ab3c-7033878afe34",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d6b30148-1ee4-4bad-ab3c-7033878afe34",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ad591d1b-337c-46cc-9ab9-41bbed2dd448"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2013-02-06T02:31:14-05:00",
- "end": "2014-02-06T02:31:14-05:00"
- },
- "created": "2013-02-06T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ad591d1b-337c-46cc-9ab9-41bbed2dd448"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2013-02-06T02:16:14-05:00",
- "end": "2013-02-06T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f1ee87a6-60b0-4c26-93ef-441dbe15f7db"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506",
- "resource": {
- "resourceType": "Encounter",
- "id": "621aff9e-3695-4904-97b8-409e2bef9506",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "2013-06-09T03:16:14-04:00",
- "end": "2013-06-09T03:46:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:5d36379e-29b1-4ae0-9b84-76445786e4fb",
- "resource": {
- "resourceType": "Observation",
- "id": "5d36379e-29b1-4ae0-9b84-76445786e4fb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5acc074c-6f4b-4132-9e3f-4fd5bde91385",
- "resource": {
- "resourceType": "Observation",
- "id": "5acc074c-6f4b-4132-9e3f-4fd5bde91385",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.27574738933213094,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:38d24aa0-bf75-4ba3-ad49-fa22cc8882c9",
- "resource": {
- "resourceType": "Observation",
- "id": "38d24aa0-bf75-4ba3-ad49-fa22cc8882c9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b1fcaf28-8f15-46c7-ade2-218aac9dd392",
- "resource": {
- "resourceType": "Observation",
- "id": "b1fcaf28-8f15-46c7-ade2-218aac9dd392",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d0b00d75-8cc7-4da9-ada9-96683057f556",
- "resource": {
- "resourceType": "Observation",
- "id": "d0b00d75-8cc7-4da9-ada9-96683057f556",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 88.95999329317885,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 127.43002118911178,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4e1e994f-5ff6-4e04-a769-9d3c2ced1f70",
- "resource": {
- "resourceType": "Observation",
- "id": "4e1e994f-5ff6-4e04-a769-9d3c2ced1f70",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 79.88016667742016,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:df1ebbec-e085-435a-b009-0696ef150cf5",
- "resource": {
- "resourceType": "Observation",
- "id": "df1ebbec-e085-435a-b009-0696ef150cf5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 19.716394468974116,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:97303bf7-af70-4614-9173-c6e16eda3f8f",
- "resource": {
- "resourceType": "Observation",
- "id": "97303bf7-af70-4614-9173-c6e16eda3f8f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.6540862333468384,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7350e11a-73bb-4f22-8367-3b25505b0fd2",
- "resource": {
- "resourceType": "Observation",
- "id": "7350e11a-73bb-4f22-8367-3b25505b0fd2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 9.437733011508607,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8d1bfb9c-afd0-4efc-90b9-5de2855864b7",
- "resource": {
- "resourceType": "Observation",
- "id": "8d1bfb9c-afd0-4efc-90b9-5de2855864b7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 138.70692214269891,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:35854f75-5fe8-46b3-9ca2-dcf8ee05f46c",
- "resource": {
- "resourceType": "Observation",
- "id": "35854f75-5fe8-46b3-9ca2-dcf8ee05f46c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.264886788535574,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0ff5fb0b-793a-467b-a38b-18d7f6927d05",
- "resource": {
- "resourceType": "Observation",
- "id": "0ff5fb0b-793a-467b-a38b-18d7f6927d05",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 102.1866469631738,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2cce34ab-6bd0-4ca6-8d64-5aa0fc618d36",
- "resource": {
- "resourceType": "Observation",
- "id": "2cce34ab-6bd0-4ca6-8d64-5aa0fc618d36",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 26.178526121793546,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d477e2ba-2dd9-44b3-a89a-f267eac1ed7c",
- "resource": {
- "resourceType": "Observation",
- "id": "d477e2ba-2dd9-44b3-a89a-f267eac1ed7c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 182.93011777569996,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b4d4769f-7878-4421-a6dd-18a5af08f30b",
- "resource": {
- "resourceType": "Observation",
- "id": "b4d4769f-7878-4421-a6dd-18a5af08f30b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 103.26896765796712,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a92617d3-761f-4e37-bc63-7de2507f89dc",
- "resource": {
- "resourceType": "Observation",
- "id": "a92617d3-761f-4e37-bc63-7de2507f89dc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 101.94820730008934,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:45e8dc7f-6036-457c-bb2a-cb7c2ea0a70b",
- "resource": {
- "resourceType": "Observation",
- "id": "45e8dc7f-6036-457c-bb2a-cb7c2ea0a70b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 60.3281169440172,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:50cbdd4f-453e-4f4c-9693-c9febc5d0de1",
- "resource": {
- "resourceType": "Observation",
- "id": "50cbdd4f-453e-4f4c-9693-c9febc5d0de1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8b6d6448-e773-487d-b870-031b973e76b8",
- "resource": {
- "resourceType": "Observation",
- "id": "8b6d6448-e773-487d-b870-031b973e76b8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 6.134492560192307,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2ac7dcf2-f164-4bee-8972-ced79bf49fe6",
- "resource": {
- "resourceType": "Procedure",
- "id": "2ac7dcf2-f164-4bee-8972-ced79bf49fe6",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "performedPeriod": {
- "start": "2013-06-09T03:16:14-04:00",
- "end": "2013-06-09T03:31:14-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:76ccbbd6-d919-4669-8fbd-19341b9d85e3",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "76ccbbd6-d919-4669-8fbd-19341b9d85e3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:4e1e994f-5ff6-4e04-a769-9d3c2ced1f70",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:df1ebbec-e085-435a-b009-0696ef150cf5",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:97303bf7-af70-4614-9173-c6e16eda3f8f",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:7350e11a-73bb-4f22-8367-3b25505b0fd2",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:8d1bfb9c-afd0-4efc-90b9-5de2855864b7",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:35854f75-5fe8-46b3-9ca2-dcf8ee05f46c",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:0ff5fb0b-793a-467b-a38b-18d7f6927d05",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:2cce34ab-6bd0-4ca6-8d64-5aa0fc618d36",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:6cf60feb-21a8-4e56-9efc-f58808f2e76f",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "6cf60feb-21a8-4e56-9efc-f58808f2e76f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- },
- "effectiveDateTime": "2013-06-09T03:16:14-04:00",
- "issued": "2013-06-09T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:d477e2ba-2dd9-44b3-a89a-f267eac1ed7c",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:b4d4769f-7878-4421-a6dd-18a5af08f30b",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:a92617d3-761f-4e37-bc63-7de2507f89dc",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:45e8dc7f-6036-457c-bb2a-cb7c2ea0a70b",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:08c58c08-615a-4682-aa76-3aae4030bd81",
- "resource": {
- "resourceType": "Claim",
- "id": "08c58c08-615a-4682-aa76-3aae4030bd81",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2013-06-09T03:16:14-04:00",
- "end": "2013-06-09T03:46:14-04:00"
- },
- "created": "2013-06-09T03:46:14-04:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:2ac7dcf2-f164-4bee-8972-ced79bf49fe6"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 571.43,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0a6ab95d-cda0-4d8e-8e6e-497a76b40b3d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0a6ab95d-cda0-4d8e-8e6e-497a76b40b3d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "08c58c08-615a-4682-aa76-3aae4030bd81"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2013-06-09T03:46:14-04:00",
- "end": "2014-06-09T03:46:14-04:00"
- },
- "created": "2013-06-09T03:46:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:08c58c08-615a-4682-aa76-3aae4030bd81"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2013-06-09T03:16:14-04:00",
- "end": "2013-06-09T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:621aff9e-3695-4904-97b8-409e2bef9506"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2013-06-09T03:16:14-04:00",
- "end": "2013-06-09T03:46:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 571.43,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 114.286,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 457.144,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 571.43,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 571.43,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 457.144,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f",
- "resource": {
- "resourceType": "Encounter",
- "id": "d28b87a7-51e4-4b8e-aa6e-6559f6ca771f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2014-02-06T02:16:14-05:00",
- "end": "2014-02-06T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d1808554-b55e-4dcc-bc8f-84fca28efab6",
- "resource": {
- "resourceType": "Observation",
- "id": "d1808554-b55e-4dcc-bc8f-84fca28efab6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 78.79214015159536,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ff8fb814-83b1-4e2c-8ed9-3388d6d00c68",
- "resource": {
- "resourceType": "Observation",
- "id": "ff8fb814-83b1-4e2c-8ed9-3388d6d00c68",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 14.719435084874988,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:16aa648f-fa5e-41e5-8d34-6b52f60ad75e",
- "resource": {
- "resourceType": "Observation",
- "id": "16aa648f-fa5e-41e5-8d34-6b52f60ad75e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.371354931582361,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ce101dfb-c737-4889-a76e-f587f5a78ab9",
- "resource": {
- "resourceType": "Observation",
- "id": "ce101dfb-c737-4889-a76e-f587f5a78ab9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 9.418939777979302,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8c96f75d-446f-4727-ae9b-e34ed5665f87",
- "resource": {
- "resourceType": "Observation",
- "id": "8c96f75d-446f-4727-ae9b-e34ed5665f87",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 138.23012874589782,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3b8e598e-da95-4603-8cac-bbf0d1eb0fd3",
- "resource": {
- "resourceType": "Observation",
- "id": "3b8e598e-da95-4603-8cac-bbf0d1eb0fd3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.7530121551022133,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:58911547-12e6-401c-8813-ea667e89c84b",
- "resource": {
- "resourceType": "Observation",
- "id": "58911547-12e6-401c-8813-ea667e89c84b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 104.45653415896692,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:efc8d4ff-014a-49c4-be7a-339efac77548",
- "resource": {
- "resourceType": "Observation",
- "id": "efc8d4ff-014a-49c4-be7a-339efac77548",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 25.13215969655686,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6430308b-96a4-483a-9d68-88120d6f8f58",
- "resource": {
- "resourceType": "Observation",
- "id": "6430308b-96a4-483a-9d68-88120d6f8f58",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33914-3",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- }
- ],
- "text": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 85.12283174926188,
- "unit": "mL/min",
- "system": "http://unitsofmeasure.org",
- "code": "mL/min"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:92c40af7-23da-4b93-8e49-ec64f5760b9e",
- "resource": {
- "resourceType": "Observation",
- "id": "92c40af7-23da-4b93-8e49-ec64f5760b9e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2885-2",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Protein [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 73.10314672822582,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c34ce4b7-6886-43fb-8334-134f62f89319",
- "resource": {
- "resourceType": "Observation",
- "id": "c34ce4b7-6886-43fb-8334-134f62f89319",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1751-7",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Albumin [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.6992057791668085,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6b46133a-dd28-4ee7-bd7e-6511af7e2902",
- "resource": {
- "resourceType": "Observation",
- "id": "6b46133a-dd28-4ee7-bd7e-6511af7e2902",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10834-0",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- }
- ],
- "text": "Globulin [Mass/volume] in Serum by calculation"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.9556173340965923,
- "unit": "g/L",
- "system": "http://unitsofmeasure.org",
- "code": "g/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:12e4875b-d21b-4638-8198-220db0c12d81",
- "resource": {
- "resourceType": "Observation",
- "id": "12e4875b-d21b-4638-8198-220db0c12d81",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1975-2",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.6900455396060493,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:78bfb760-581a-4f7d-9481-87cb84bdc920",
- "resource": {
- "resourceType": "Observation",
- "id": "78bfb760-581a-4f7d-9481-87cb84bdc920",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6768-6",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 28.280621031025998,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1898f80a-c968-43f0-8dbc-97b2f47fee20",
- "resource": {
- "resourceType": "Observation",
- "id": "1898f80a-c968-43f0-8dbc-97b2f47fee20",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1742-6",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 35.48129702116023,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:72f3a430-b749-470f-83ba-d4aa963985d1",
- "resource": {
- "resourceType": "Observation",
- "id": "72f3a430-b749-470f-83ba-d4aa963985d1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1920-8",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 32.68347508576728,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5504541f-6908-4657-ba24-dc7dd46dd4d6",
- "resource": {
- "resourceType": "Observation",
- "id": "5504541f-6908-4657-ba24-dc7dd46dd4d6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 168.9026334541865,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4c7b3abd-be3b-405c-b78a-63f66b332163",
- "resource": {
- "resourceType": "Observation",
- "id": "4c7b3abd-be3b-405c-b78a-63f66b332163",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 102.67685374517654,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bc6f2ced-7a5a-4d5a-9aee-ce0b6d7bf86f",
- "resource": {
- "resourceType": "Observation",
- "id": "bc6f2ced-7a5a-4d5a-9aee-ce0b6d7bf86f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 124.54737790250655,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:891d83e4-c460-4373-8ce9-73345562fc84",
- "resource": {
- "resourceType": "Observation",
- "id": "891d83e4-c460-4373-8ce9-73345562fc84",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 57.541531620776176,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0ba71fca-40db-418e-9114-f6ff4e33388f",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "0ba71fca-40db-418e-9114-f6ff4e33388f",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "authoredOn": "2014-02-06T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:d30aa562-4e23-4554-8ac2-cb6d50fd5c85",
- "resource": {
- "resourceType": "Claim",
- "id": "d30aa562-4e23-4554-8ac2-cb6d50fd5c85",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2014-02-06T02:16:14-05:00",
- "end": "2014-02-06T02:31:14-05:00"
- },
- "created": "2014-02-06T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:0ba71fca-40db-418e-9114-f6ff4e33388f"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:8616cbc7-6cba-45c3-bd16-bd52bbcc8286",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "8616cbc7-6cba-45c3-bd16-bd52bbcc8286",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "24323-8",
- "display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- }
- ],
- "text": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:d1808554-b55e-4dcc-bc8f-84fca28efab6",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:ff8fb814-83b1-4e2c-8ed9-3388d6d00c68",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:16aa648f-fa5e-41e5-8d34-6b52f60ad75e",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:ce101dfb-c737-4889-a76e-f587f5a78ab9",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:8c96f75d-446f-4727-ae9b-e34ed5665f87",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:3b8e598e-da95-4603-8cac-bbf0d1eb0fd3",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:58911547-12e6-401c-8813-ea667e89c84b",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:efc8d4ff-014a-49c4-be7a-339efac77548",
- "display": "Carbon Dioxide"
- },
- {
- "reference": "urn:uuid:6430308b-96a4-483a-9d68-88120d6f8f58",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- {
- "reference": "urn:uuid:92c40af7-23da-4b93-8e49-ec64f5760b9e",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:c34ce4b7-6886-43fb-8334-134f62f89319",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:6b46133a-dd28-4ee7-bd7e-6511af7e2902",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- },
- {
- "reference": "urn:uuid:12e4875b-d21b-4638-8198-220db0c12d81",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:78bfb760-581a-4f7d-9481-87cb84bdc920",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:1898f80a-c968-43f0-8dbc-97b2f47fee20",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:72f3a430-b749-470f-83ba-d4aa963985d1",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:5caf301c-43bd-4c72-b7be-0759e8fd25a6",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "5caf301c-43bd-4c72-b7be-0759e8fd25a6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- },
- "effectiveDateTime": "2014-02-06T02:16:14-05:00",
- "issued": "2014-02-06T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:5504541f-6908-4657-ba24-dc7dd46dd4d6",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:4c7b3abd-be3b-405c-b78a-63f66b332163",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:bc6f2ced-7a5a-4d5a-9aee-ce0b6d7bf86f",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:891d83e4-c460-4373-8ce9-73345562fc84",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:500733ba-6890-4d61-98ce-226fff72e231",
- "resource": {
- "resourceType": "Claim",
- "id": "500733ba-6890-4d61-98ce-226fff72e231",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2014-02-06T02:16:14-05:00",
- "end": "2014-02-06T02:31:14-05:00"
- },
- "created": "2014-02-06T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:73057b6b-e524-4e33-833c-21c6ff80e3a3",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "73057b6b-e524-4e33-833c-21c6ff80e3a3",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "500733ba-6890-4d61-98ce-226fff72e231"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2014-02-06T02:31:14-05:00",
- "end": "2015-02-06T02:31:14-05:00"
- },
- "created": "2014-02-06T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:500733ba-6890-4d61-98ce-226fff72e231"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2014-02-06T02:16:14-05:00",
- "end": "2014-02-06T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:d28b87a7-51e4-4b8e-aa6e-6559f6ca771f"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9",
- "resource": {
- "resourceType": "Encounter",
- "id": "bcd5da86-0c9c-430e-a40b-bde3398112e9",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "2014-06-15T03:16:14-04:00",
- "end": "2014-06-15T03:31:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:0798debf-b7bc-476b-91b8-ef135eb709c9",
- "resource": {
- "resourceType": "Observation",
- "id": "0798debf-b7bc-476b-91b8-ef135eb709c9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:74b5e115-489c-4df1-a678-43670e1a96c4",
- "resource": {
- "resourceType": "Observation",
- "id": "74b5e115-489c-4df1-a678-43670e1a96c4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 2.30327150990838,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:398b0061-1a87-4638-bb48-7ad6e4f55b5f",
- "resource": {
- "resourceType": "Observation",
- "id": "398b0061-1a87-4638-bb48-7ad6e4f55b5f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:dbb7bf23-7032-4ca7-91f2-2b74d4e7ff80",
- "resource": {
- "resourceType": "Observation",
- "id": "dbb7bf23-7032-4ca7-91f2-2b74d4e7ff80",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a841c0e1-baba-46b6-a9cf-80f6f6075e5f",
- "resource": {
- "resourceType": "Observation",
- "id": "a841c0e1-baba-46b6-a9cf-80f6f6075e5f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 84.32692239403926,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 127.09720640754213,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cbbde3c1-4189-4283-ba97-7514b871673e",
- "resource": {
- "resourceType": "Observation",
- "id": "cbbde3c1-4189-4283-ba97-7514b871673e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 92.36589170910979,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fad34eb6-4748-474d-bf91-8ad8a40348a4",
- "resource": {
- "resourceType": "Observation",
- "id": "fad34eb6-4748-474d-bf91-8ad8a40348a4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 12.794934048318645,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ac275268-993f-46d8-9e98-a594497d6de9",
- "resource": {
- "resourceType": "Observation",
- "id": "ac275268-993f-46d8-9e98-a594497d6de9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.7113412437739883,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c87df78a-3caf-42dd-8a4d-d0d9ee9d4a5d",
- "resource": {
- "resourceType": "Observation",
- "id": "c87df78a-3caf-42dd-8a4d-d0d9ee9d4a5d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 9.490708497706995,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c7802045-d655-40ed-ab5f-9523c1521940",
- "resource": {
- "resourceType": "Observation",
- "id": "c7802045-d655-40ed-ab5f-9523c1521940",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 139.23613634531608,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:09b59336-275f-4513-9b6d-841cbb9dfa6d",
- "resource": {
- "resourceType": "Observation",
- "id": "09b59336-275f-4513-9b6d-841cbb9dfa6d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 3.8106356283848615,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ec3758f2-198b-4461-98eb-1f72e60d6edd",
- "resource": {
- "resourceType": "Observation",
- "id": "ec3758f2-198b-4461-98eb-1f72e60d6edd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 106.2295504344881,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0f29a9ac-6461-4e4b-87d4-626072eb9894",
- "resource": {
- "resourceType": "Observation",
- "id": "0f29a9ac-6461-4e4b-87d4-626072eb9894",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 26.733593556656473,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:86689563-af8b-4e5e-8ebc-5585bc5ef3b2",
- "resource": {
- "resourceType": "Observation",
- "id": "86689563-af8b-4e5e-8ebc-5585bc5ef3b2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5d50239c-5e53-4672-b162-2494c0689a96",
- "resource": {
- "resourceType": "Observation",
- "id": "5d50239c-5e53-4672-b162-2494c0689a96",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 6.132379570310095,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:62d21ee5-8eb2-415f-b2f6-859f36a66dcf",
- "resource": {
- "resourceType": "Immunization",
- "id": "62d21ee5-8eb2-415f-b2f6-859f36a66dcf",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "occurrenceDateTime": "2014-06-15T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:bbc3139b-9a2a-4a32-85ea-3088f5b5d36e",
- "resource": {
- "resourceType": "Immunization",
- "id": "bbc3139b-9a2a-4a32-85ea-3088f5b5d36e",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "occurrenceDateTime": "2014-06-15T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:a2a02227-d226-4ffc-8dc2-5c53eaf437b4",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "a2a02227-d226-4ffc-8dc2-5c53eaf437b4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- },
- "effectiveDateTime": "2014-06-15T03:16:14-04:00",
- "issued": "2014-06-15T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:cbbde3c1-4189-4283-ba97-7514b871673e",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:fad34eb6-4748-474d-bf91-8ad8a40348a4",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:ac275268-993f-46d8-9e98-a594497d6de9",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:c87df78a-3caf-42dd-8a4d-d0d9ee9d4a5d",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:c7802045-d655-40ed-ab5f-9523c1521940",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:09b59336-275f-4513-9b6d-841cbb9dfa6d",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:ec3758f2-198b-4461-98eb-1f72e60d6edd",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:0f29a9ac-6461-4e4b-87d4-626072eb9894",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:99e71b42-69d0-49b6-a180-c43130410fbb",
- "resource": {
- "resourceType": "Claim",
- "id": "99e71b42-69d0-49b6-a180-c43130410fbb",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2014-06-15T03:16:14-04:00",
- "end": "2014-06-15T03:31:14-04:00"
- },
- "created": "2014-06-15T03:31:14-04:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:62d21ee5-8eb2-415f-b2f6-859f36a66dcf"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:bbc3139b-9a2a-4a32-85ea-3088f5b5d36e"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:40cc1448-7429-4738-9029-d120b9708273",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "40cc1448-7429-4738-9029-d120b9708273",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "99e71b42-69d0-49b6-a180-c43130410fbb"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2014-06-15T03:31:14-04:00",
- "end": "2015-06-15T03:31:14-04:00"
- },
- "created": "2014-06-15T03:31:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:99e71b42-69d0-49b6-a180-c43130410fbb"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2014-06-15T03:16:14-04:00",
- "end": "2014-06-15T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:bcd5da86-0c9c-430e-a40b-bde3398112e9"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2014-06-15T03:16:14-04:00",
- "end": "2014-06-15T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "servicedPeriod": {
- "start": "2014-06-15T03:16:14-04:00",
- "end": "2014-06-15T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 224.83200000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e",
- "resource": {
- "resourceType": "Encounter",
- "id": "dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2015-02-06T02:16:14-05:00",
- "end": "2015-02-06T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:826f88f9-a418-4d77-9fd0-a0bd702d2cab",
- "resource": {
- "resourceType": "Observation",
- "id": "826f88f9-a418-4d77-9fd0-a0bd702d2cab",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 72.68706076703948,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7e8a1881-7288-4fbb-8675-866a41f9f957",
- "resource": {
- "resourceType": "Observation",
- "id": "7e8a1881-7288-4fbb-8675-866a41f9f957",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 17.866236920584555,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0e229139-46f4-4993-8936-76d640549b63",
- "resource": {
- "resourceType": "Observation",
- "id": "0e229139-46f4-4993-8936-76d640549b63",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.339695158784604,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7bbd66e6-b12d-475c-bd5b-956e69dd3b6b",
- "resource": {
- "resourceType": "Observation",
- "id": "7bbd66e6-b12d-475c-bd5b-956e69dd3b6b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 9.613981540782586,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:eea636a4-cb27-416a-a5f9-3f2faee3a3a6",
- "resource": {
- "resourceType": "Observation",
- "id": "eea636a4-cb27-416a-a5f9-3f2faee3a3a6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 139.34547330379087,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:babfb536-e640-4d91-8c50-7666dc5a5e40",
- "resource": {
- "resourceType": "Observation",
- "id": "babfb536-e640-4d91-8c50-7666dc5a5e40",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.5409909028736335,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:baba7d03-39b5-47d1-9699-f7bcc52b33f4",
- "resource": {
- "resourceType": "Observation",
- "id": "baba7d03-39b5-47d1-9699-f7bcc52b33f4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 107.13815777634528,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f335cc34-0515-48d5-9e5c-b4bcb8211b1e",
- "resource": {
- "resourceType": "Observation",
- "id": "f335cc34-0515-48d5-9e5c-b4bcb8211b1e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 25.15038174373654,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bf00e29b-84d4-4720-ae50-9a97a50bd9da",
- "resource": {
- "resourceType": "Observation",
- "id": "bf00e29b-84d4-4720-ae50-9a97a50bd9da",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33914-3",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- }
- ],
- "text": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 66.67953216711145,
- "unit": "mL/min",
- "system": "http://unitsofmeasure.org",
- "code": "mL/min"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b1ac0a71-1358-403a-965e-15c3e4c9cd72",
- "resource": {
- "resourceType": "Observation",
- "id": "b1ac0a71-1358-403a-965e-15c3e4c9cd72",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2885-2",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Protein [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 76.39824232832837,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:917f8222-a037-4ce9-8854-e95853fb77d4",
- "resource": {
- "resourceType": "Observation",
- "id": "917f8222-a037-4ce9-8854-e95853fb77d4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1751-7",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Albumin [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.921076460340606,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:97d64c14-c412-494e-bb24-5b272416e632",
- "resource": {
- "resourceType": "Observation",
- "id": "97d64c14-c412-494e-bb24-5b272416e632",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10834-0",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- }
- ],
- "text": "Globulin [Mass/volume] in Serum by calculation"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.9686414920659256,
- "unit": "g/L",
- "system": "http://unitsofmeasure.org",
- "code": "g/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:edb229b7-4879-4176-bd51-c62af72551bf",
- "resource": {
- "resourceType": "Observation",
- "id": "edb229b7-4879-4176-bd51-c62af72551bf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1975-2",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.2832200614608172,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0901c0e0-9439-4180-9924-e68eaae472cd",
- "resource": {
- "resourceType": "Observation",
- "id": "0901c0e0-9439-4180-9924-e68eaae472cd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6768-6",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 115.42712380735784,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:00b2236a-7147-4ca1-989d-3c5ffc1e8ece",
- "resource": {
- "resourceType": "Observation",
- "id": "00b2236a-7147-4ca1-989d-3c5ffc1e8ece",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1742-6",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 56.2417017790678,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:673ea85a-2b48-4331-b24e-a3101e50611c",
- "resource": {
- "resourceType": "Observation",
- "id": "673ea85a-2b48-4331-b24e-a3101e50611c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1920-8",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 37.60747720573207,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c52086c1-f9b4-4005-ba9e-e7894abf1523",
- "resource": {
- "resourceType": "Observation",
- "id": "c52086c1-f9b4-4005-ba9e-e7894abf1523",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 197.74474860719312,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f0962916-3447-4eab-a742-05bfc27d7c30",
- "resource": {
- "resourceType": "Observation",
- "id": "f0962916-3447-4eab-a742-05bfc27d7c30",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 185.38033870988426,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2592771c-cfee-4280-b895-6f40c17f2156",
- "resource": {
- "resourceType": "Observation",
- "id": "2592771c-cfee-4280-b895-6f40c17f2156",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 100.4427350569552,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c18b09c7-9f4d-4285-8044-b04a17580d0f",
- "resource": {
- "resourceType": "Observation",
- "id": "c18b09c7-9f4d-4285-8044-b04a17580d0f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 71.57788210125511,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:730c2a25-f876-4ac4-9b76-cc59a5af0a17",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "730c2a25-f876-4ac4-9b76-cc59a5af0a17",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "authoredOn": "2015-02-06T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:37eb3c1b-f741-4250-a11d-52bbed5c57c9",
- "resource": {
- "resourceType": "Claim",
- "id": "37eb3c1b-f741-4250-a11d-52bbed5c57c9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2015-02-06T02:16:14-05:00",
- "end": "2015-02-06T02:31:14-05:00"
- },
- "created": "2015-02-06T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:730c2a25-f876-4ac4-9b76-cc59a5af0a17"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:7c10fcd5-13e3-4ed2-a07c-22bf3023c640",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "7c10fcd5-13e3-4ed2-a07c-22bf3023c640",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "24323-8",
- "display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- }
- ],
- "text": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:826f88f9-a418-4d77-9fd0-a0bd702d2cab",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:7e8a1881-7288-4fbb-8675-866a41f9f957",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:0e229139-46f4-4993-8936-76d640549b63",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:7bbd66e6-b12d-475c-bd5b-956e69dd3b6b",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:eea636a4-cb27-416a-a5f9-3f2faee3a3a6",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:babfb536-e640-4d91-8c50-7666dc5a5e40",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:baba7d03-39b5-47d1-9699-f7bcc52b33f4",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:f335cc34-0515-48d5-9e5c-b4bcb8211b1e",
- "display": "Carbon Dioxide"
- },
- {
- "reference": "urn:uuid:bf00e29b-84d4-4720-ae50-9a97a50bd9da",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- {
- "reference": "urn:uuid:b1ac0a71-1358-403a-965e-15c3e4c9cd72",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:917f8222-a037-4ce9-8854-e95853fb77d4",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:97d64c14-c412-494e-bb24-5b272416e632",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- },
- {
- "reference": "urn:uuid:edb229b7-4879-4176-bd51-c62af72551bf",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:0901c0e0-9439-4180-9924-e68eaae472cd",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:00b2236a-7147-4ca1-989d-3c5ffc1e8ece",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:673ea85a-2b48-4331-b24e-a3101e50611c",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:c2d9c1ab-fa14-4d61-a955-4bb368c9f884",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "c2d9c1ab-fa14-4d61-a955-4bb368c9f884",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- },
- "effectiveDateTime": "2015-02-06T02:16:14-05:00",
- "issued": "2015-02-06T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:c52086c1-f9b4-4005-ba9e-e7894abf1523",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:f0962916-3447-4eab-a742-05bfc27d7c30",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:2592771c-cfee-4280-b895-6f40c17f2156",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:c18b09c7-9f4d-4285-8044-b04a17580d0f",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:44b11d5b-8029-488d-91ad-f92a20767838",
- "resource": {
- "resourceType": "Claim",
- "id": "44b11d5b-8029-488d-91ad-f92a20767838",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2015-02-06T02:16:14-05:00",
- "end": "2015-02-06T02:31:14-05:00"
- },
- "created": "2015-02-06T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:7466b052-ce3b-4f9d-85fe-082d9ec5b72f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "7466b052-ce3b-4f9d-85fe-082d9ec5b72f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "44b11d5b-8029-488d-91ad-f92a20767838"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2015-02-06T02:31:14-05:00",
- "end": "2016-02-06T02:31:14-05:00"
- },
- "created": "2015-02-06T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:44b11d5b-8029-488d-91ad-f92a20767838"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2015-02-06T02:16:14-05:00",
- "end": "2015-02-06T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:dbd15fba-4c9b-4b0a-8f0b-bb934f95b05e"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3",
- "resource": {
- "resourceType": "Encounter",
- "id": "c25a5bca-db00-438a-928e-3e47c12c7bd3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "2015-06-21T03:16:14-04:00",
- "end": "2015-06-21T03:31:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:cc397bfb-7e40-4581-b6e2-1334716adfa6",
- "resource": {
- "resourceType": "Observation",
- "id": "cc397bfb-7e40-4581-b6e2-1334716adfa6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:94df241d-d3f5-44b1-820d-c0c1c1f6b28b",
- "resource": {
- "resourceType": "Observation",
- "id": "94df241d-d3f5-44b1-820d-c0c1c1f6b28b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 3.3588517943587792,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7676b951-df4a-46f4-a9a6-999cb330b0fd",
- "resource": {
- "resourceType": "Observation",
- "id": "7676b951-df4a-46f4-a9a6-999cb330b0fd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7ec73779-e1d0-44a2-8eb4-ad5ed0ee2248",
- "resource": {
- "resourceType": "Observation",
- "id": "7ec73779-e1d0-44a2-8eb4-ad5ed0ee2248",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f4392ba9-89a7-4fe5-9a14-fb0310a2e0cf",
- "resource": {
- "resourceType": "Observation",
- "id": "f4392ba9-89a7-4fe5-9a14-fb0310a2e0cf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 70.10883493183526,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 113.35272356162787,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8d2426d1-80c8-46e9-8669-50e38ff2b409",
- "resource": {
- "resourceType": "Observation",
- "id": "8d2426d1-80c8-46e9-8669-50e38ff2b409",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 97.0471962708126,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3f0901b0-5c92-41ca-a25e-7004fb0f79f2",
- "resource": {
- "resourceType": "Observation",
- "id": "3f0901b0-5c92-41ca-a25e-7004fb0f79f2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 14.181702995708097,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:693a1106-d787-420c-bff9-3ff695f0a0b3",
- "resource": {
- "resourceType": "Observation",
- "id": "693a1106-d787-420c-bff9-3ff695f0a0b3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.6322833589019438,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5e72adfa-9471-4026-aff9-68349af6dac9",
- "resource": {
- "resourceType": "Observation",
- "id": "5e72adfa-9471-4026-aff9-68349af6dac9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 9.1985271252448,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b956510d-6da8-45fa-9356-2f9ccc653a1e",
- "resource": {
- "resourceType": "Observation",
- "id": "b956510d-6da8-45fa-9356-2f9ccc653a1e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 139.71251137889257,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:44cf8a25-a462-4a8d-8891-e4a2a8aca285",
- "resource": {
- "resourceType": "Observation",
- "id": "44cf8a25-a462-4a8d-8891-e4a2a8aca285",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.956830338432255,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0dbd118e-f1d7-4f89-b8e1-1c8da9d46bef",
- "resource": {
- "resourceType": "Observation",
- "id": "0dbd118e-f1d7-4f89-b8e1-1c8da9d46bef",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 104.91883980250019,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:75334cf2-3343-46ce-b3c2-001a9160bd11",
- "resource": {
- "resourceType": "Observation",
- "id": "75334cf2-3343-46ce-b3c2-001a9160bd11",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 22.98938523223027,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:164b1775-8fb7-4e99-a282-3e49e5ae871c",
- "resource": {
- "resourceType": "Observation",
- "id": "164b1775-8fb7-4e99-a282-3e49e5ae871c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.582814115476399,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f985ad50-3b81-48d5-bd3d-515093caec34",
- "resource": {
- "resourceType": "Observation",
- "id": "f985ad50-3b81-48d5-bd3d-515093caec34",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.49490432117762,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3626f0bd-f61a-4f6a-b7f4-ef2bbf6b1b8e",
- "resource": {
- "resourceType": "Observation",
- "id": "3626f0bd-f61a-4f6a-b7f4-ef2bbf6b1b8e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 13.091227640465867,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:451dc7f5-c61a-4ad1-8873-3c2ff93de711",
- "resource": {
- "resourceType": "Observation",
- "id": "451dc7f5-c61a-4ad1-8873-3c2ff93de711",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 47.73775580126382,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:00c05874-ffa0-4a7e-a735-61cceb0ec14b",
- "resource": {
- "resourceType": "Observation",
- "id": "00c05874-ffa0-4a7e-a735-61cceb0ec14b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 93.03404844384812,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ff2eb2cc-4f4e-4427-862a-e65597b32be5",
- "resource": {
- "resourceType": "Observation",
- "id": "ff2eb2cc-4f4e-4427-862a-e65597b32be5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 32.55396878457948,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2b239195-1b06-4dbc-9b1d-39b3105164de",
- "resource": {
- "resourceType": "Observation",
- "id": "2b239195-1b06-4dbc-9b1d-39b3105164de",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 35.80383746502647,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a5a9bef3-8933-4e71-b95f-d50e612aaf86",
- "resource": {
- "resourceType": "Observation",
- "id": "a5a9bef3-8933-4e71-b95f-d50e612aaf86",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 43.06372489169094,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e41d7c33-7d03-4f52-a02a-8dd1812d4d23",
- "resource": {
- "resourceType": "Observation",
- "id": "e41d7c33-7d03-4f52-a02a-8dd1812d4d23",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 274.55583110978284,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d4154a73-1989-4f64-a547-411de05e3b42",
- "resource": {
- "resourceType": "Observation",
- "id": "d4154a73-1989-4f64-a547-411de05e3b42",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 179.85902981987232,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:498c39fc-bbef-48e6-9efd-e3a7fc21b991",
- "resource": {
- "resourceType": "Observation",
- "id": "498c39fc-bbef-48e6-9efd-e3a7fc21b991",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 11.57960075257691,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c96d8524-d287-4348-a5ae-294c78bbe1b9",
- "resource": {
- "resourceType": "Observation",
- "id": "c96d8524-d287-4348-a5ae-294c78bbe1b9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d039d7c6-e0ca-4257-b213-6c1887b1f104",
- "resource": {
- "resourceType": "Observation",
- "id": "d039d7c6-e0ca-4257-b213-6c1887b1f104",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 6.207755357647815,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:930f0963-3458-4b30-865d-d2e51566391d",
- "resource": {
- "resourceType": "Immunization",
- "id": "930f0963-3458-4b30-865d-d2e51566391d",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "occurrenceDateTime": "2015-06-21T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:5fc0f6af-f226-4b82-b8c9-4dae64515700",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "5fc0f6af-f226-4b82-b8c9-4dae64515700",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:8d2426d1-80c8-46e9-8669-50e38ff2b409",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:3f0901b0-5c92-41ca-a25e-7004fb0f79f2",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:693a1106-d787-420c-bff9-3ff695f0a0b3",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:5e72adfa-9471-4026-aff9-68349af6dac9",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:b956510d-6da8-45fa-9356-2f9ccc653a1e",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:44cf8a25-a462-4a8d-8891-e4a2a8aca285",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:0dbd118e-f1d7-4f89-b8e1-1c8da9d46bef",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:75334cf2-3343-46ce-b3c2-001a9160bd11",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:e56d990f-5958-4607-910d-5fe771f34caa",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "e56d990f-5958-4607-910d-5fe771f34caa",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- },
- "effectiveDateTime": "2015-06-21T03:16:14-04:00",
- "issued": "2015-06-21T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:164b1775-8fb7-4e99-a282-3e49e5ae871c",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:f985ad50-3b81-48d5-bd3d-515093caec34",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:3626f0bd-f61a-4f6a-b7f4-ef2bbf6b1b8e",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:451dc7f5-c61a-4ad1-8873-3c2ff93de711",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:00c05874-ffa0-4a7e-a735-61cceb0ec14b",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:ff2eb2cc-4f4e-4427-862a-e65597b32be5",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:2b239195-1b06-4dbc-9b1d-39b3105164de",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:a5a9bef3-8933-4e71-b95f-d50e612aaf86",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:e41d7c33-7d03-4f52-a02a-8dd1812d4d23",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:d4154a73-1989-4f64-a547-411de05e3b42",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:498c39fc-bbef-48e6-9efd-e3a7fc21b991",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:6ec32d38-dd51-44cc-bb97-157f29cb18f5",
- "resource": {
- "resourceType": "Claim",
- "id": "6ec32d38-dd51-44cc-bb97-157f29cb18f5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2015-06-21T03:16:14-04:00",
- "end": "2015-06-21T03:31:14-04:00"
- },
- "created": "2015-06-21T03:31:14-04:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:930f0963-3458-4b30-865d-d2e51566391d"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:720de297-9944-49b9-a078-a025824b0101",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "720de297-9944-49b9-a078-a025824b0101",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "6ec32d38-dd51-44cc-bb97-157f29cb18f5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2015-06-21T03:31:14-04:00",
- "end": "2016-06-21T03:31:14-04:00"
- },
- "created": "2015-06-21T03:31:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:6ec32d38-dd51-44cc-bb97-157f29cb18f5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-06-21T03:16:14-04:00",
- "end": "2015-06-21T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c25a5bca-db00-438a-928e-3e47c12c7bd3"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2015-06-21T03:16:14-04:00",
- "end": "2015-06-21T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031",
- "resource": {
- "resourceType": "Encounter",
- "id": "b6715df5-ad23-41d5-bb46-61e2ef123031",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2015-12-10T02:16:14-05:00",
- "end": "2015-12-10T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "88805009",
- "display": "Chronic congestive heart failure (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:1fd8720f-3887-4e8f-b007-224d68cf0ab1",
- "resource": {
- "resourceType": "Condition",
- "id": "1fd8720f-3887-4e8f-b007-224d68cf0ab1",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "88805009",
- "display": "Chronic congestive heart failure (disorder)"
- }
- ],
- "text": "Chronic congestive heart failure (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- },
- "onsetDateTime": "2015-12-10T02:16:14-05:00",
- "recordedDate": "2015-12-10T02:16:14-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:0e4c923a-590e-485c-82b4-58f374ffcae4",
- "resource": {
- "resourceType": "Observation",
- "id": "0e4c923a-590e-485c-82b4-58f374ffcae4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33762-6",
- "display": "NT-proBNP"
- }
- ],
- "text": "NT-proBNP"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- },
- "effectiveDateTime": "2015-12-10T02:16:14-05:00",
- "issued": "2015-12-10T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 1505.9718633962982,
- "unit": "pg/mL",
- "system": "http://unitsofmeasure.org",
- "code": "pg/mL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b3b2e77f-ec80-485c-9bd5-66d5010c0778",
- "resource": {
- "resourceType": "Observation",
- "id": "b3b2e77f-ec80-485c-9bd5-66d5010c0778",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- },
- "effectiveDateTime": "2015-12-10T02:16:14-05:00",
- "issued": "2015-12-10T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 88.85535054696166,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8e4dbfc9-5ce3-4cb1-aabd-b9e22da22b34",
- "resource": {
- "resourceType": "Observation",
- "id": "8e4dbfc9-5ce3-4cb1-aabd-b9e22da22b34",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- },
- "effectiveDateTime": "2015-12-10T02:16:14-05:00",
- "issued": "2015-12-10T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 7.973979117293776,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ceef53fd-6bdb-467a-9d94-20e989ab08bb",
- "resource": {
- "resourceType": "Observation",
- "id": "ceef53fd-6bdb-467a-9d94-20e989ab08bb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- },
- "effectiveDateTime": "2015-12-10T02:16:14-05:00",
- "issued": "2015-12-10T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.6322833589019438,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7153c086-b936-4178-9bee-fca690fe1a67",
- "resource": {
- "resourceType": "Observation",
- "id": "7153c086-b936-4178-9bee-fca690fe1a67",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- },
- "effectiveDateTime": "2015-12-10T02:16:14-05:00",
- "issued": "2015-12-10T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 9.768592346695563,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c4e9c731-8a05-43d5-a445-613faaf1b9a5",
- "resource": {
- "resourceType": "Observation",
- "id": "c4e9c731-8a05-43d5-a445-613faaf1b9a5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- },
- "effectiveDateTime": "2015-12-10T02:16:14-05:00",
- "issued": "2015-12-10T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 142.82253404200725,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:02442f0d-003e-4c70-ad5a-9f6dcb1cccb8",
- "resource": {
- "resourceType": "Observation",
- "id": "02442f0d-003e-4c70-ad5a-9f6dcb1cccb8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- },
- "effectiveDateTime": "2015-12-10T02:16:14-05:00",
- "issued": "2015-12-10T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.435972431194307,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:294271a9-5c4f-4b60-8be2-da607385cab2",
- "resource": {
- "resourceType": "Observation",
- "id": "294271a9-5c4f-4b60-8be2-da607385cab2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- },
- "effectiveDateTime": "2015-12-10T02:16:14-05:00",
- "issued": "2015-12-10T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 104.56601028615881,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2a910527-e39a-4176-a0ec-da77e3034fee",
- "resource": {
- "resourceType": "Observation",
- "id": "2a910527-e39a-4176-a0ec-da77e3034fee",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- },
- "effectiveDateTime": "2015-12-10T02:16:14-05:00",
- "issued": "2015-12-10T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 22.55117326324381,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6a4f820a-d496-4d2f-b426-d0bef0ebc42a",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "6a4f820a-d496-4d2f-b426-d0bef0ebc42a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- },
- "effectiveDateTime": "2015-12-10T02:16:14-05:00",
- "issued": "2015-12-10T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:b3b2e77f-ec80-485c-9bd5-66d5010c0778",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:8e4dbfc9-5ce3-4cb1-aabd-b9e22da22b34",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:ceef53fd-6bdb-467a-9d94-20e989ab08bb",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:7153c086-b936-4178-9bee-fca690fe1a67",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:c4e9c731-8a05-43d5-a445-613faaf1b9a5",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:02442f0d-003e-4c70-ad5a-9f6dcb1cccb8",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:294271a9-5c4f-4b60-8be2-da607385cab2",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:2a910527-e39a-4176-a0ec-da77e3034fee",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:031290ac-6b47-40d9-9880-d5dac47ae04b",
- "resource": {
- "resourceType": "Claim",
- "id": "031290ac-6b47-40d9-9880-d5dac47ae04b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2015-12-10T02:16:14-05:00",
- "end": "2015-12-10T02:31:14-05:00"
- },
- "created": "2015-12-10T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:1fd8720f-3887-4e8f-b007-224d68cf0ab1"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "88805009",
- "display": "Chronic congestive heart failure (disorder)"
- }
- ],
- "text": "Chronic congestive heart failure (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3e3f47e4-17bd-4ebd-ab90-ecd0107f44c6",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3e3f47e4-17bd-4ebd-ab90-ecd0107f44c6",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "031290ac-6b47-40d9-9880-d5dac47ae04b"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2015-12-10T02:31:14-05:00",
- "end": "2016-12-10T02:31:14-05:00"
- },
- "created": "2015-12-10T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:031290ac-6b47-40d9-9880-d5dac47ae04b"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:1fd8720f-3887-4e8f-b007-224d68cf0ab1"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "servicedPeriod": {
- "start": "2015-12-10T02:16:14-05:00",
- "end": "2015-12-10T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:b6715df5-ad23-41d5-bb46-61e2ef123031"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "88805009",
- "display": "Chronic congestive heart failure (disorder)"
- }
- ],
- "text": "Chronic congestive heart failure (disorder)"
- },
- "servicedPeriod": {
- "start": "2015-12-10T02:16:14-05:00",
- "end": "2015-12-10T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca",
- "resource": {
- "resourceType": "Encounter",
- "id": "70aa9c05-eca0-4a4c-b5a3-77862f79a9ca",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2015-12-31T02:16:14-05:00",
- "end": "2015-12-31T03:01:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "88805009",
- "display": "Chronic congestive heart failure (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:778b4ff0-9ea4-484d-9b8d-2b1a74bf62ce",
- "resource": {
- "resourceType": "Observation",
- "id": "778b4ff0-9ea4-484d-9b8d-2b1a74bf62ce",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "imaging",
- "display": "imaging"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10230-1",
- "display": "Left ventricular Ejection fraction"
- }
- ],
- "text": "Left ventricular Ejection fraction"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- },
- "effectiveDateTime": "2015-12-31T02:16:14-05:00",
- "issued": "2015-12-31T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 34.28334331855905,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:eaa9b289-00e8-425a-931f-991a62f56a2e",
- "resource": {
- "resourceType": "Observation",
- "id": "eaa9b289-00e8-425a-931f-991a62f56a2e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-sign",
- "display": "vital-sign"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10230-1",
- "display": "Left ventricular Ejection fraction"
- }
- ],
- "text": "Left ventricular Ejection fraction"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- },
- "effectiveDateTime": "2015-12-31T02:16:14-05:00",
- "issued": "2015-12-31T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 40.69089821176203,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:26d36aca-c658-4ebe-80c3-e8da89dd77a7",
- "resource": {
- "resourceType": "Procedure",
- "id": "26d36aca-c658-4ebe-80c3-e8da89dd77a7",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "434158009",
- "display": "Transthoracic three dimensional ultrasonography of heart (procedure)"
- }
- ],
- "text": "Transthoracic three dimensional ultrasonography of heart (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- },
- "performedPeriod": {
- "start": "2015-12-31T02:16:14-05:00",
- "end": "2015-12-31T02:46:14-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:a95f965b-6241-4fef-93e8-0bf4d8268865",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "a95f965b-6241-4fef-93e8-0bf4d8268865",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "866414",
- "display": "24 HR metoprolol succinate 100 MG Extended Release Oral Tablet [Toprol]"
- }
- ],
- "text": "24 HR metoprolol succinate 100 MG Extended Release Oral Tablet [Toprol]"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- },
- "authoredOn": "2015-12-31T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:1fd8720f-3887-4e8f-b007-224d68cf0ab1"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:98e146f4-4478-4889-b514-168ccb6bfe41",
- "resource": {
- "resourceType": "Claim",
- "id": "98e146f4-4478-4889-b514-168ccb6bfe41",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2015-12-31T02:16:14-05:00",
- "end": "2015-12-31T03:01:14-05:00"
- },
- "created": "2015-12-31T03:01:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:a95f965b-6241-4fef-93e8-0bf4d8268865"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0f926b4c-8fd9-4fbd-90d7-8f098d126e2c",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "0f926b4c-8fd9-4fbd-90d7-8f098d126e2c",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "315971",
- "display": "Lasix 40mg"
- }
- ],
- "text": "Lasix 40mg"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- },
- "authoredOn": "2015-12-31T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:1fd8720f-3887-4e8f-b007-224d68cf0ab1"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:d4510a8c-3588-4362-bd18-660d57059c0a",
- "resource": {
- "resourceType": "Claim",
- "id": "d4510a8c-3588-4362-bd18-660d57059c0a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2015-12-31T02:16:14-05:00",
- "end": "2015-12-31T03:01:14-05:00"
- },
- "created": "2015-12-31T03:01:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:0f926b4c-8fd9-4fbd-90d7-8f098d126e2c"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5f38df7d-401d-48c0-b216-fddb84e6715d",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "5f38df7d-401d-48c0-b216-fddb84e6715d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55405-5",
- "display": "Heartfailure Tracking Panel"
- }
- ],
- "text": "Heartfailure Tracking Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- },
- "effectiveDateTime": "2015-12-31T02:16:14-05:00",
- "issued": "2015-12-31T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:eaa9b289-00e8-425a-931f-991a62f56a2e",
- "display": "Left ventricular Ejection fraction"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:36771a55-ed5c-4836-b426-521811b6db6c",
- "resource": {
- "resourceType": "CareTeam",
- "id": "36771a55-ed5c-4836-b426-521811b6db6c",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- },
- "period": {
- "start": "2015-12-31T02:16:14-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "88805009",
- "display": "Chronic congestive heart failure (disorder)"
- }
- ],
- "text": "Chronic congestive heart failure (disorder)"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:520fa357-5436-4a03-afb4-a677177627a8",
- "resource": {
- "resourceType": "CarePlan",
- "id": "520fa357-5436-4a03-afb4-a677177627a8",
- "text": {
- "status": "generated",
- "div": "Care Plan for Heart failure self management plan.
Activities:
- Heart failure self management plan
- Heart failure self management plan
Care plan is meant to treat Chronic congestive heart failure (disorder).
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "735984001",
- "display": "Heart failure self management plan"
- }
- ],
- "text": "Heart failure self management plan"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- },
- "period": {
- "start": "2015-12-31T02:16:14-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:36771a55-ed5c-4836-b426-521811b6db6c"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:1fd8720f-3887-4e8f-b007-224d68cf0ab1"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183063000",
- "display": "low salt diet education"
- }
- ],
- "text": "low salt diet education"
- },
- "status": "in-progress",
- "location": {
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183301007",
- "display": "physical exercise"
- }
- ],
- "text": "physical exercise"
- },
- "status": "in-progress",
- "location": {
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:58a09329-2e75-4bb7-90c4-06f02867ade8",
- "resource": {
- "resourceType": "ImagingStudy",
- "id": "58a09329-2e75-4bb7-90c4-06f02867ade8",
- "identifier": [
- {
- "use": "official",
- "system": "urn:ietf:rfc:3986",
- "value": "urn:oid:1.2.840.99999999.67536008.1568644950255"
- }
- ],
- "status": "available",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- },
- "started": "2015-12-31T02:16:14-05:00",
- "numberOfSeries": 1,
- "numberOfInstances": 1,
- "series": [
- {
- "uid": "1.2.840.99999999.1.43109579.1568644950255",
- "number": 1,
- "modality": {
- "system": "http://dicom.nema.org/resources/ontology/DCM",
- "code": "US",
- "display": "Ultrasound"
- },
- "numberOfInstances": 1,
- "bodySite": {
- "system": "http://snomed.info/sct",
- "code": "261179002",
- "display": "thoracic"
- },
- "started": "2015-12-31T02:16:14-05:00",
- "instance": [
- {
- "uid": "1.2.840.99999999.1.1.74173742.1568644950431",
- "sopClass": {
- "system": "urn:ietf:rfc:3986",
- "code": "1.2.840.10008.5.1.4.1.1.3.1"
- },
- "number": 1,
- "title": "Ultrasound Multiframe Image Storage"
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "ImagingStudy"
- }
- },
- {
- "fullUrl": "urn:uuid:b3523286-42c6-4624-b906-849b8fd7c67d",
- "resource": {
- "resourceType": "Claim",
- "id": "b3523286-42c6-4624-b906-849b8fd7c67d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2015-12-31T02:16:14-05:00",
- "end": "2015-12-31T03:01:14-05:00"
- },
- "created": "2015-12-31T03:01:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:26d36aca-c658-4ebe-80c3-e8da89dd77a7"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "434158009",
- "display": "Transthoracic three dimensional ultrasonography of heart (procedure)"
- }
- ],
- "text": "Transthoracic three dimensional ultrasonography of heart (procedure)"
- },
- "net": {
- "value": 1431.89,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:db5dfb16-8a8b-414d-8995-83306214b257",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "db5dfb16-8a8b-414d-8995-83306214b257",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b3523286-42c6-4624-b906-849b8fd7c67d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2015-12-31T03:01:14-05:00",
- "end": "2016-12-31T03:01:14-05:00"
- },
- "created": "2015-12-31T03:01:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b3523286-42c6-4624-b906-849b8fd7c67d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for problem"
- }
- ],
- "text": "Encounter for problem"
- },
- "servicedPeriod": {
- "start": "2015-12-31T02:16:14-05:00",
- "end": "2015-12-31T03:01:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:70aa9c05-eca0-4a4c-b5a3-77862f79a9ca"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "434158009",
- "display": "Transthoracic three dimensional ultrasonography of heart (procedure)"
- }
- ],
- "text": "Transthoracic three dimensional ultrasonography of heart (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-12-31T02:16:14-05:00",
- "end": "2015-12-31T03:01:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 1431.89,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 286.37800000000004,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 1145.5120000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1431.89,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 1431.89,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1145.5120000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657",
- "resource": {
- "resourceType": "Encounter",
- "id": "e367bf11-52d4-4a5f-911b-56849d5b7657",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2016-02-06T02:16:14-05:00",
- "end": "2016-02-06T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "55822004",
- "display": "Hyperlipidemia"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:3ecd7aa3-af0f-476a-b55e-fbe99d657655",
- "resource": {
- "resourceType": "Observation",
- "id": "3ecd7aa3-af0f-476a-b55e-fbe99d657655",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 85.4070826134686,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:70192e92-bd48-4976-a605-48d203b46862",
- "resource": {
- "resourceType": "Observation",
- "id": "70192e92-bd48-4976-a605-48d203b46862",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 14.371365372523611,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:80a9f72a-1065-4dc7-9404-e40ca19fb4e5",
- "resource": {
- "resourceType": "Observation",
- "id": "80a9f72a-1065-4dc7-9404-e40ca19fb4e5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.3664133523556634,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3fbc7524-2a3f-4208-8c88-9100d9e1da12",
- "resource": {
- "resourceType": "Observation",
- "id": "3fbc7524-2a3f-4208-8c88-9100d9e1da12",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 8.667218236135128,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a5ca2af9-6670-4020-9019-21feabad5c81",
- "resource": {
- "resourceType": "Observation",
- "id": "a5ca2af9-6670-4020-9019-21feabad5c81",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 137.21516215499884,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:94fda7a3-9639-4c26-ad12-43f64f509886",
- "resource": {
- "resourceType": "Observation",
- "id": "94fda7a3-9639-4c26-ad12-43f64f509886",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.221510735106607,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3286b837-9692-4059-936d-1db33cd4ec12",
- "resource": {
- "resourceType": "Observation",
- "id": "3286b837-9692-4059-936d-1db33cd4ec12",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 103.00327625375168,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2fc771ec-7c4d-487b-b646-a64f9ddb29eb",
- "resource": {
- "resourceType": "Observation",
- "id": "2fc771ec-7c4d-487b-b646-a64f9ddb29eb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 20.150564026646357,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8b1692b9-b017-4619-9ef7-d135d82ca293",
- "resource": {
- "resourceType": "Observation",
- "id": "8b1692b9-b017-4619-9ef7-d135d82ca293",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33914-3",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- }
- ],
- "text": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 69.37660878227382,
- "unit": "mL/min",
- "system": "http://unitsofmeasure.org",
- "code": "mL/min"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:93907f33-7322-40bb-a890-9f416bd2c859",
- "resource": {
- "resourceType": "Observation",
- "id": "93907f33-7322-40bb-a890-9f416bd2c859",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2885-2",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Protein [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 72.79943188965723,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c743a635-1fd6-4997-b89f-ad3ffca43521",
- "resource": {
- "resourceType": "Observation",
- "id": "c743a635-1fd6-4997-b89f-ad3ffca43521",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1751-7",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Albumin [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 4.461515948981095,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:588d9220-9097-47d8-89bd-fa42f062a7d9",
- "resource": {
- "resourceType": "Observation",
- "id": "588d9220-9097-47d8-89bd-fa42f062a7d9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10834-0",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- }
- ],
- "text": "Globulin [Mass/volume] in Serum by calculation"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.0590732514629058,
- "unit": "g/L",
- "system": "http://unitsofmeasure.org",
- "code": "g/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f03acbc6-21e2-41d0-8a2e-77bf875faee0",
- "resource": {
- "resourceType": "Observation",
- "id": "f03acbc6-21e2-41d0-8a2e-77bf875faee0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1975-2",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- }
- ],
- "text": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.9230414718074421,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4208e248-0945-4f35-9f4a-aa5b6eb52308",
- "resource": {
- "resourceType": "Observation",
- "id": "4208e248-0945-4f35-9f4a-aa5b6eb52308",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6768-6",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 101.01720643928421,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9c7f5304-3db5-4054-844e-7153417a2d1f",
- "resource": {
- "resourceType": "Observation",
- "id": "9c7f5304-3db5-4054-844e-7153417a2d1f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1742-6",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 45.50867717041703,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:02a6c127-a165-47e9-acb9-e389943bec3e",
- "resource": {
- "resourceType": "Observation",
- "id": "02a6c127-a165-47e9-acb9-e389943bec3e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1920-8",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ],
- "text": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 17.55585958070605,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:03c521e7-aa03-474d-beed-22cc66bc40f4",
- "resource": {
- "resourceType": "Observation",
- "id": "03c521e7-aa03-474d-beed-22cc66bc40f4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 164.75250938958774,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:11bae4a9-fd56-4f03-9d99-8c800c6899ee",
- "resource": {
- "resourceType": "Observation",
- "id": "11bae4a9-fd56-4f03-9d99-8c800c6899ee",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 118.52678626442587,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:251d8288-4c05-4e20-8c6d-b872dede7c81",
- "resource": {
- "resourceType": "Observation",
- "id": "251d8288-4c05-4e20-8c6d-b872dede7c81",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 139.51232383903863,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:74f5b61c-a8e9-465a-96cd-6af9f0a7cbaf",
- "resource": {
- "resourceType": "Observation",
- "id": "74f5b61c-a8e9-465a-96cd-6af9f0a7cbaf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 58.89442190780188,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3275c74c-42a9-4d2a-ba64-2fd0a1cbe419",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "3275c74c-42a9-4d2a-ba64-2fd0a1cbe419",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316672",
- "display": "Simvistatin 10 MG"
- }
- ],
- "text": "Simvistatin 10 MG"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "authoredOn": "2016-02-06T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:c88de552-d765-477f-9155-55ff641b3b11"
- }
- ],
- "dosageInstruction": [
- {
- "sequence": 1,
- "timing": {
- "repeat": {
- "frequency": 1,
- "period": 1.0,
- "periodUnit": "d"
- }
- },
- "asNeededBoolean": false,
- "doseAndRate": [
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/dose-rate-type",
- "code": "ordered",
- "display": "Ordered"
- }
- ]
- },
- "doseQuantity": {
- "value": 1.0
- }
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:29289e4c-60e2-4b89-90a9-51599793f463",
- "resource": {
- "resourceType": "Claim",
- "id": "29289e4c-60e2-4b89-90a9-51599793f463",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-02-06T02:16:14-05:00",
- "end": "2016-02-06T02:31:14-05:00"
- },
- "created": "2016-02-06T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:3275c74c-42a9-4d2a-ba64-2fd0a1cbe419"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:7f820dd6-3a65-4022-ad98-d3e27b144087",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "7f820dd6-3a65-4022-ad98-d3e27b144087",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "24323-8",
- "display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- }
- ],
- "text": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:3ecd7aa3-af0f-476a-b55e-fbe99d657655",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:70192e92-bd48-4976-a605-48d203b46862",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:80a9f72a-1065-4dc7-9404-e40ca19fb4e5",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:3fbc7524-2a3f-4208-8c88-9100d9e1da12",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:a5ca2af9-6670-4020-9019-21feabad5c81",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:94fda7a3-9639-4c26-ad12-43f64f509886",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:3286b837-9692-4059-936d-1db33cd4ec12",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:2fc771ec-7c4d-487b-b646-a64f9ddb29eb",
- "display": "Carbon Dioxide"
- },
- {
- "reference": "urn:uuid:8b1692b9-b017-4619-9ef7-d135d82ca293",
- "display": "Glomerular filtration rate/1.73 sq M.predicted"
- },
- {
- "reference": "urn:uuid:93907f33-7322-40bb-a890-9f416bd2c859",
- "display": "Protein [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:c743a635-1fd6-4997-b89f-ad3ffca43521",
- "display": "Albumin [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:588d9220-9097-47d8-89bd-fa42f062a7d9",
- "display": "Globulin [Mass/volume] in Serum by calculation"
- },
- {
- "reference": "urn:uuid:f03acbc6-21e2-41d0-8a2e-77bf875faee0",
- "display": "Bilirubin.total [Mass/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:4208e248-0945-4f35-9f4a-aa5b6eb52308",
- "display": "Alkaline phosphatase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:9c7f5304-3db5-4054-844e-7153417a2d1f",
- "display": "Alanine aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:02a6c127-a165-47e9-acb9-e389943bec3e",
- "display": "Aspartate aminotransferase [Enzymatic activity/volume] in Serum or Plasma"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:f25babb4-c93d-4ac6-ae6a-486acbe95ac6",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "f25babb4-c93d-4ac6-ae6a-486acbe95ac6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- },
- "effectiveDateTime": "2016-02-06T02:16:14-05:00",
- "issued": "2016-02-06T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:03c521e7-aa03-474d-beed-22cc66bc40f4",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:11bae4a9-fd56-4f03-9d99-8c800c6899ee",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:251d8288-4c05-4e20-8c6d-b872dede7c81",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:74f5b61c-a8e9-465a-96cd-6af9f0a7cbaf",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:a91233cd-076a-4727-940d-4ca644f1abc0",
- "resource": {
- "resourceType": "Claim",
- "id": "a91233cd-076a-4727-940d-4ca644f1abc0",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2016-02-06T02:16:14-05:00",
- "end": "2016-02-06T02:31:14-05:00"
- },
- "created": "2016-02-06T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:27a95a45-d4c0-452d-bd51-629f7cb6e090",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "27a95a45-d4c0-452d-bd51-629f7cb6e090",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "a91233cd-076a-4727-940d-4ca644f1abc0"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-02-06T02:31:14-05:00",
- "end": "2017-02-06T02:31:14-05:00"
- },
- "created": "2016-02-06T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:a91233cd-076a-4727-940d-4ca644f1abc0"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Follow-up encounter"
- }
- ],
- "text": "Follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2016-02-06T02:16:14-05:00",
- "end": "2016-02-06T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:e367bf11-52d4-4a5f-911b-56849d5b7657"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9",
- "resource": {
- "resourceType": "Encounter",
- "id": "7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80",
- "display": "Dr. Manuel446 Eichmann909"
- }
- }
- ],
- "period": {
- "start": "2016-06-26T03:16:14-04:00",
- "end": "2016-06-26T03:31:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:94ac68ff-7d8b-42e0-98a6-8b6df96ea8de",
- "resource": {
- "resourceType": "Observation",
- "id": "94ac68ff-7d8b-42e0-98a6-8b6df96ea8de",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:54a6dc8c-11f6-4e0a-940d-36c3767d2754",
- "resource": {
- "resourceType": "Observation",
- "id": "54a6dc8c-11f6-4e0a-940d-36c3767d2754",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 3.695731139623267,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4e0655b3-5542-4515-9036-7892712b6523",
- "resource": {
- "resourceType": "Observation",
- "id": "4e0655b3-5542-4515-9036-7892712b6523",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:54b007c8-f75f-4f2e-bb56-27fd924eb51c",
- "resource": {
- "resourceType": "Observation",
- "id": "54b007c8-f75f-4f2e-bb56-27fd924eb51c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8bb72733-3921-4660-9262-bbe68dd7b014",
- "resource": {
- "resourceType": "Observation",
- "id": "8bb72733-3921-4660-9262-bbe68dd7b014",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 76.80235583675574,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 103.37481728893987,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b5ff0549-5f07-4f4f-bc92-9750efbeeb95",
- "resource": {
- "resourceType": "Observation",
- "id": "b5ff0549-5f07-4f4f-bc92-9750efbeeb95",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 77.18563681443915,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bb950071-da52-4c01-ab79-68dcdf3e0dc6",
- "resource": {
- "resourceType": "Observation",
- "id": "bb950071-da52-4c01-ab79-68dcdf3e0dc6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 13.657646610055764,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:85cbd363-2efe-4bcc-a9dc-9c9b7c4a0795",
- "resource": {
- "resourceType": "Observation",
- "id": "85cbd363-2efe-4bcc-a9dc-9c9b7c4a0795",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.6213819216794965,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:707a06d7-6ad8-4755-8e9d-88534934f0fd",
- "resource": {
- "resourceType": "Observation",
- "id": "707a06d7-6ad8-4755-8e9d-88534934f0fd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 10.093190480121503,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b1e39235-a3ab-48b4-80dc-19083268dd75",
- "resource": {
- "resourceType": "Observation",
- "id": "b1e39235-a3ab-48b4-80dc-19083268dd75",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 137.66751380077784,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e4f1dce0-3279-4456-94b8-cdb068b79fb7",
- "resource": {
- "resourceType": "Observation",
- "id": "e4f1dce0-3279-4456-94b8-cdb068b79fb7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.954727372261438,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fb1105cd-1a88-47a5-bc2f-e1a53bec629a",
- "resource": {
- "resourceType": "Observation",
- "id": "fb1105cd-1a88-47a5-bc2f-e1a53bec629a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 106.11600843122292,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5355223a-3ed5-45be-b3bb-6011192cda59",
- "resource": {
- "resourceType": "Observation",
- "id": "5355223a-3ed5-45be-b3bb-6011192cda59",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.360665736598875,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:00b0c525-465a-4f5e-9161-6504d296fbc7",
- "resource": {
- "resourceType": "Observation",
- "id": "00b0c525-465a-4f5e-9161-6504d296fbc7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 189.35157069809605,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1297d0b6-7e16-473d-99e5-907cae89a83d",
- "resource": {
- "resourceType": "Observation",
- "id": "1297d0b6-7e16-473d-99e5-907cae89a83d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 148.62778276460597,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8caad5c2-06b7-44d5-819b-0ddc52d0b936",
- "resource": {
- "resourceType": "Observation",
- "id": "8caad5c2-06b7-44d5-819b-0ddc52d0b936",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 89.31036121717477,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6854d6fd-8689-4d9c-8805-52fbcf970f59",
- "resource": {
- "resourceType": "Observation",
- "id": "6854d6fd-8689-4d9c-8805-52fbcf970f59",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 70.31565292800009,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c055d136-8efe-417c-9dcb-591e6f2ae79c",
- "resource": {
- "resourceType": "Observation",
- "id": "c055d136-8efe-417c-9dcb-591e6f2ae79c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:950fbad7-6159-49e1-bf10-5f6134bcaea7",
- "resource": {
- "resourceType": "Observation",
- "id": "950fbad7-6159-49e1-bf10-5f6134bcaea7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 5.961511892486172,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:21226d4c-a791-4210-ac8e-ba48dee215c6",
- "resource": {
- "resourceType": "Immunization",
- "id": "21226d4c-a791-4210-ac8e-ba48dee215c6",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "occurrenceDateTime": "2016-06-26T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:210556ea-405a-40ac-9dd3-6e3d73785188",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "210556ea-405a-40ac-9dd3-6e3d73785188",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:b5ff0549-5f07-4f4f-bc92-9750efbeeb95",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:bb950071-da52-4c01-ab79-68dcdf3e0dc6",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:85cbd363-2efe-4bcc-a9dc-9c9b7c4a0795",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:707a06d7-6ad8-4755-8e9d-88534934f0fd",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:b1e39235-a3ab-48b4-80dc-19083268dd75",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:e4f1dce0-3279-4456-94b8-cdb068b79fb7",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:fb1105cd-1a88-47a5-bc2f-e1a53bec629a",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:5355223a-3ed5-45be-b3bb-6011192cda59",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:e1f707d8-8872-4535-a2ff-e1160d3e3dfb",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "e1f707d8-8872-4535-a2ff-e1160d3e3dfb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- },
- "effectiveDateTime": "2016-06-26T03:16:14-04:00",
- "issued": "2016-06-26T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:00b0c525-465a-4f5e-9161-6504d296fbc7",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:1297d0b6-7e16-473d-99e5-907cae89a83d",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:8caad5c2-06b7-44d5-819b-0ddc52d0b936",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:6854d6fd-8689-4d9c-8805-52fbcf970f59",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:ce73e045-1404-424f-b71e-ab67e404c297",
- "resource": {
- "resourceType": "Claim",
- "id": "ce73e045-1404-424f-b71e-ab67e404c297",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2016-06-26T03:16:14-04:00",
- "end": "2016-06-26T03:31:14-04:00"
- },
- "created": "2016-06-26T03:31:14-04:00",
- "provider": {
- "reference": "urn:uuid:ed03dc2d-0567-3395-92df-4c18d4993565",
- "display": "PCP127028"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:21226d4c-a791-4210-ac8e-ba48dee215c6"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:a34c1cfa-4ffa-405a-9f57-491b585cf8e1",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "a34c1cfa-4ffa-405a-9f57-491b585cf8e1",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ce73e045-1404-424f-b71e-ab67e404c297"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-06-26T03:31:14-04:00",
- "end": "2017-06-26T03:31:14-04:00"
- },
- "created": "2016-06-26T03:31:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ce73e045-1404-424f-b71e-ab67e404c297"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000bb80"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-06-26T03:16:14-04:00",
- "end": "2016-06-26T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:7f4fcbfc-9d95-4b57-8f42-473fc9b2cdb9"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2016-06-26T03:16:14-04:00",
- "end": "2016-06-26T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:ffce5c60-a29b-411f-8528-69f20ac34c0b",
- "resource": {
- "resourceType": "Encounter",
- "id": "ffce5c60-a29b-411f-8528-69f20ac34c0b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2016-09-15T03:16:14-04:00",
- "end": "2016-09-15T03:31:14-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:ffab5d9a-f7f3-43ae-a625-a2a62e5f2160",
- "resource": {
- "resourceType": "Condition",
- "id": "ffab5d9a-f7f3-43ae-a625-a2a62e5f2160",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ],
- "text": "Sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ffce5c60-a29b-411f-8528-69f20ac34c0b"
- },
- "onsetDateTime": "2016-09-15T03:16:14-04:00",
- "abatementDateTime": "2016-12-29T02:16:14-05:00",
- "recordedDate": "2016-09-15T03:16:14-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:3737280a-0a7f-42d1-9562-5be11c3bb90d",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "3737280a-0a7f-42d1-9562-5be11c3bb90d",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "562251",
- "display": "Amoxicillin 250 MG / Clavulanate 125 MG Oral Tablet"
- }
- ],
- "text": "Amoxicillin 250 MG / Clavulanate 125 MG Oral Tablet"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:ffce5c60-a29b-411f-8528-69f20ac34c0b"
- },
- "authoredOn": "2016-09-15T03:16:14-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:ffab5d9a-f7f3-43ae-a625-a2a62e5f2160"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:792818fc-c1ac-4542-bfaf-b27ca1326e3d",
- "resource": {
- "resourceType": "Claim",
- "id": "792818fc-c1ac-4542-bfaf-b27ca1326e3d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-09-15T03:16:14-04:00",
- "end": "2016-09-15T03:31:14-04:00"
- },
- "created": "2016-09-15T03:31:14-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:3737280a-0a7f-42d1-9562-5be11c3bb90d"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ffce5c60-a29b-411f-8528-69f20ac34c0b"
- }
- ]
- }
- ],
- "total": {
- "value": 44.65,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4f594f77-5d26-4d59-899f-36a7fc536ded",
- "resource": {
- "resourceType": "Claim",
- "id": "4f594f77-5d26-4d59-899f-36a7fc536ded",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2016-09-15T03:16:14-04:00",
- "end": "2016-09-15T03:31:14-04:00"
- },
- "created": "2016-09-15T03:31:14-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:ffab5d9a-f7f3-43ae-a625-a2a62e5f2160"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ffce5c60-a29b-411f-8528-69f20ac34c0b"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ],
- "text": "Sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4c2a1e55-c87f-4186-847d-94ee7806b88f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "4c2a1e55-c87f-4186-847d-94ee7806b88f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "4f594f77-5d26-4d59-899f-36a7fc536ded"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-09-15T03:31:14-04:00",
- "end": "2017-09-15T03:31:14-04:00"
- },
- "created": "2016-09-15T03:31:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:4f594f77-5d26-4d59-899f-36a7fc536ded"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:ffab5d9a-f7f3-43ae-a625-a2a62e5f2160"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2016-09-15T03:16:14-04:00",
- "end": "2016-09-15T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ffce5c60-a29b-411f-8528-69f20ac34c0b"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ],
- "text": "Sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2016-09-15T03:16:14-04:00",
- "end": "2016-09-15T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:cb7734da-58e1-42d0-b83e-6ab8555d8a95",
- "resource": {
- "resourceType": "Encounter",
- "id": "cb7734da-58e1-42d0-b83e-6ab8555d8a95",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2016-10-13T03:16:14-04:00",
- "end": "2016-10-13T03:31:14-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:b4b8bed2-8fc6-4dd0-85f5-dc2c2e95c7f9",
- "resource": {
- "resourceType": "Claim",
- "id": "b4b8bed2-8fc6-4dd0-85f5-dc2c2e95c7f9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2016-10-13T03:16:14-04:00",
- "end": "2016-10-13T03:31:14-04:00"
- },
- "created": "2016-10-13T03:31:14-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:cb7734da-58e1-42d0-b83e-6ab8555d8a95"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f924ef9e-347f-4d0d-bbab-b1141be2ba91",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f924ef9e-347f-4d0d-bbab-b1141be2ba91",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b4b8bed2-8fc6-4dd0-85f5-dc2c2e95c7f9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-10-13T03:31:14-04:00",
- "end": "2017-10-13T03:31:14-04:00"
- },
- "created": "2016-10-13T03:31:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b4b8bed2-8fc6-4dd0-85f5-dc2c2e95c7f9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2016-10-13T03:16:14-04:00",
- "end": "2016-10-13T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:cb7734da-58e1-42d0-b83e-6ab8555d8a95"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b",
- "resource": {
- "resourceType": "Encounter",
- "id": "0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2016-10-23T03:16:14-04:00",
- "end": "2016-10-23T03:31:14-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:66929799-a9a9-4cfb-9bcf-734082c3d78b",
- "resource": {
- "resourceType": "Observation",
- "id": "66929799-a9a9-4cfb-9bcf-734082c3d78b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 170.17731405600847,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b03c7d9e-7359-4d2e-9da3-0c5452d99f9c",
- "resource": {
- "resourceType": "Observation",
- "id": "b03c7d9e-7359-4d2e-9da3-0c5452d99f9c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 1.5140967718511993,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:be3a94cb-2db2-40f2-815a-e7e732bc91b5",
- "resource": {
- "resourceType": "Observation",
- "id": "be3a94cb-2db2-40f2-815a-e7e732bc91b5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 78.4903480016206,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9899580e-c925-452a-94c7-86f59b2b94a4",
- "resource": {
- "resourceType": "Observation",
- "id": "9899580e-c925-452a-94c7-86f59b2b94a4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 27.102722907673495,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b65b22ae-dc9d-49e2-842b-81debdb2ef3a",
- "resource": {
- "resourceType": "Observation",
- "id": "b65b22ae-dc9d-49e2-842b-81debdb2ef3a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 74.74174271971901,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 132.7577147718523,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4975e541-960f-4f4a-beec-0059f6bc8320",
- "resource": {
- "resourceType": "Observation",
- "id": "4975e541-960f-4f4a-beec-0059f6bc8320",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 87.87364734876193,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:575d3115-bae8-4378-a4ff-a1db22400f56",
- "resource": {
- "resourceType": "Observation",
- "id": "575d3115-bae8-4378-a4ff-a1db22400f56",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 14.025943318747316,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b07779e2-f754-4e30-9562-ab504d7dd4b7",
- "resource": {
- "resourceType": "Observation",
- "id": "b07779e2-f754-4e30-9562-ab504d7dd4b7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 0.7774523175788107,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d3ad17d2-43e2-4361-a460-73db9e973d07",
- "resource": {
- "resourceType": "Observation",
- "id": "d3ad17d2-43e2-4361-a460-73db9e973d07",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 8.827577024273522,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a0404317-8091-45b2-95c4-755685e2ef90",
- "resource": {
- "resourceType": "Observation",
- "id": "a0404317-8091-45b2-95c4-755685e2ef90",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 141.4255356767467,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5ec38a48-df4e-4048-82d7-f49075afaaa9",
- "resource": {
- "resourceType": "Observation",
- "id": "5ec38a48-df4e-4048-82d7-f49075afaaa9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 4.155508934745712,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1a744040-3810-4ed4-afc6-e19d67af763c",
- "resource": {
- "resourceType": "Observation",
- "id": "1a744040-3810-4ed4-afc6-e19d67af763c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 108.7695160167006,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5a3676ff-20e4-47a7-9dcd-f8aa6684b2cf",
- "resource": {
- "resourceType": "Observation",
- "id": "5a3676ff-20e4-47a7-9dcd-f8aa6684b2cf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 20.096515943007557,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8dadf521-092f-42cb-92c3-12033fb29cf5",
- "resource": {
- "resourceType": "Observation",
- "id": "8dadf521-092f-42cb-92c3-12033fb29cf5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "8517006",
- "display": "Former smoker"
- }
- ],
- "text": "Former smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:070882c9-3a38-4ba1-a252-e12f3411223f",
- "resource": {
- "resourceType": "Observation",
- "id": "070882c9-3a38-4ba1-a252-e12f3411223f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4548-4",
- "display": "Hemoglobin A1c/Hemoglobin.total in Blood"
- }
- ],
- "text": "Hemoglobin A1c/Hemoglobin.total in Blood"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "valueQuantity": {
- "value": 5.832231200243092,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:50fea3cc-93ea-4668-bba3-59aa2adaafd2",
- "resource": {
- "resourceType": "Immunization",
- "id": "50fea3cc-93ea-4668-bba3-59aa2adaafd2",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "occurrenceDateTime": "2016-10-23T03:16:14-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:6f997928-8c33-45c8-8009-9369c7fb694f",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "6f997928-8c33-45c8-8009-9369c7fb694f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- },
- "effectiveDateTime": "2016-10-23T03:16:14-04:00",
- "issued": "2016-10-23T03:16:14.697-04:00",
- "result": [
- {
- "reference": "urn:uuid:4975e541-960f-4f4a-beec-0059f6bc8320",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:575d3115-bae8-4378-a4ff-a1db22400f56",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:b07779e2-f754-4e30-9562-ab504d7dd4b7",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:d3ad17d2-43e2-4361-a460-73db9e973d07",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:a0404317-8091-45b2-95c4-755685e2ef90",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:5ec38a48-df4e-4048-82d7-f49075afaaa9",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:1a744040-3810-4ed4-afc6-e19d67af763c",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:5a3676ff-20e4-47a7-9dcd-f8aa6684b2cf",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:f0e91ed7-93f4-4270-85dc-6f86fb3976e4",
- "resource": {
- "resourceType": "Claim",
- "id": "f0e91ed7-93f4-4270-85dc-6f86fb3976e4",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2016-10-23T03:16:14-04:00",
- "end": "2016-10-23T03:31:14-04:00"
- },
- "created": "2016-10-23T03:31:14-04:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:50fea3cc-93ea-4668-bba3-59aa2adaafd2"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9e9fd8dd-06ca-47a4-9e6d-24cac8523e23",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9e9fd8dd-06ca-47a4-9e6d-24cac8523e23",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f0e91ed7-93f4-4270-85dc-6f86fb3976e4"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-10-23T03:31:14-04:00",
- "end": "2017-10-23T03:31:14-04:00"
- },
- "created": "2016-10-23T03:31:14-04:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f0e91ed7-93f4-4270-85dc-6f86fb3976e4"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for check up (procedure)"
- }
- ],
- "text": "Encounter for check up (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-10-23T03:16:14-04:00",
- "end": "2016-10-23T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:0c88711f-cdf8-4cbb-b5bb-e94cd6bf4d2b"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2016-10-23T03:16:14-04:00",
- "end": "2016-10-23T03:31:14-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:58ff8493-0f0f-44f2-812c-8d29493b4ed7",
- "resource": {
- "resourceType": "Encounter",
- "id": "58ff8493-0f0f-44f2-812c-8d29493b4ed7",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2016-12-15T02:16:14-05:00",
- "end": "2016-12-15T02:31:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "36971009",
- "display": "Sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:2b68d552-2a34-4f10-976f-2d1c81890dd8",
- "resource": {
- "resourceType": "Claim",
- "id": "2b68d552-2a34-4f10-976f-2d1c81890dd8",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2016-12-15T02:16:14-05:00",
- "end": "2016-12-15T02:31:14-05:00"
- },
- "created": "2016-12-15T02:31:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:58ff8493-0f0f-44f2-812c-8d29493b4ed7"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0c07a657-bed7-4450-8581-e934375787c0",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0c07a657-bed7-4450-8581-e934375787c0",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "2b68d552-2a34-4f10-976f-2d1c81890dd8"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-12-15T02:31:14-05:00",
- "end": "2017-12-15T02:31:14-05:00"
- },
- "created": "2016-12-15T02:31:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:2b68d552-2a34-4f10-976f-2d1c81890dd8"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2016-12-15T02:16:14-05:00",
- "end": "2016-12-15T02:31:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:58ff8493-0f0f-44f2-812c-8d29493b4ed7"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291",
- "resource": {
- "resourceType": "Encounter",
- "id": "21e0614d-26d7-4ec9-8809-ffb8dd02e291",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for Problem"
- }
- ],
- "text": "Encounter for Problem"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-25T03:46:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "88805009",
- "display": "Chronic congestive heart failure (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:578fdcde-a1e4-407a-8259-2856ec3324b8",
- "resource": {
- "resourceType": "Observation",
- "id": "578fdcde-a1e4-407a-8259-2856ec3324b8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 72.74434441554607,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a5f2a33c-ccc2-40ad-8fdc-49bd85065373",
- "resource": {
- "resourceType": "Observation",
- "id": "a5f2a33c-ccc2-40ad-8fdc-49bd85065373",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 7.843444188662559,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1de32352-3850-4fe3-be45-0ee1db23f547",
- "resource": {
- "resourceType": "Observation",
- "id": "1de32352-3850-4fe3-be45-0ee1db23f547",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.610480484457049,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e574c745-2109-4fdf-9df9-1cc263d748c9",
- "resource": {
- "resourceType": "Observation",
- "id": "e574c745-2109-4fdf-9df9-1cc263d748c9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 9.002498266729676,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:da4bb1ed-d3fe-462f-9454-06eb495d893e",
- "resource": {
- "resourceType": "Observation",
- "id": "da4bb1ed-d3fe-462f-9454-06eb495d893e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 143.5997541332141,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:dd516f49-932d-4f8b-93a0-741637829ba1",
- "resource": {
- "resourceType": "Observation",
- "id": "dd516f49-932d-4f8b-93a0-741637829ba1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 5.067121492419682,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4bf44d59-3f2f-456a-a007-bda65327678c",
- "resource": {
- "resourceType": "Observation",
- "id": "4bf44d59-3f2f-456a-a007-bda65327678c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 101.94138525329394,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ae0ae486-f7c3-4108-9d7b-c2b9ef42cf0d",
- "resource": {
- "resourceType": "Observation",
- "id": "ae0ae486-f7c3-4108-9d7b-c2b9ef42cf0d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 20.62924331064677,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c1ad7046-5da4-4e2d-b208-4aee8f7999a7",
- "resource": {
- "resourceType": "Observation",
- "id": "c1ad7046-5da4-4e2d-b208-4aee8f7999a7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33914-3",
- "display": "Glomerular filtration rate/​1.73 sq M.predicted"
- }
- ],
- "text": "Glomerular filtration rate/​1.73 sq M.predicted"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 15.313614576372311,
- "unit": "mL/min",
- "system": "http://unitsofmeasure.org",
- "code": "mL/min"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:eed21b69-be20-4057-b559-f31d59c79237",
- "resource": {
- "resourceType": "Observation",
- "id": "eed21b69-be20-4057-b559-f31d59c79237",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2885-2",
- "display": "Protein [Mass/​volume] in Serum or Plasma"
- }
- ],
- "text": "Protein [Mass/​volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 75.99433890770221,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d9f07f48-87cf-4bad-8661-66e8b161e237",
- "resource": {
- "resourceType": "Observation",
- "id": "d9f07f48-87cf-4bad-8661-66e8b161e237",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1751-7",
- "display": "Albumin [Mass/​volume] in Serum or Plasma"
- }
- ],
- "text": "Albumin [Mass/​volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 3.8787535807627087,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f2bf0f5d-62de-4bd7-8078-dddc1d028aa7",
- "resource": {
- "resourceType": "Observation",
- "id": "f2bf0f5d-62de-4bd7-8078-dddc1d028aa7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "10834-0",
- "display": "Globulin [Mass/​volume] in Serum by calculation"
- }
- ],
- "text": "Globulin [Mass/​volume] in Serum by calculation"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 2.7135238005700875,
- "unit": "g/L",
- "system": "http://unitsofmeasure.org",
- "code": "g/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f1b222c4-3fa8-40e1-8f76-fd37c4868bf2",
- "resource": {
- "resourceType": "Observation",
- "id": "f1b222c4-3fa8-40e1-8f76-fd37c4868bf2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1975-2",
- "display": "Bilirubin.total [Mass/​volume] in Serum or Plasma"
- }
- ],
- "text": "Bilirubin.total [Mass/​volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.5590041358494067,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:abef2362-2de8-49ac-aee1-1299dee3d80e",
- "resource": {
- "resourceType": "Observation",
- "id": "abef2362-2de8-49ac-aee1-1299dee3d80e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6768-6",
- "display": "Alkaline phosphatase [Enzymatic activity/​volume] in Serum or Plasma"
- }
- ],
- "text": "Alkaline phosphatase [Enzymatic activity/​volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 84.05100058377064,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fa907a24-1901-4ed8-8f59-7d87f6f03956",
- "resource": {
- "resourceType": "Observation",
- "id": "fa907a24-1901-4ed8-8f59-7d87f6f03956",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1742-6",
- "display": "Alanine aminotransferase [Enzymatic activity/​volume] in Serum or Plasma"
- }
- ],
- "text": "Alanine aminotransferase [Enzymatic activity/​volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 43.63594913049916,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a9173bd6-ff53-48af-bc9a-787bcabd43b4",
- "resource": {
- "resourceType": "Observation",
- "id": "a9173bd6-ff53-48af-bc9a-787bcabd43b4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "1920-8",
- "display": "Aspartate aminotransferase [Enzymatic activity/​volume] in Serum or Plasma"
- }
- ],
- "text": "Aspartate aminotransferase [Enzymatic activity/​volume] in Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 26.085679056969486,
- "unit": "U/L",
- "system": "http://unitsofmeasure.org",
- "code": "U/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e1e7edf4-8644-4504-b24c-6f6568dc4817",
- "resource": {
- "resourceType": "Procedure",
- "id": "e1e7edf4-8644-4504-b24c-6f6568dc4817",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399208008",
- "display": "Plain chest X-ray (procedure)"
- }
- ],
- "text": "Plain chest X-ray (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "performedPeriod": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-25T02:46:14-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:3ff9bfe2-0c18-47f8-a782-398994f5fca9",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "3ff9bfe2-0c18-47f8-a782-398994f5fca9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "24323-8",
- "display": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- }
- ],
- "text": "Comprehensive metabolic 2000 panel - Serum or Plasma"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:578fdcde-a1e4-407a-8259-2856ec3324b8",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:a5f2a33c-ccc2-40ad-8fdc-49bd85065373",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:1de32352-3850-4fe3-be45-0ee1db23f547",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:e574c745-2109-4fdf-9df9-1cc263d748c9",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:da4bb1ed-d3fe-462f-9454-06eb495d893e",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:dd516f49-932d-4f8b-93a0-741637829ba1",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:4bf44d59-3f2f-456a-a007-bda65327678c",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:ae0ae486-f7c3-4108-9d7b-c2b9ef42cf0d",
- "display": "Carbon Dioxide"
- },
- {
- "reference": "urn:uuid:c1ad7046-5da4-4e2d-b208-4aee8f7999a7",
- "display": "Glomerular filtration rate/​1.73 sq M.predicted"
- },
- {
- "reference": "urn:uuid:eed21b69-be20-4057-b559-f31d59c79237",
- "display": "Protein [Mass/​volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:d9f07f48-87cf-4bad-8661-66e8b161e237",
- "display": "Albumin [Mass/​volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:f2bf0f5d-62de-4bd7-8078-dddc1d028aa7",
- "display": "Globulin [Mass/​volume] in Serum by calculation"
- },
- {
- "reference": "urn:uuid:f1b222c4-3fa8-40e1-8f76-fd37c4868bf2",
- "display": "Bilirubin.total [Mass/​volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:abef2362-2de8-49ac-aee1-1299dee3d80e",
- "display": "Alkaline phosphatase [Enzymatic activity/​volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:fa907a24-1901-4ed8-8f59-7d87f6f03956",
- "display": "Alanine aminotransferase [Enzymatic activity/​volume] in Serum or Plasma"
- },
- {
- "reference": "urn:uuid:a9173bd6-ff53-48af-bc9a-787bcabd43b4",
- "display": "Aspartate aminotransferase [Enzymatic activity/​volume] in Serum or Plasma"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:1f7cd3d9-89e9-445c-b059-a33a31a63b21",
- "resource": {
- "resourceType": "ImagingStudy",
- "id": "1f7cd3d9-89e9-445c-b059-a33a31a63b21",
- "identifier": [
- {
- "use": "official",
- "system": "urn:ietf:rfc:3986",
- "value": "urn:oid:1.2.840.99999999.28647806.1568644950259"
- }
- ],
- "status": "available",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- },
- "started": "2016-12-25T02:16:14-05:00",
- "numberOfSeries": 1,
- "numberOfInstances": 1,
- "series": [
- {
- "uid": "1.2.840.99999999.1.26255957.1568644950259",
- "number": 1,
- "modality": {
- "system": "http://dicom.nema.org/resources/ontology/DCM",
- "code": "CR",
- "display": "Computed Radiography"
- },
- "numberOfInstances": 1,
- "bodySite": {
- "system": "http://snomed.info/sct",
- "code": "51185008",
- "display": "Thoracic structure (body structure)"
- },
- "started": "2016-12-25T02:16:14-05:00",
- "instance": [
- {
- "uid": "1.2.840.99999999.1.1.97616878.1568644950438",
- "sopClass": {
- "system": "urn:ietf:rfc:3986",
- "code": "1.2.840.10008.5.1.4.1.1.1.1"
- },
- "number": 1,
- "title": "Title of this image"
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "ImagingStudy"
- }
- },
- {
- "fullUrl": "urn:uuid:df8c9196-c70f-4b30-b1b0-d93c9c870f28",
- "resource": {
- "resourceType": "Claim",
- "id": "df8c9196-c70f-4b30-b1b0-d93c9c870f28",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-25T03:46:14-05:00"
- },
- "created": "2016-12-25T03:46:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:e1e7edf4-8644-4504-b24c-6f6568dc4817"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for Problem"
- }
- ],
- "text": "Encounter for Problem"
- },
- "encounter": [
- {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399208008",
- "display": "Plain chest X-ray (procedure)"
- }
- ],
- "text": "Plain chest X-ray (procedure)"
- },
- "net": {
- "value": 11378.57,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:2d37300d-445a-42c9-ad0d-b301d21b2848",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "2d37300d-445a-42c9-ad0d-b301d21b2848",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "df8c9196-c70f-4b30-b1b0-d93c9c870f28"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-12-25T03:46:14-05:00",
- "end": "2017-12-25T03:46:14-05:00"
- },
- "created": "2016-12-25T03:46:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:df8c9196-c70f-4b30-b1b0-d93c9c870f28"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185347001",
- "display": "Encounter for Problem"
- }
- ],
- "text": "Encounter for Problem"
- },
- "servicedPeriod": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-25T03:46:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:21e0614d-26d7-4ec9-8809-ffb8dd02e291"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399208008",
- "display": "Plain chest X-ray (procedure)"
- }
- ],
- "text": "Plain chest X-ray (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-25T03:46:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 11378.57,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2275.714,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 9102.856,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 11378.57,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 11378.57,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 9102.856,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994",
- "resource": {
- "resourceType": "Encounter",
- "id": "5483c87c-99c8-4a8f-af63-d638a72b7994",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "IMP"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308540004",
- "display": "Inpatient stay (finding)"
- }
- ],
- "text": "Inpatient stay (finding)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- }
- ],
- "period": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-26T02:16:14-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "88805009",
- "display": "Chronic congestive heart failure (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:44f18813-ae3d-4d04-9a8e-74eb1f4bdc4c",
- "resource": {
- "resourceType": "Observation",
- "id": "44f18813-ae3d-4d04-9a8e-74eb1f4bdc4c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2339-0",
- "display": "Glucose"
- }
- ],
- "text": "Glucose"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 72.74434441554607,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f35e956a-4ba0-4ab9-b5f6-e709a0243461",
- "resource": {
- "resourceType": "Observation",
- "id": "f35e956a-4ba0-4ab9-b5f6-e709a0243461",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6299-2",
- "display": "Urea Nitrogen"
- }
- ],
- "text": "Urea Nitrogen"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 7.843444188662559,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:24accce4-1af2-46a5-9e2f-94dc630dccc8",
- "resource": {
- "resourceType": "Observation",
- "id": "24accce4-1af2-46a5-9e2f-94dc630dccc8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "38483-4",
- "display": "Creatinine"
- }
- ],
- "text": "Creatinine"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 0.610480484457049,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c4c5e451-1f00-4ed1-bb27-e51b0f8b2035",
- "resource": {
- "resourceType": "Observation",
- "id": "c4c5e451-1f00-4ed1-bb27-e51b0f8b2035",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "49765-1",
- "display": "Calcium"
- }
- ],
- "text": "Calcium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 9.002498266729676,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f80ec9f4-b005-4f7b-9907-1571a3720091",
- "resource": {
- "resourceType": "Observation",
- "id": "f80ec9f4-b005-4f7b-9907-1571a3720091",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2947-0",
- "display": "Sodium"
- }
- ],
- "text": "Sodium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 143.5997541332141,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:605a759e-ca7f-4bad-8ee6-4d9228e492f1",
- "resource": {
- "resourceType": "Observation",
- "id": "605a759e-ca7f-4bad-8ee6-4d9228e492f1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6298-4",
- "display": "Potassium"
- }
- ],
- "text": "Potassium"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 5.067121492419682,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e4eff101-6eca-43f2-a76e-18bb862a3c42",
- "resource": {
- "resourceType": "Observation",
- "id": "e4eff101-6eca-43f2-a76e-18bb862a3c42",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2069-3",
- "display": "Chloride"
- }
- ],
- "text": "Chloride"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 101.94138525329394,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4b3ff329-c3bf-4e20-ae51-d1065dc6db3a",
- "resource": {
- "resourceType": "Observation",
- "id": "4b3ff329-c3bf-4e20-ae51-d1065dc6db3a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "20565-8",
- "display": "Carbon Dioxide"
- }
- ],
- "text": "Carbon Dioxide"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "valueQuantity": {
- "value": 20.62924331064677,
- "unit": "mmol/L",
- "system": "http://unitsofmeasure.org",
- "code": "mmol/L"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:acdd9f4f-6f85-408b-ae01-530eff26107f",
- "resource": {
- "resourceType": "Procedure",
- "id": "acdd9f4f-6f85-408b-ae01-530eff26107f",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "433236007",
- "display": "Transthoracic echocardiography"
- }
- ],
- "text": "Transthoracic echocardiography"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "performedPeriod": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-25T02:46:14-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:3dc58326-caf6-4971-82e1-5f4358d0aae0",
- "resource": {
- "resourceType": "Procedure",
- "id": "3dc58326-caf6-4971-82e1-5f4358d0aae0",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399208008",
- "display": "Plain chest X-ray"
- }
- ],
- "text": "Plain chest X-ray"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "performedPeriod": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-25T02:46:14-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:9d6baf23-2b67-40d2-9765-7a581614f297",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "9d6baf23-2b67-40d2-9765-7a581614f297",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "1719286",
- "display": "10 ML Furosemide 10 MG/ML Injection"
- }
- ],
- "text": "10 ML Furosemide 10 MG/ML Injection"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "authoredOn": "2016-12-25T02:16:14-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:1fd8720f-3887-4e8f-b007-224d68cf0ab1"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:311b3855-ae44-47ef-bd32-e0ac739fd24f",
- "resource": {
- "resourceType": "Claim",
- "id": "311b3855-ae44-47ef-bd32-e0ac739fd24f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-26T02:16:14-05:00"
- },
- "created": "2016-12-26T02:16:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:9d6baf23-2b67-40d2-9765-7a581614f297"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308540004",
- "display": "Inpatient stay (finding)"
- }
- ],
- "text": "Inpatient stay (finding)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e9fa6496-f01a-4002-ad07-05abd91306bd",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "e9fa6496-f01a-4002-ad07-05abd91306bd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "51990-0",
- "display": "Basic Metabolic Panel"
- }
- ],
- "text": "Basic Metabolic Panel"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "effectiveDateTime": "2016-12-25T02:16:14-05:00",
- "issued": "2016-12-25T02:16:14.697-05:00",
- "result": [
- {
- "reference": "urn:uuid:44f18813-ae3d-4d04-9a8e-74eb1f4bdc4c",
- "display": "Glucose"
- },
- {
- "reference": "urn:uuid:f35e956a-4ba0-4ab9-b5f6-e709a0243461",
- "display": "Urea Nitrogen"
- },
- {
- "reference": "urn:uuid:24accce4-1af2-46a5-9e2f-94dc630dccc8",
- "display": "Creatinine"
- },
- {
- "reference": "urn:uuid:c4c5e451-1f00-4ed1-bb27-e51b0f8b2035",
- "display": "Calcium"
- },
- {
- "reference": "urn:uuid:f80ec9f4-b005-4f7b-9907-1571a3720091",
- "display": "Sodium"
- },
- {
- "reference": "urn:uuid:605a759e-ca7f-4bad-8ee6-4d9228e492f1",
- "display": "Potassium"
- },
- {
- "reference": "urn:uuid:e4eff101-6eca-43f2-a76e-18bb862a3c42",
- "display": "Chloride"
- },
- {
- "reference": "urn:uuid:4b3ff329-c3bf-4e20-ae51-d1065dc6db3a",
- "display": "Carbon Dioxide"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:e2a467ff-7b54-4116-97c6-efad8932ba05",
- "resource": {
- "resourceType": "CareTeam",
- "id": "e2a467ff-7b54-4116-97c6-efad8932ba05",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "period": {
- "start": "2016-12-25T02:16:14-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Mr. Jules135 Gutmann970"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e",
- "display": "Dr. Renato359 Jenkins714"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:74f64793-1066-4eb5-89de-502acf55170a",
- "resource": {
- "resourceType": "Goal",
- "id": "74f64793-1066-4eb5-89de-502acf55170a",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "improved systolic function"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:c1134cf6-3253-4c9e-9424-1e5128c7f72e",
- "resource": {
- "resourceType": "Goal",
- "id": "c1134cf6-3253-4c9e-9424-1e5128c7f72e",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "improved diastolic function"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:4d9c9a06-bceb-4caf-bedb-57a8d005285c",
- "resource": {
- "resourceType": "Goal",
- "id": "4d9c9a06-bceb-4caf-bedb-57a8d005285c",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "oxygen saturation in arterial blood by pulse oximetry > 85"
- },
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:941359c4-61db-4732-afec-3ce00cb92440",
- "resource": {
- "resourceType": "CarePlan",
- "id": "941359c4-61db-4732-afec-3ce00cb92440",
- "text": {
- "status": "generated",
- "div": "Care Plan for Inpatient care plan (record artifact).
Activities:
- Inpatient care plan (record artifact)
- Inpatient care plan (record artifact)
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "736353004",
- "display": "Inpatient care plan (record artifact)"
- }
- ],
- "text": "Inpatient care plan (record artifact)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "period": {
- "start": "2016-12-25T02:16:14-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:e2a467ff-7b54-4116-97c6-efad8932ba05"
- }
- ],
- "goal": [
- {
- "reference": "urn:uuid:74f64793-1066-4eb5-89de-502acf55170a"
- },
- {
- "reference": "urn:uuid:c1134cf6-3253-4c9e-9424-1e5128c7f72e"
- },
- {
- "reference": "urn:uuid:4d9c9a06-bceb-4caf-bedb-57a8d005285c"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "385715006",
- "display": "Cardiac care (regime/therapy)"
- }
- ],
- "text": "Cardiac care (regime/therapy)"
- },
- "status": "in-progress",
- "location": {
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "386619000",
- "display": "Low sodium diet (finding)"
- }
- ],
- "text": "Low sodium diet (finding)"
- },
- "status": "in-progress",
- "location": {
- "display": "HALLMARK HEALTH SYSTEM"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:4dac5498-eafb-48e0-b875-5fa4027b8496",
- "resource": {
- "resourceType": "ImagingStudy",
- "id": "4dac5498-eafb-48e0-b875-5fa4027b8496",
- "identifier": [
- {
- "use": "official",
- "system": "urn:ietf:rfc:3986",
- "value": "urn:oid:1.2.840.99999999.91191922.1568644950273"
- }
- ],
- "status": "available",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "started": "2016-12-25T02:16:14-05:00",
- "numberOfSeries": 1,
- "numberOfInstances": 1,
- "series": [
- {
- "uid": "1.2.840.99999999.1.35756198.1568644950273",
- "number": 1,
- "modality": {
- "system": "http://dicom.nema.org/resources/ontology/DCM",
- "code": "US",
- "display": "Ultrasound"
- },
- "numberOfInstances": 1,
- "bodySite": {
- "system": "http://snomed.info/sct",
- "code": "261179002",
- "display": "Thoracic"
- },
- "started": "2016-12-25T02:16:14-05:00",
- "instance": [
- {
- "uid": "1.2.840.99999999.1.1.60800127.1568644950438",
- "sopClass": {
- "system": "urn:ietf:rfc:3986",
- "code": "1.2.840.10008.5.1.4.1.1.3.1"
- },
- "number": 1,
- "title": "Transthoracic echocardiography"
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "ImagingStudy"
- }
- },
- {
- "fullUrl": "urn:uuid:a15ef845-5a9a-46b7-9a71-92f4dfc18bd8",
- "resource": {
- "resourceType": "ImagingStudy",
- "id": "a15ef845-5a9a-46b7-9a71-92f4dfc18bd8",
- "identifier": [
- {
- "use": "official",
- "system": "urn:ietf:rfc:3986",
- "value": "urn:oid:1.2.840.99999999.92642942.1568644950273"
- }
- ],
- "status": "available",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "encounter": {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- },
- "started": "2016-12-25T02:16:14-05:00",
- "numberOfSeries": 1,
- "numberOfInstances": 1,
- "series": [
- {
- "uid": "1.2.840.99999999.1.76461513.1568644950273",
- "number": 1,
- "modality": {
- "system": "http://dicom.nema.org/resources/ontology/DCM",
- "code": "DX",
- "display": "Digital Radiography"
- },
- "numberOfInstances": 1,
- "bodySite": {
- "system": "http://snomed.info/sct",
- "code": "51185008",
- "display": "Thoracic structure"
- },
- "started": "2016-12-25T02:16:14-05:00",
- "instance": [
- {
- "uid": "1.2.840.99999999.1.1.76367413.1568644950438",
- "sopClass": {
- "system": "urn:ietf:rfc:3986",
- "code": "1.2.840.10008.5.1.4.1.1.1.1"
- },
- "number": 1,
- "title": "Plain chest X-ray"
- }
- ]
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "ImagingStudy"
- }
- },
- {
- "fullUrl": "urn:uuid:16753cc0-161b-47cb-b0d8-29593011512d",
- "resource": {
- "resourceType": "Claim",
- "id": "16753cc0-161b-47cb-b0d8-29593011512d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2",
- "display": "Jules135 Gutmann970"
- },
- "billablePeriod": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-26T02:16:14-05:00"
- },
- "created": "2016-12-26T02:16:14-05:00",
- "provider": {
- "reference": "urn:uuid:d692e283-0833-3201-8e55-4f868a9c0736",
- "display": "HALLMARK HEALTH SYSTEM"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:acdd9f4f-6f85-408b-ae01-530eff26107f"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:3dc58326-caf6-4971-82e1-5f4358d0aae0"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308540004",
- "display": "Inpatient stay (finding)"
- }
- ],
- "text": "Inpatient stay (finding)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "433236007",
- "display": "Transthoracic echocardiography"
- }
- ],
- "text": "Transthoracic echocardiography"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399208008",
- "display": "Plain chest X-ray"
- }
- ],
- "text": "Plain chest X-ray"
- },
- "net": {
- "value": 6830.97,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:41c15ae1-85d0-42bb-be96-e01f1f75ad79",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "41c15ae1-85d0-42bb-be96-e01f1f75ad79",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Medicare"
- },
- "beneficiary": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "payor": [
- {
- "display": "Medicare"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "16753cc0-161b-47cb-b0d8-29593011512d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:7a42a3e6-4dfc-4d76-bec2-4854d1e7caa2"
- },
- "billablePeriod": {
- "start": "2016-12-26T02:16:14-05:00",
- "end": "2017-12-26T02:16:14-05:00"
- },
- "created": "2016-12-26T02:16:14-05:00",
- "insurer": {
- "display": "Medicare"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:16753cc0-161b-47cb-b0d8-29593011512d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000010e"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Medicare"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "308540004",
- "display": "Inpatient stay (finding)"
- }
- ],
- "text": "Inpatient stay (finding)"
- },
- "servicedPeriod": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-26T02:16:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:5483c87c-99c8-4a8f-af63-d638a72b7994"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "433236007",
- "display": "Transthoracic echocardiography"
- }
- ],
- "text": "Transthoracic echocardiography"
- },
- "servicedPeriod": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-26T02:16:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "399208008",
- "display": "Plain chest X-ray"
- }
- ],
- "text": "Plain chest X-ray"
- },
- "servicedPeriod": {
- "start": "2016-12-25T02:16:14-05:00",
- "end": "2016-12-26T02:16:14-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 6830.97,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1366.1940000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 5464.776000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6830.97,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 6830.97,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 5878.0960000000005,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- }
- ]
-}
diff --git a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Roselia779_Lind531_99285aac-e5e3-4f5b-857d-f67271c97304.json b/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Roselia779_Lind531_99285aac-e5e3-4f5b-857d-f67271c97304.json
deleted file mode 100644
index 6d286b92..00000000
--- a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Roselia779_Lind531_99285aac-e5e3-4f5b-857d-f67271c97304.json
+++ /dev/null
@@ -1,10881 +0,0 @@
-{
- "resourceType": "Bundle",
- "type": "transaction",
- "entry": [
- {
- "fullUrl": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "resource": {
- "resourceType": "Patient",
- "id": "508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "text": {
- "status": "generated",
- "div": "Generated by
Synthea.Version identifier: v2.4.0-404-ge7ce2295\n . Person seed: 2978214333338970539 Population seed: 0
"
- },
- "extension": [
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2054-5",
- "display": "Black or African American"
- }
- },
- {
- "url": "text",
- "valueString": "Black or African American"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
- }
- },
- {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
- "valueString": "Lenita591 Klein929"
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
- "valueCode": "F"
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
- "valueAddress": {
- "city": "New Bedford",
- "state": "Massachusetts",
- "country": "US"
- }
- },
- {
- "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
- "valueDecimal": 0.0
- },
- {
- "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
- "valueDecimal": 1.0
- }
- ],
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "99285aac-e5e3-4f5b-857d-f67271c97304"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "MR",
- "display": "Medical Record Number"
- }
- ],
- "text": "Medical Record Number"
- },
- "system": "http://hospital.smarthealthit.org",
- "value": "99285aac-e5e3-4f5b-857d-f67271c97304"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "SS",
- "display": "Social Security Number"
- }
- ],
- "text": "Social Security Number"
- },
- "system": "http://hl7.org/fhir/sid/us-ssn",
- "value": "999-62-8033"
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "Lind531",
- "given": [
- "Roselia779"
- ]
- }
- ],
- "telecom": [
- {
- "system": "phone",
- "value": "555-412-9390",
- "use": "home"
- }
- ],
- "gender": "female",
- "birthDate": "2017-12-02",
- "address": [
- {
- "extension": [
- {
- "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
- "extension": [
- {
- "url": "latitude",
- "valueDecimal": 42.320791335534174
- },
- {
- "url": "longitude",
- "valueDecimal": -71.74935945200963
- }
- ]
- }
- ],
- "line": [
- "455 Shanahan Route Suite 70"
- ],
- "city": "Worcester",
- "state": "Massachusetts",
- "postalCode": "01545",
- "country": "US"
- }
- ],
- "maritalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
- "code": "S",
- "display": "Never Married"
- }
- ],
- "text": "Never Married"
- },
- "multipleBirthBoolean": false,
- "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English"
- }
- ],
- "text": "English"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Patient"
- }
- },
- {
- "fullUrl": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "resource": {
- "resourceType": "Organization",
- "id": "395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "395a9f52-1f2d-35cd-8cfe-35e2771f8921"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "PCP248432",
- "telecom": [
- {
- "system": "phone",
- "value": "508-335-2452"
- }
- ],
- "address": [
- {
- "line": [
- "567 CENTRAL ST"
- ],
- "city": "BOYLSTON",
- "state": "MA",
- "postalCode": "01505-1523",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-0000000112ec",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "70380"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Frami345",
- "given": [
- "Nan75"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Nan75.Frami345@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "567 CENTRAL ST"
- ],
- "city": "BOYLSTON",
- "state": "MA",
- "postalCode": "01505-1523",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962",
- "resource": {
- "resourceType": "Encounter",
- "id": "6c558553-0445-4afb-bcbc-dd34e921b962",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec",
- "display": "Dr. Nan75 Frami345"
- }
- }
- ],
- "period": {
- "start": "2017-12-02T22:47:47-05:00",
- "end": "2017-12-02T23:02:47-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:67e5e98a-0977-4082-875c-9e9e1e9cf798",
- "resource": {
- "resourceType": "Observation",
- "id": "67e5e98a-0977-4082-875c-9e9e1e9cf798",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 53.17614904633725,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4a0b0c4a-d3fc-4351-bd55-8d5bf507114d",
- "resource": {
- "resourceType": "Observation",
- "id": "4a0b0c4a-d3fc-4351-bd55-8d5bf507114d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 3.8096527291264204,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:016fd634-7f56-4342-aeff-85676e2c64ba",
- "resource": {
- "resourceType": "Observation",
- "id": "016fd634-7f56-4342-aeff-85676e2c64ba",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 4.471409849862716,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:346f67a0-ef12-4c01-8e6e-f77ab977c452",
- "resource": {
- "resourceType": "Observation",
- "id": "346f67a0-ef12-4c01-8e6e-f77ab977c452",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "77606-2",
- "display": "Weight-for-length Per age and sex"
- }
- ],
- "text": "Weight-for-length Per age and sex"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 74.09624762359502,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f7a857b3-98de-480f-93cf-1bb50ab64539",
- "resource": {
- "resourceType": "Observation",
- "id": "f7a857b3-98de-480f-93cf-1bb50ab64539",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 79.68836493908172,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 118.01033815870487,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f1baea80-c325-4c98-91e2-59495c942a34",
- "resource": {
- "resourceType": "Observation",
- "id": "f1baea80-c325-4c98-91e2-59495c942a34",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 9.108619386995557,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:eb35d617-2754-4c28-a55e-3260fb91e708",
- "resource": {
- "resourceType": "Observation",
- "id": "eb35d617-2754-4c28-a55e-3260fb91e708",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 5.206558277135207,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:99c0d9c1-7b86-425f-a7cc-29e76152883d",
- "resource": {
- "resourceType": "Observation",
- "id": "99c0d9c1-7b86-425f-a7cc-29e76152883d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 14.43767687129117,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e085dd68-8f7a-4b4e-99eb-f07a6b3139c7",
- "resource": {
- "resourceType": "Observation",
- "id": "e085dd68-8f7a-4b4e-99eb-f07a6b3139c7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 41.74967511548617,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cd56e0e2-8258-479e-997b-cd47e203d529",
- "resource": {
- "resourceType": "Observation",
- "id": "cd56e0e2-8258-479e-997b-cd47e203d529",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 92.10971453357804,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a2d121b6-6cb6-406e-8e30-ad55eab9896f",
- "resource": {
- "resourceType": "Observation",
- "id": "a2d121b6-6cb6-406e-8e30-ad55eab9896f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 27.148147773160606,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ca34135f-b97e-4f2a-ab82-8281f9106dcd",
- "resource": {
- "resourceType": "Observation",
- "id": "ca34135f-b97e-4f2a-ab82-8281f9106dcd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 33.74905869793844,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5b28f295-42fb-46a7-a7e9-73c8f97fd9ce",
- "resource": {
- "resourceType": "Observation",
- "id": "5b28f295-42fb-46a7-a7e9-73c8f97fd9ce",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 41.35071729657899,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cf8cb10f-0b71-4584-8cb3-56f2f8950025",
- "resource": {
- "resourceType": "Observation",
- "id": "cf8cb10f-0b71-4584-8cb3-56f2f8950025",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 162.99543404215703,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:19bd61c0-b37b-414e-b1ea-f50724534ad1",
- "resource": {
- "resourceType": "Observation",
- "id": "19bd61c0-b37b-414e-b1ea-f50724534ad1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 280.5652900969508,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:53be9066-a814-4c89-bb42-60183ebb38bc",
- "resource": {
- "resourceType": "Observation",
- "id": "53be9066-a814-4c89-bb42-60183ebb38bc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 10.68038639159505,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a31a3102-ff77-4744-8dad-0cfc9e6964e6",
- "resource": {
- "resourceType": "Observation",
- "id": "a31a3102-ff77-4744-8dad-0cfc9e6964e6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cbf281e7-1aba-4df4-b138-0984000219c7",
- "resource": {
- "resourceType": "Immunization",
- "id": "cbf281e7-1aba-4df4-b138-0984000219c7",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "08",
- "display": "Hep B, adolescent or pediatric"
- }
- ],
- "text": "Hep B, adolescent or pediatric"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "occurrenceDateTime": "2017-12-02T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:d9e8c3f7-9180-45fb-a0ee-941cbda0fdc2",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "d9e8c3f7-9180-45fb-a0ee-941cbda0fdc2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- },
- "effectiveDateTime": "2017-12-02T22:47:47-05:00",
- "issued": "2017-12-02T22:47:47.359-05:00",
- "result": [
- {
- "reference": "urn:uuid:f1baea80-c325-4c98-91e2-59495c942a34",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:eb35d617-2754-4c28-a55e-3260fb91e708",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:99c0d9c1-7b86-425f-a7cc-29e76152883d",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:e085dd68-8f7a-4b4e-99eb-f07a6b3139c7",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:cd56e0e2-8258-479e-997b-cd47e203d529",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:a2d121b6-6cb6-406e-8e30-ad55eab9896f",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:ca34135f-b97e-4f2a-ab82-8281f9106dcd",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:5b28f295-42fb-46a7-a7e9-73c8f97fd9ce",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:cf8cb10f-0b71-4584-8cb3-56f2f8950025",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:19bd61c0-b37b-414e-b1ea-f50724534ad1",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:53be9066-a814-4c89-bb42-60183ebb38bc",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:1c9904ed-8eef-42b8-a4fa-792ebb9712b5",
- "resource": {
- "resourceType": "Claim",
- "id": "1c9904ed-8eef-42b8-a4fa-792ebb9712b5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "billablePeriod": {
- "start": "2017-12-02T22:47:47-05:00",
- "end": "2017-12-02T23:02:47-05:00"
- },
- "created": "2017-12-02T23:02:47-05:00",
- "provider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:cbf281e7-1aba-4df4-b138-0984000219c7"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "08",
- "display": "Hep B, adolescent or pediatric"
- }
- ],
- "text": "Hep B, adolescent or pediatric"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3a5fc60c-b0bc-4505-8fd7-19621f92a329",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3a5fc60c-b0bc-4505-8fd7-19621f92a329",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "1c9904ed-8eef-42b8-a4fa-792ebb9712b5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "billablePeriod": {
- "start": "2017-12-02T23:02:47-05:00",
- "end": "2018-12-02T23:02:47-05:00"
- },
- "created": "2017-12-02T23:02:47-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:1c9904ed-8eef-42b8-a4fa-792ebb9712b5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-12-02T22:47:47-05:00",
- "end": "2017-12-02T23:02:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:6c558553-0445-4afb-bcbc-dd34e921b962"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "08",
- "display": "Hep B, adolescent or pediatric"
- }
- ],
- "text": "Hep B, adolescent or pediatric"
- },
- "servicedPeriod": {
- "start": "2017-12-02T22:47:47-05:00",
- "end": "2017-12-02T23:02:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:aa1b293c-a658-4aa3-a5af-75134a3bc408",
- "resource": {
- "resourceType": "Encounter",
- "id": "aa1b293c-a658-4aa3-a5af-75134a3bc408",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec",
- "display": "Dr. Nan75 Frami345"
- }
- }
- ],
- "period": {
- "start": "2018-01-06T22:47:47-05:00",
- "end": "2018-01-06T23:02:47-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:36450ac9-11c7-4931-b830-203adb082898",
- "resource": {
- "resourceType": "Observation",
- "id": "36450ac9-11c7-4931-b830-203adb082898",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:aa1b293c-a658-4aa3-a5af-75134a3bc408"
- },
- "effectiveDateTime": "2018-01-06T22:47:47-05:00",
- "issued": "2018-01-06T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 56.74996899040576,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7500af68-4a03-481b-bea6-e250221be83f",
- "resource": {
- "resourceType": "Observation",
- "id": "7500af68-4a03-481b-bea6-e250221be83f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:aa1b293c-a658-4aa3-a5af-75134a3bc408"
- },
- "effectiveDateTime": "2018-01-06T22:47:47-05:00",
- "issued": "2018-01-06T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 1.7677977200541144,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:248c41de-c454-4673-9e4f-4d142ef42d56",
- "resource": {
- "resourceType": "Observation",
- "id": "248c41de-c454-4673-9e4f-4d142ef42d56",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:aa1b293c-a658-4aa3-a5af-75134a3bc408"
- },
- "effectiveDateTime": "2018-01-06T22:47:47-05:00",
- "issued": "2018-01-06T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 5.330952788755531,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:60e98197-7e7c-42dd-9630-fa8b0ef05a07",
- "resource": {
- "resourceType": "Observation",
- "id": "60e98197-7e7c-42dd-9630-fa8b0ef05a07",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "77606-2",
- "display": "Weight-for-length Per age and sex"
- }
- ],
- "text": "Weight-for-length Per age and sex"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:aa1b293c-a658-4aa3-a5af-75134a3bc408"
- },
- "effectiveDateTime": "2018-01-06T22:47:47-05:00",
- "issued": "2018-01-06T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 61.21892411058833,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f869b502-440a-46d5-8c23-0d88ac547d1f",
- "resource": {
- "resourceType": "Observation",
- "id": "f869b502-440a-46d5-8c23-0d88ac547d1f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:aa1b293c-a658-4aa3-a5af-75134a3bc408"
- },
- "effectiveDateTime": "2018-01-06T22:47:47-05:00",
- "issued": "2018-01-06T22:47:47.359-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 73.29533508453751,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 131.26470426613272,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d1f3b78e-ab39-4845-ac73-87d543eab0ee",
- "resource": {
- "resourceType": "Observation",
- "id": "d1f3b78e-ab39-4845-ac73-87d543eab0ee",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:aa1b293c-a658-4aa3-a5af-75134a3bc408"
- },
- "effectiveDateTime": "2018-01-06T22:47:47-05:00",
- "issued": "2018-01-06T22:47:47.359-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:09b5267b-dbd2-410a-9425-18dcb0eae4b9",
- "resource": {
- "resourceType": "Immunization",
- "id": "09b5267b-dbd2-410a-9425-18dcb0eae4b9",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "08",
- "display": "Hep B, adolescent or pediatric"
- }
- ],
- "text": "Hep B, adolescent or pediatric"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:aa1b293c-a658-4aa3-a5af-75134a3bc408"
- },
- "occurrenceDateTime": "2018-01-06T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:0dadf45e-6856-466b-aa33-63ecb0d10fcb",
- "resource": {
- "resourceType": "Claim",
- "id": "0dadf45e-6856-466b-aa33-63ecb0d10fcb",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "billablePeriod": {
- "start": "2018-01-06T22:47:47-05:00",
- "end": "2018-01-06T23:02:47-05:00"
- },
- "created": "2018-01-06T23:02:47-05:00",
- "provider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:09b5267b-dbd2-410a-9425-18dcb0eae4b9"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:aa1b293c-a658-4aa3-a5af-75134a3bc408"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "08",
- "display": "Hep B, adolescent or pediatric"
- }
- ],
- "text": "Hep B, adolescent or pediatric"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:28b9ddbe-0e82-4842-a525-885154ef0d5b",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "28b9ddbe-0e82-4842-a525-885154ef0d5b",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "0dadf45e-6856-466b-aa33-63ecb0d10fcb"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "billablePeriod": {
- "start": "2018-01-06T23:02:47-05:00",
- "end": "2019-01-06T23:02:47-05:00"
- },
- "created": "2018-01-06T23:02:47-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:0dadf45e-6856-466b-aa33-63ecb0d10fcb"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-01-06T22:47:47-05:00",
- "end": "2018-01-06T23:02:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:aa1b293c-a658-4aa3-a5af-75134a3bc408"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "08",
- "display": "Hep B, adolescent or pediatric"
- }
- ],
- "text": "Hep B, adolescent or pediatric"
- },
- "servicedPeriod": {
- "start": "2018-01-06T22:47:47-05:00",
- "end": "2018-01-06T23:02:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc",
- "resource": {
- "resourceType": "Encounter",
- "id": "7d6ee292-a32b-4897-a8b6-91967265c0fc",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec",
- "display": "Dr. Nan75 Frami345"
- }
- }
- ],
- "period": {
- "start": "2018-03-10T22:47:47-05:00",
- "end": "2018-03-10T23:02:47-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:34d02b3a-2147-4acd-a20e-6bf97b36910e",
- "resource": {
- "resourceType": "Observation",
- "id": "34d02b3a-2147-4acd-a20e-6bf97b36910e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- },
- "effectiveDateTime": "2018-03-10T22:47:47-05:00",
- "issued": "2018-03-10T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 61.942043201636125,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f5015c75-3f93-4d95-987c-166fe5033235",
- "resource": {
- "resourceType": "Observation",
- "id": "f5015c75-3f93-4d95-987c-166fe5033235",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- },
- "effectiveDateTime": "2018-03-10T22:47:47-05:00",
- "issued": "2018-03-10T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 0.23964714817919708,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9420cdcc-718e-4652-b814-ad28def3a7d5",
- "resource": {
- "resourceType": "Observation",
- "id": "9420cdcc-718e-4652-b814-ad28def3a7d5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- },
- "effectiveDateTime": "2018-03-10T22:47:47-05:00",
- "issued": "2018-03-10T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 6.835043722332854,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d05dcc5e-c2f2-4f31-9d83-2aa741ab6f03",
- "resource": {
- "resourceType": "Observation",
- "id": "d05dcc5e-c2f2-4f31-9d83-2aa741ab6f03",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "77606-2",
- "display": "Weight-for-length Per age and sex"
- }
- ],
- "text": "Weight-for-length Per age and sex"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- },
- "effectiveDateTime": "2018-03-10T22:47:47-05:00",
- "issued": "2018-03-10T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 73.17957098005034,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1a1a476c-2f94-4cc4-b467-4f5ebb1fc0cd",
- "resource": {
- "resourceType": "Observation",
- "id": "1a1a476c-2f94-4cc4-b467-4f5ebb1fc0cd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- },
- "effectiveDateTime": "2018-03-10T22:47:47-05:00",
- "issued": "2018-03-10T22:47:47.359-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 75.44135144785737,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 128.16826852599553,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:78814c97-c406-41f7-a724-a4d765c13326",
- "resource": {
- "resourceType": "Observation",
- "id": "78814c97-c406-41f7-a724-a4d765c13326",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- },
- "effectiveDateTime": "2018-03-10T22:47:47-05:00",
- "issued": "2018-03-10T22:47:47.359-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:86a4cbe8-8d34-415e-b11c-c60e1b7743da",
- "resource": {
- "resourceType": "Immunization",
- "id": "86a4cbe8-8d34-415e-b11c-c60e1b7743da",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "49",
- "display": "Hib (PRP-OMP)"
- }
- ],
- "text": "Hib (PRP-OMP)"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- },
- "occurrenceDateTime": "2018-03-10T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:831f80fd-b741-4b83-ac10-2dee68cc44d1",
- "resource": {
- "resourceType": "Immunization",
- "id": "831f80fd-b741-4b83-ac10-2dee68cc44d1",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "119",
- "display": "rotavirus, monovalent"
- }
- ],
- "text": "rotavirus, monovalent"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- },
- "occurrenceDateTime": "2018-03-10T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:34f96354-6fff-4903-9a3b-61d1b200c6fc",
- "resource": {
- "resourceType": "Immunization",
- "id": "34f96354-6fff-4903-9a3b-61d1b200c6fc",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "10",
- "display": "IPV"
- }
- ],
- "text": "IPV"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- },
- "occurrenceDateTime": "2018-03-10T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:c8ec072f-f73b-42f9-9a2b-f2f96dd48c50",
- "resource": {
- "resourceType": "Immunization",
- "id": "c8ec072f-f73b-42f9-9a2b-f2f96dd48c50",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- },
- "occurrenceDateTime": "2018-03-10T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:ab393bde-4812-4100-b680-2a60a843a599",
- "resource": {
- "resourceType": "Immunization",
- "id": "ab393bde-4812-4100-b680-2a60a843a599",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- },
- "occurrenceDateTime": "2018-03-10T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:873d015c-1468-40a1-a827-182db7c75a91",
- "resource": {
- "resourceType": "Claim",
- "id": "873d015c-1468-40a1-a827-182db7c75a91",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "billablePeriod": {
- "start": "2018-03-10T22:47:47-05:00",
- "end": "2018-03-10T23:02:47-05:00"
- },
- "created": "2018-03-10T23:02:47-05:00",
- "provider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:86a4cbe8-8d34-415e-b11c-c60e1b7743da"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:831f80fd-b741-4b83-ac10-2dee68cc44d1"
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:34f96354-6fff-4903-9a3b-61d1b200c6fc"
- }
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:c8ec072f-f73b-42f9-9a2b-f2f96dd48c50"
- }
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:ab393bde-4812-4100-b680-2a60a843a599"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "49",
- "display": "Hib (PRP-OMP)"
- }
- ],
- "text": "Hib (PRP-OMP)"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "119",
- "display": "rotavirus, monovalent"
- }
- ],
- "text": "rotavirus, monovalent"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "10",
- "display": "IPV"
- }
- ],
- "text": "IPV"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 6,
- "informationSequence": [
- 5
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:20ae7f69-53af-4da0-a813-e59a355f18ab",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "20ae7f69-53af-4da0-a813-e59a355f18ab",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "873d015c-1468-40a1-a827-182db7c75a91"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "billablePeriod": {
- "start": "2018-03-10T23:02:47-05:00",
- "end": "2019-03-10T23:02:47-04:00"
- },
- "created": "2018-03-10T23:02:47-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:873d015c-1468-40a1-a827-182db7c75a91"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-03-10T22:47:47-05:00",
- "end": "2018-03-10T23:02:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:7d6ee292-a32b-4897-a8b6-91967265c0fc"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "49",
- "display": "Hib (PRP-OMP)"
- }
- ],
- "text": "Hib (PRP-OMP)"
- },
- "servicedPeriod": {
- "start": "2018-03-10T22:47:47-05:00",
- "end": "2018-03-10T23:02:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "119",
- "display": "rotavirus, monovalent"
- }
- ],
- "text": "rotavirus, monovalent"
- },
- "servicedPeriod": {
- "start": "2018-03-10T22:47:47-05:00",
- "end": "2018-03-10T23:02:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "10",
- "display": "IPV"
- }
- ],
- "text": "IPV"
- },
- "servicedPeriod": {
- "start": "2018-03-10T22:47:47-05:00",
- "end": "2018-03-10T23:02:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "servicedPeriod": {
- "start": "2018-03-10T22:47:47-05:00",
- "end": "2018-03-10T23:02:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 6,
- "informationSequence": [
- 5
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "servicedPeriod": {
- "start": "2018-03-10T22:47:47-05:00",
- "end": "2018-03-10T23:02:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 562.08,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e",
- "resource": {
- "resourceType": "Encounter",
- "id": "d70e3361-6a56-43cb-a67f-f742c36bef8e",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec",
- "display": "Dr. Nan75 Frami345"
- }
- }
- ],
- "period": {
- "start": "2018-05-12T23:47:47-04:00",
- "end": "2018-05-13T00:02:47-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:9dc6f23a-a914-4c2b-afdf-128d18c5f123",
- "resource": {
- "resourceType": "Observation",
- "id": "9dc6f23a-a914-4c2b-afdf-128d18c5f123",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- },
- "effectiveDateTime": "2018-05-12T23:47:47-04:00",
- "issued": "2018-05-12T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 65.93795045962119,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ccc507ce-4094-4805-bc86-62f57f0ecb14",
- "resource": {
- "resourceType": "Observation",
- "id": "ccc507ce-4094-4805-bc86-62f57f0ecb14",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- },
- "effectiveDateTime": "2018-05-12T23:47:47-04:00",
- "issued": "2018-05-12T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 0.5398887330481141,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a47440a5-84d5-4504-ad7e-75c89cfb6102",
- "resource": {
- "resourceType": "Observation",
- "id": "a47440a5-84d5-4504-ad7e-75c89cfb6102",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- },
- "effectiveDateTime": "2018-05-12T23:47:47-04:00",
- "issued": "2018-05-12T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 8.094321736146458,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8306a61e-277f-4c56-960a-8b0989db02d8",
- "resource": {
- "resourceType": "Observation",
- "id": "8306a61e-277f-4c56-960a-8b0989db02d8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "77606-2",
- "display": "Weight-for-length Per age and sex"
- }
- ],
- "text": "Weight-for-length Per age and sex"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- },
- "effectiveDateTime": "2018-05-12T23:47:47-04:00",
- "issued": "2018-05-12T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 81.40502256369389,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cb099115-fe7d-431a-b744-7a5e2c529b67",
- "resource": {
- "resourceType": "Observation",
- "id": "cb099115-fe7d-431a-b744-7a5e2c529b67",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- },
- "effectiveDateTime": "2018-05-12T23:47:47-04:00",
- "issued": "2018-05-12T23:47:47.359-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 80.81624597734685,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 114.69933710085743,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ca3ccbf0-acca-4a4e-8653-63a0d0b22045",
- "resource": {
- "resourceType": "Observation",
- "id": "ca3ccbf0-acca-4a4e-8653-63a0d0b22045",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- },
- "effectiveDateTime": "2018-05-12T23:47:47-04:00",
- "issued": "2018-05-12T23:47:47.359-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9ea340b7-c73a-4022-a253-ce53979b897c",
- "resource": {
- "resourceType": "Immunization",
- "id": "9ea340b7-c73a-4022-a253-ce53979b897c",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "49",
- "display": "Hib (PRP-OMP)"
- }
- ],
- "text": "Hib (PRP-OMP)"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- },
- "occurrenceDateTime": "2018-05-12T23:47:47-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:7b76b656-3d49-4052-b836-d4be6e4d2a8f",
- "resource": {
- "resourceType": "Immunization",
- "id": "7b76b656-3d49-4052-b836-d4be6e4d2a8f",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "119",
- "display": "rotavirus, monovalent"
- }
- ],
- "text": "rotavirus, monovalent"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- },
- "occurrenceDateTime": "2018-05-12T23:47:47-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:843fc871-4d24-4e44-9ad9-b3fb185e36ce",
- "resource": {
- "resourceType": "Immunization",
- "id": "843fc871-4d24-4e44-9ad9-b3fb185e36ce",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "10",
- "display": "IPV"
- }
- ],
- "text": "IPV"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- },
- "occurrenceDateTime": "2018-05-12T23:47:47-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:dd29ab16-ac69-4274-8000-d745648122c7",
- "resource": {
- "resourceType": "Immunization",
- "id": "dd29ab16-ac69-4274-8000-d745648122c7",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- },
- "occurrenceDateTime": "2018-05-12T23:47:47-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:b7b3fc53-c903-49ad-91ee-6c95fd1d5aea",
- "resource": {
- "resourceType": "Immunization",
- "id": "b7b3fc53-c903-49ad-91ee-6c95fd1d5aea",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- },
- "occurrenceDateTime": "2018-05-12T23:47:47-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:35748b09-f1ca-4831-b672-93f6cdb7c6df",
- "resource": {
- "resourceType": "Claim",
- "id": "35748b09-f1ca-4831-b672-93f6cdb7c6df",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "billablePeriod": {
- "start": "2018-05-12T23:47:47-04:00",
- "end": "2018-05-13T00:02:47-04:00"
- },
- "created": "2018-05-13T00:02:47-04:00",
- "provider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:9ea340b7-c73a-4022-a253-ce53979b897c"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:7b76b656-3d49-4052-b836-d4be6e4d2a8f"
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:843fc871-4d24-4e44-9ad9-b3fb185e36ce"
- }
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:dd29ab16-ac69-4274-8000-d745648122c7"
- }
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:b7b3fc53-c903-49ad-91ee-6c95fd1d5aea"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "49",
- "display": "Hib (PRP-OMP)"
- }
- ],
- "text": "Hib (PRP-OMP)"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "119",
- "display": "rotavirus, monovalent"
- }
- ],
- "text": "rotavirus, monovalent"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "10",
- "display": "IPV"
- }
- ],
- "text": "IPV"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 6,
- "informationSequence": [
- 5
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3976ecc8-919d-4818-bfbc-feca0ce0d124",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3976ecc8-919d-4818-bfbc-feca0ce0d124",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "35748b09-f1ca-4831-b672-93f6cdb7c6df"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "billablePeriod": {
- "start": "2018-05-13T00:02:47-04:00",
- "end": "2019-05-13T00:02:47-04:00"
- },
- "created": "2018-05-13T00:02:47-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:35748b09-f1ca-4831-b672-93f6cdb7c6df"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-05-12T23:47:47-04:00",
- "end": "2018-05-13T00:02:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:d70e3361-6a56-43cb-a67f-f742c36bef8e"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "49",
- "display": "Hib (PRP-OMP)"
- }
- ],
- "text": "Hib (PRP-OMP)"
- },
- "servicedPeriod": {
- "start": "2018-05-12T23:47:47-04:00",
- "end": "2018-05-13T00:02:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "119",
- "display": "rotavirus, monovalent"
- }
- ],
- "text": "rotavirus, monovalent"
- },
- "servicedPeriod": {
- "start": "2018-05-12T23:47:47-04:00",
- "end": "2018-05-13T00:02:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "10",
- "display": "IPV"
- }
- ],
- "text": "IPV"
- },
- "servicedPeriod": {
- "start": "2018-05-12T23:47:47-04:00",
- "end": "2018-05-13T00:02:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "servicedPeriod": {
- "start": "2018-05-12T23:47:47-04:00",
- "end": "2018-05-13T00:02:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 6,
- "informationSequence": [
- 5
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "servicedPeriod": {
- "start": "2018-05-12T23:47:47-04:00",
- "end": "2018-05-13T00:02:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 562.08,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2",
- "resource": {
- "resourceType": "Encounter",
- "id": "8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec",
- "display": "Dr. Nan75 Frami345"
- }
- }
- ],
- "period": {
- "start": "2018-08-11T23:47:47-04:00",
- "end": "2018-08-12T00:17:47-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:c89277d9-5145-42f1-bbd3-3d8621e4a05d",
- "resource": {
- "resourceType": "Observation",
- "id": "c89277d9-5145-42f1-bbd3-3d8621e4a05d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "effectiveDateTime": "2018-08-11T23:47:47-04:00",
- "issued": "2018-08-11T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 70.81353564660579,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:84fc6769-911e-46e7-91ca-33a630e31df9",
- "resource": {
- "resourceType": "Observation",
- "id": "84fc6769-911e-46e7-91ca-33a630e31df9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "effectiveDateTime": "2018-08-11T23:47:47-04:00",
- "issued": "2018-08-11T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 2.5668159662588073,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8b67586a-5bf6-4c0f-ab6e-a9fc3545aa32",
- "resource": {
- "resourceType": "Observation",
- "id": "8b67586a-5bf6-4c0f-ab6e-a9fc3545aa32",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "effectiveDateTime": "2018-08-11T23:47:47-04:00",
- "issued": "2018-08-11T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 9.618441041446104,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e745fd11-16ea-4468-8cfe-fce911bcb3e6",
- "resource": {
- "resourceType": "Observation",
- "id": "e745fd11-16ea-4468-8cfe-fce911bcb3e6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "77606-2",
- "display": "Weight-for-length Per age and sex"
- }
- ],
- "text": "Weight-for-length Per age and sex"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "effectiveDateTime": "2018-08-11T23:47:47-04:00",
- "issued": "2018-08-11T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 87.80636721924691,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cb02e633-b0db-4ed0-91d1-ab7c3e407dfd",
- "resource": {
- "resourceType": "Observation",
- "id": "cb02e633-b0db-4ed0-91d1-ab7c3e407dfd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "effectiveDateTime": "2018-08-11T23:47:47-04:00",
- "issued": "2018-08-11T23:47:47.359-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 80.94349050168401,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 128.7267993694646,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fa178fb3-5f7d-41cd-9e78-6b18bdd1fa4d",
- "resource": {
- "resourceType": "Observation",
- "id": "fa178fb3-5f7d-41cd-9e78-6b18bdd1fa4d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "effectiveDateTime": "2018-08-11T23:47:47-04:00",
- "issued": "2018-08-11T23:47:47.359-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:027b23de-bc16-462e-93b9-610e39551f77",
- "resource": {
- "resourceType": "Procedure",
- "id": "027b23de-bc16-462e-93b9-610e39551f77",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "performedPeriod": {
- "start": "2018-08-11T23:47:47-04:00",
- "end": "2018-08-12T00:02:47-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:f8e7ab5f-a889-4991-9695-c623e1f57354",
- "resource": {
- "resourceType": "Immunization",
- "id": "f8e7ab5f-a889-4991-9695-c623e1f57354",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "10",
- "display": "IPV"
- }
- ],
- "text": "IPV"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "occurrenceDateTime": "2018-08-11T23:47:47-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:08582b4c-d761-44dd-9106-5604ad1b1e13",
- "resource": {
- "resourceType": "Immunization",
- "id": "08582b4c-d761-44dd-9106-5604ad1b1e13",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "occurrenceDateTime": "2018-08-11T23:47:47-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:a5abb42f-023e-4ae3-9c05-ca178b59fc12",
- "resource": {
- "resourceType": "Immunization",
- "id": "a5abb42f-023e-4ae3-9c05-ca178b59fc12",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "occurrenceDateTime": "2018-08-11T23:47:47-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:9718a2c4-94b5-42ef-882c-cb0b783866d7",
- "resource": {
- "resourceType": "Immunization",
- "id": "9718a2c4-94b5-42ef-882c-cb0b783866d7",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "occurrenceDateTime": "2018-08-11T23:47:47-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:9ded098a-d688-4915-a3b9-b6a18a45fa93",
- "resource": {
- "resourceType": "Immunization",
- "id": "9ded098a-d688-4915-a3b9-b6a18a45fa93",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "08",
- "display": "Hep B, adolescent or pediatric"
- }
- ],
- "text": "Hep B, adolescent or pediatric"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- },
- "occurrenceDateTime": "2018-08-11T23:47:47-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:32bcb9bf-5cce-474d-8d14-cb9971105a6c",
- "resource": {
- "resourceType": "Claim",
- "id": "32bcb9bf-5cce-474d-8d14-cb9971105a6c",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "billablePeriod": {
- "start": "2018-08-11T23:47:47-04:00",
- "end": "2018-08-12T00:17:47-04:00"
- },
- "created": "2018-08-12T00:17:47-04:00",
- "provider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:f8e7ab5f-a889-4991-9695-c623e1f57354"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:08582b4c-d761-44dd-9106-5604ad1b1e13"
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:a5abb42f-023e-4ae3-9c05-ca178b59fc12"
- }
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:9718a2c4-94b5-42ef-882c-cb0b783866d7"
- }
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:9ded098a-d688-4915-a3b9-b6a18a45fa93"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:027b23de-bc16-462e-93b9-610e39551f77"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "10",
- "display": "IPV"
- }
- ],
- "text": "IPV"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 6,
- "informationSequence": [
- 5
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "08",
- "display": "Hep B, adolescent or pediatric"
- }
- ],
- "text": "Hep B, adolescent or pediatric"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 7,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 650.16,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4feb4368-9eb8-44ec-bc53-0eb63df731d0",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "4feb4368-9eb8-44ec-bc53-0eb63df731d0",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "32bcb9bf-5cce-474d-8d14-cb9971105a6c"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "billablePeriod": {
- "start": "2018-08-12T00:17:47-04:00",
- "end": "2019-08-12T00:17:47-04:00"
- },
- "created": "2018-08-12T00:17:47-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:32bcb9bf-5cce-474d-8d14-cb9971105a6c"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-08-11T23:47:47-04:00",
- "end": "2018-08-12T00:17:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8b2f3e18-a3bd-4bc2-a8ca-d809ca43d0f2"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "10",
- "display": "IPV"
- }
- ],
- "text": "IPV"
- },
- "servicedPeriod": {
- "start": "2018-08-11T23:47:47-04:00",
- "end": "2018-08-12T00:17:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2018-08-11T23:47:47-04:00",
- "end": "2018-08-12T00:17:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "servicedPeriod": {
- "start": "2018-08-11T23:47:47-04:00",
- "end": "2018-08-12T00:17:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "servicedPeriod": {
- "start": "2018-08-11T23:47:47-04:00",
- "end": "2018-08-12T00:17:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 6,
- "informationSequence": [
- 5
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "08",
- "display": "Hep B, adolescent or pediatric"
- }
- ],
- "text": "Hep B, adolescent or pediatric"
- },
- "servicedPeriod": {
- "start": "2018-08-11T23:47:47-04:00",
- "end": "2018-08-12T00:17:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 7,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-08-11T23:47:47-04:00",
- "end": "2018-08-12T00:17:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 650.16,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 130.032,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 520.128,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 650.16,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 650.16,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 1082.208,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:062a6580-d1b4-4ee8-8cd1-bd49b5753830",
- "resource": {
- "resourceType": "Encounter",
- "id": "062a6580-d1b4-4ee8-8cd1-bd49b5753830",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec",
- "display": "Dr. Nan75 Frami345"
- }
- }
- ],
- "period": {
- "start": "2018-11-10T22:47:47-05:00",
- "end": "2018-11-10T23:02:47-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:e27ac5ab-2f99-48d7-888f-5bca38cc2030",
- "resource": {
- "resourceType": "Observation",
- "id": "e27ac5ab-2f99-48d7-888f-5bca38cc2030",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:062a6580-d1b4-4ee8-8cd1-bd49b5753830"
- },
- "effectiveDateTime": "2018-11-10T22:47:47-05:00",
- "issued": "2018-11-10T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 74.9031191296975,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c73df416-59c9-4f45-83b5-5f5bb13172bc",
- "resource": {
- "resourceType": "Observation",
- "id": "c73df416-59c9-4f45-83b5-5f5bb13172bc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:062a6580-d1b4-4ee8-8cd1-bd49b5753830"
- },
- "effectiveDateTime": "2018-11-10T22:47:47-05:00",
- "issued": "2018-11-10T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 0.020649020526954054,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e66920b2-e80c-4592-aa82-1b3e79b6f5e4",
- "resource": {
- "resourceType": "Observation",
- "id": "e66920b2-e80c-4592-aa82-1b3e79b6f5e4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:062a6580-d1b4-4ee8-8cd1-bd49b5753830"
- },
- "effectiveDateTime": "2018-11-10T22:47:47-05:00",
- "issued": "2018-11-10T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 10.81159876488563,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:11f4fb8f-de0c-4664-bf93-39723716eba7",
- "resource": {
- "resourceType": "Observation",
- "id": "11f4fb8f-de0c-4664-bf93-39723716eba7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "77606-2",
- "display": "Weight-for-length Per age and sex"
- }
- ],
- "text": "Weight-for-length Per age and sex"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:062a6580-d1b4-4ee8-8cd1-bd49b5753830"
- },
- "effectiveDateTime": "2018-11-10T22:47:47-05:00",
- "issued": "2018-11-10T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 91.58347894300375,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3b6e9ed6-5be5-4afb-b1db-9993f8d4a450",
- "resource": {
- "resourceType": "Observation",
- "id": "3b6e9ed6-5be5-4afb-b1db-9993f8d4a450",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:062a6580-d1b4-4ee8-8cd1-bd49b5753830"
- },
- "effectiveDateTime": "2018-11-10T22:47:47-05:00",
- "issued": "2018-11-10T22:47:47.359-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 78.71885404096008,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 120.62444565494606,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:aaeeb808-15c3-483e-92cd-44bdd1d4dc63",
- "resource": {
- "resourceType": "Observation",
- "id": "aaeeb808-15c3-483e-92cd-44bdd1d4dc63",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:062a6580-d1b4-4ee8-8cd1-bd49b5753830"
- },
- "effectiveDateTime": "2018-11-10T22:47:47-05:00",
- "issued": "2018-11-10T22:47:47.359-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8b282c0b-51b4-4280-a771-4210e389557a",
- "resource": {
- "resourceType": "Claim",
- "id": "8b282c0b-51b4-4280-a771-4210e389557a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "billablePeriod": {
- "start": "2018-11-10T22:47:47-05:00",
- "end": "2018-11-10T23:02:47-05:00"
- },
- "created": "2018-11-10T23:02:47-05:00",
- "provider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:062a6580-d1b4-4ee8-8cd1-bd49b5753830"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:6835c324-426d-4652-8981-db70530ee3d7",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "6835c324-426d-4652-8981-db70530ee3d7",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "8b282c0b-51b4-4280-a771-4210e389557a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "billablePeriod": {
- "start": "2018-11-10T23:02:47-05:00",
- "end": "2019-11-10T23:02:47-05:00"
- },
- "created": "2018-11-10T23:02:47-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:8b282c0b-51b4-4280-a771-4210e389557a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-11-10T22:47:47-05:00",
- "end": "2018-11-10T23:02:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:062a6580-d1b4-4ee8-8cd1-bd49b5753830"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3",
- "resource": {
- "resourceType": "Encounter",
- "id": "517a091c-90e8-45c2-acad-15ef5922b9e3",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec",
- "display": "Dr. Nan75 Frami345"
- }
- }
- ],
- "period": {
- "start": "2019-02-09T22:47:47-05:00",
- "end": "2019-02-09T23:17:47-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a88e13d3-7c75-4089-99e7-53a6838b9879",
- "resource": {
- "resourceType": "Observation",
- "id": "a88e13d3-7c75-4089-99e7-53a6838b9879",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "effectiveDateTime": "2019-02-09T22:47:47-05:00",
- "issued": "2019-02-09T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 78.49058445447957,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8055fc31-9ea0-4d59-91fe-c53e30053873",
- "resource": {
- "resourceType": "Observation",
- "id": "8055fc31-9ea0-4d59-91fe-c53e30053873",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "effectiveDateTime": "2019-02-09T22:47:47-05:00",
- "issued": "2019-02-09T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 3.792167858639157,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:55b402db-043f-41b6-8529-6efdd2c581c8",
- "resource": {
- "resourceType": "Observation",
- "id": "55b402db-043f-41b6-8529-6efdd2c581c8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "effectiveDateTime": "2019-02-09T22:47:47-05:00",
- "issued": "2019-02-09T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 11.770474053395352,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0b4374f4-ec75-40f4-9738-a537496f6b07",
- "resource": {
- "resourceType": "Observation",
- "id": "0b4374f4-ec75-40f4-9738-a537496f6b07",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "77606-2",
- "display": "Weight-for-length Per age and sex"
- }
- ],
- "text": "Weight-for-length Per age and sex"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "effectiveDateTime": "2019-02-09T22:47:47-05:00",
- "issued": "2019-02-09T22:47:47.359-05:00",
- "valueQuantity": {
- "value": 94.56666854791496,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:757c9c91-02ab-47bd-ac50-9aa1ab8e43e1",
- "resource": {
- "resourceType": "Observation",
- "id": "757c9c91-02ab-47bd-ac50-9aa1ab8e43e1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "effectiveDateTime": "2019-02-09T22:47:47-05:00",
- "issued": "2019-02-09T22:47:47.359-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 79.16277952219083,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 127.81288777987761,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:63b70ae3-f002-4e77-96c8-fd11e095f225",
- "resource": {
- "resourceType": "Observation",
- "id": "63b70ae3-f002-4e77-96c8-fd11e095f225",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "effectiveDateTime": "2019-02-09T22:47:47-05:00",
- "issued": "2019-02-09T22:47:47.359-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c3d91f51-4bad-4542-8db3-07dac08be56c",
- "resource": {
- "resourceType": "Procedure",
- "id": "c3d91f51-4bad-4542-8db3-07dac08be56c",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "performedPeriod": {
- "start": "2019-02-09T22:47:47-05:00",
- "end": "2019-02-09T23:02:47-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:382b72dd-1b86-44f7-88e5-93fc78ae2c8b",
- "resource": {
- "resourceType": "Immunization",
- "id": "382b72dd-1b86-44f7-88e5-93fc78ae2c8b",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "49",
- "display": "Hib (PRP-OMP)"
- }
- ],
- "text": "Hib (PRP-OMP)"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "occurrenceDateTime": "2019-02-09T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:6ceeb7a3-8d74-454f-a5b9-bdd2e70b593f",
- "resource": {
- "resourceType": "Immunization",
- "id": "6ceeb7a3-8d74-454f-a5b9-bdd2e70b593f",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "21",
- "display": "varicella"
- }
- ],
- "text": "varicella"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "occurrenceDateTime": "2019-02-09T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:c22c4b7f-8320-469a-901a-5fa090fc2a0a",
- "resource": {
- "resourceType": "Immunization",
- "id": "c22c4b7f-8320-469a-901a-5fa090fc2a0a",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "03",
- "display": "MMR"
- }
- ],
- "text": "MMR"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "occurrenceDateTime": "2019-02-09T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:1a52347f-d478-4c1c-a046-be58fd6ef1f8",
- "resource": {
- "resourceType": "Immunization",
- "id": "1a52347f-d478-4c1c-a046-be58fd6ef1f8",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "occurrenceDateTime": "2019-02-09T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:18b7b1ed-c734-4849-9b9a-700d66c4aff9",
- "resource": {
- "resourceType": "Immunization",
- "id": "18b7b1ed-c734-4849-9b9a-700d66c4aff9",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "83",
- "display": "Hep A, ped/adol, 2 dose"
- }
- ],
- "text": "Hep A, ped/adol, 2 dose"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- },
- "occurrenceDateTime": "2019-02-09T22:47:47-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:92b4a795-0800-4a00-827e-92bc7210fcc5",
- "resource": {
- "resourceType": "Claim",
- "id": "92b4a795-0800-4a00-827e-92bc7210fcc5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "billablePeriod": {
- "start": "2019-02-09T22:47:47-05:00",
- "end": "2019-02-09T23:17:47-05:00"
- },
- "created": "2019-02-09T23:17:47-05:00",
- "provider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:382b72dd-1b86-44f7-88e5-93fc78ae2c8b"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:6ceeb7a3-8d74-454f-a5b9-bdd2e70b593f"
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:c22c4b7f-8320-469a-901a-5fa090fc2a0a"
- }
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:1a52347f-d478-4c1c-a046-be58fd6ef1f8"
- }
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:18b7b1ed-c734-4849-9b9a-700d66c4aff9"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:c3d91f51-4bad-4542-8db3-07dac08be56c"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "49",
- "display": "Hib (PRP-OMP)"
- }
- ],
- "text": "Hib (PRP-OMP)"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "21",
- "display": "varicella"
- }
- ],
- "text": "varicella"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "03",
- "display": "MMR"
- }
- ],
- "text": "MMR"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 6,
- "informationSequence": [
- 5
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "83",
- "display": "Hep A, ped/adol, 2 dose"
- }
- ],
- "text": "Hep A, ped/adol, 2 dose"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 7,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 375.15,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b0052bac-9a6a-483c-a659-20125062c5b4",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "b0052bac-9a6a-483c-a659-20125062c5b4",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "92b4a795-0800-4a00-827e-92bc7210fcc5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "billablePeriod": {
- "start": "2019-02-09T23:17:47-05:00",
- "end": "2020-02-09T23:17:47-05:00"
- },
- "created": "2019-02-09T23:17:47-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:92b4a795-0800-4a00-827e-92bc7210fcc5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2019-02-09T22:47:47-05:00",
- "end": "2019-02-09T23:17:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:517a091c-90e8-45c2-acad-15ef5922b9e3"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "49",
- "display": "Hib (PRP-OMP)"
- }
- ],
- "text": "Hib (PRP-OMP)"
- },
- "servicedPeriod": {
- "start": "2019-02-09T22:47:47-05:00",
- "end": "2019-02-09T23:17:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "21",
- "display": "varicella"
- }
- ],
- "text": "varicella"
- },
- "servicedPeriod": {
- "start": "2019-02-09T22:47:47-05:00",
- "end": "2019-02-09T23:17:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "03",
- "display": "MMR"
- }
- ],
- "text": "MMR"
- },
- "servicedPeriod": {
- "start": "2019-02-09T22:47:47-05:00",
- "end": "2019-02-09T23:17:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "133",
- "display": "Pneumococcal conjugate PCV 13"
- }
- ],
- "text": "Pneumococcal conjugate PCV 13"
- },
- "servicedPeriod": {
- "start": "2019-02-09T22:47:47-05:00",
- "end": "2019-02-09T23:17:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 6,
- "informationSequence": [
- 5
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "83",
- "display": "Hep A, ped/adol, 2 dose"
- }
- ],
- "text": "Hep A, ped/adol, 2 dose"
- },
- "servicedPeriod": {
- "start": "2019-02-09T22:47:47-05:00",
- "end": "2019-02-09T23:17:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 7,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2019-02-09T22:47:47-05:00",
- "end": "2019-02-09T23:17:47-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 375.15,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 75.03,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 300.12,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 375.15,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 375.15,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 862.2,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:bc9bcaf8-07f4-415e-a0d5-2e14e257c37f",
- "resource": {
- "resourceType": "Encounter",
- "id": "bc9bcaf8-07f4-415e-a0d5-2e14e257c37f",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec",
- "display": "Dr. Nan75 Frami345"
- }
- }
- ],
- "period": {
- "start": "2019-05-11T23:47:47-04:00",
- "end": "2019-05-12T00:17:47-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a77d067d-ed4f-4819-8bf9-b6e89a66640f",
- "resource": {
- "resourceType": "Observation",
- "id": "a77d067d-ed4f-4819-8bf9-b6e89a66640f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:bc9bcaf8-07f4-415e-a0d5-2e14e257c37f"
- },
- "effectiveDateTime": "2019-05-11T23:47:47-04:00",
- "issued": "2019-05-11T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 81.7223116209221,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9f8149db-016d-49e8-aa53-0260c2b7ef35",
- "resource": {
- "resourceType": "Observation",
- "id": "9f8149db-016d-49e8-aa53-0260c2b7ef35",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:bc9bcaf8-07f4-415e-a0d5-2e14e257c37f"
- },
- "effectiveDateTime": "2019-05-11T23:47:47-04:00",
- "issued": "2019-05-11T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 0.2691089680629144,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9c9a821d-1f61-4f30-bcd2-83346afcab59",
- "resource": {
- "resourceType": "Observation",
- "id": "9c9a821d-1f61-4f30-bcd2-83346afcab59",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:bc9bcaf8-07f4-415e-a0d5-2e14e257c37f"
- },
- "effectiveDateTime": "2019-05-11T23:47:47-04:00",
- "issued": "2019-05-11T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 12.570187896208315,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:65212de0-1824-4784-b03a-658f6638e959",
- "resource": {
- "resourceType": "Observation",
- "id": "65212de0-1824-4784-b03a-658f6638e959",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "77606-2",
- "display": "Weight-for-length Per age and sex"
- }
- ],
- "text": "Weight-for-length Per age and sex"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:bc9bcaf8-07f4-415e-a0d5-2e14e257c37f"
- },
- "effectiveDateTime": "2019-05-11T23:47:47-04:00",
- "issued": "2019-05-11T23:47:47.359-04:00",
- "valueQuantity": {
- "value": 92.79662712816902,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:56bda61b-f699-4333-bfb1-4c61384f31d2",
- "resource": {
- "resourceType": "Observation",
- "id": "56bda61b-f699-4333-bfb1-4c61384f31d2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:bc9bcaf8-07f4-415e-a0d5-2e14e257c37f"
- },
- "effectiveDateTime": "2019-05-11T23:47:47-04:00",
- "issued": "2019-05-11T23:47:47.359-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 79.69598255443451,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 124.65884772863663,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d79b1f1d-d4b9-440d-91b3-550d02dd3e20",
- "resource": {
- "resourceType": "Observation",
- "id": "d79b1f1d-d4b9-440d-91b3-550d02dd3e20",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:bc9bcaf8-07f4-415e-a0d5-2e14e257c37f"
- },
- "effectiveDateTime": "2019-05-11T23:47:47-04:00",
- "issued": "2019-05-11T23:47:47.359-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:41350673-6c6a-43fb-887d-cbcb0e1bda7b",
- "resource": {
- "resourceType": "Procedure",
- "id": "41350673-6c6a-43fb-887d-cbcb0e1bda7b",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:bc9bcaf8-07f4-415e-a0d5-2e14e257c37f"
- },
- "performedPeriod": {
- "start": "2019-05-11T23:47:47-04:00",
- "end": "2019-05-12T00:02:47-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:89e5c7a7-3226-4245-897f-c424031bd4fc",
- "resource": {
- "resourceType": "Immunization",
- "id": "89e5c7a7-3226-4245-897f-c424031bd4fc",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "encounter": {
- "reference": "urn:uuid:bc9bcaf8-07f4-415e-a0d5-2e14e257c37f"
- },
- "occurrenceDateTime": "2019-05-11T23:47:47-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:f8c1a8bc-e43c-4130-a4ce-7130d5bf02c8",
- "resource": {
- "resourceType": "Claim",
- "id": "f8c1a8bc-e43c-4130-a4ce-7130d5bf02c8",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832",
- "display": "Roselia779 Lind531"
- },
- "billablePeriod": {
- "start": "2019-05-11T23:47:47-04:00",
- "end": "2019-05-12T00:17:47-04:00"
- },
- "created": "2019-05-12T00:17:47-04:00",
- "provider": {
- "reference": "urn:uuid:395a9f52-1f2d-35cd-8cfe-35e2771f8921",
- "display": "PCP248432"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:89e5c7a7-3226-4245-897f-c424031bd4fc"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:41350673-6c6a-43fb-887d-cbcb0e1bda7b"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:bc9bcaf8-07f4-415e-a0d5-2e14e257c37f"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 457.41,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:396f0cc6-1ffc-4fd5-9196-f941ec5720b4",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "396f0cc6-1ffc-4fd5-9196-f941ec5720b4",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f8c1a8bc-e43c-4130-a4ce-7130d5bf02c8"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:508d6dbb-7fbf-4aef-b077-eb3acc937832"
- },
- "billablePeriod": {
- "start": "2019-05-12T00:17:47-04:00",
- "end": "2020-05-12T00:17:47-04:00"
- },
- "created": "2019-05-12T00:17:47-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f8c1a8bc-e43c-4130-a4ce-7130d5bf02c8"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000112ec"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2019-05-11T23:47:47-04:00",
- "end": "2019-05-12T00:17:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:bc9bcaf8-07f4-415e-a0d5-2e14e257c37f"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "20",
- "display": "DTaP"
- }
- ],
- "text": "DTaP"
- },
- "servicedPeriod": {
- "start": "2019-05-11T23:47:47-04:00",
- "end": "2019-05-12T00:17:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2019-05-11T23:47:47-04:00",
- "end": "2019-05-12T00:17:47-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 457.41,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 91.48200000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 365.92800000000005,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 457.41,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 457.41,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 478.34400000000005,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- }
- ]
-}
diff --git a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Tania553_Harris789_545c2380-b77f-4919-ab5d-0f615f877250.json b/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Tania553_Harris789_545c2380-b77f-4919-ab5d-0f615f877250.json
deleted file mode 100644
index 4a115c9c..00000000
--- a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Tania553_Harris789_545c2380-b77f-4919-ab5d-0f615f877250.json
+++ /dev/null
@@ -1,16198 +0,0 @@
-{
- "resourceType": "Bundle",
- "type": "transaction",
- "entry": [
- {
- "fullUrl": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "resource": {
- "resourceType": "Patient",
- "id": "57959813-8cd2-4e3c-8970-e4364b74980a",
- "text": {
- "status": "generated",
- "div": "Generated by
Synthea.Version identifier: v2.4.0-404-ge7ce2295\n . Person seed: -6016242411370302863 Population seed: 0
"
- },
- "extension": [
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2106-3",
- "display": "White"
- }
- },
- {
- "url": "text",
- "valueString": "White"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
- }
- },
- {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
- "valueString": "Patrick786 Robel940"
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
- "valueCode": "F"
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
- "valueAddress": {
- "city": "Lowell",
- "state": "Massachusetts",
- "country": "US"
- }
- },
- {
- "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
- "valueDecimal": 0.012998260499375002
- },
- {
- "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
- "valueDecimal": 18.987001739500624
- }
- ],
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "545c2380-b77f-4919-ab5d-0f615f877250"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "MR",
- "display": "Medical Record Number"
- }
- ],
- "text": "Medical Record Number"
- },
- "system": "http://hospital.smarthealthit.org",
- "value": "545c2380-b77f-4919-ab5d-0f615f877250"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "SS",
- "display": "Social Security Number"
- }
- ],
- "text": "Social Security Number"
- },
- "system": "http://hl7.org/fhir/sid/us-ssn",
- "value": "999-80-3174"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "DL",
- "display": "Driver's License"
- }
- ],
- "text": "Driver's License"
- },
- "system": "urn:oid:2.16.840.1.113883.4.3.25",
- "value": "S99972064"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PPN",
- "display": "Passport Number"
- }
- ],
- "text": "Passport Number"
- },
- "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber",
- "value": "X49558432X"
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "Harris789",
- "given": [
- "Tania553"
- ],
- "prefix": [
- "Ms."
- ]
- }
- ],
- "telecom": [
- {
- "system": "phone",
- "value": "555-750-4688",
- "use": "home"
- }
- ],
- "gender": "female",
- "birthDate": "1999-06-12",
- "address": [
- {
- "extension": [
- {
- "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
- "extension": [
- {
- "url": "latitude",
- "valueDecimal": 42.83903673280652
- },
- {
- "url": "longitude",
- "valueDecimal": -71.07942713642242
- }
- ]
- }
- ],
- "line": [
- "584 Kuhlman Underpass"
- ],
- "city": "Haverhill",
- "state": "Massachusetts",
- "postalCode": "01830",
- "country": "US"
- }
- ],
- "maritalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
- "code": "S",
- "display": "Never Married"
- }
- ],
- "text": "Never Married"
- },
- "multipleBirthBoolean": false,
- "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English"
- }
- ],
- "text": "English"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Patient"
- }
- },
- {
- "fullUrl": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "resource": {
- "resourceType": "Organization",
- "id": "783421ae-905a-3082-ae86-cb958fffaa7c",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "783421ae-905a-3082-ae86-cb958fffaa7c"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "GEMINI PHYSICAL THERAPY LLC",
- "telecom": [
- {
- "system": "phone",
- "value": "978-372-3211"
- }
- ],
- "address": [
- {
- "line": [
- "679 S MAIN ST"
- ],
- "city": "HAVERHILL",
- "state": "MA",
- "postalCode": "01835-8721",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-0000000081ce",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "33230"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Lindgren255",
- "given": [
- "Jacalyn740"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Jacalyn740.Lindgren255@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "679 S MAIN ST"
- ],
- "city": "HAVERHILL",
- "state": "MA",
- "postalCode": "01835-8721",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b",
- "resource": {
- "resourceType": "Encounter",
- "id": "95bce670-c38a-4fde-92b3-4ea39f189f1b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "display": "Dr. Jacalyn740 Lindgren255"
- }
- }
- ],
- "period": {
- "start": "2010-06-26T23:35:42-04:00",
- "end": "2010-06-26T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:cd72a003-ffa9-44a2-9e9c-97004144f5d8",
- "resource": {
- "resourceType": "Observation",
- "id": "cd72a003-ffa9-44a2-9e9c-97004144f5d8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 132.05206138303643,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:574b0113-cb4c-4ef6-891a-e4c4dc92c823",
- "resource": {
- "resourceType": "Observation",
- "id": "574b0113-cb4c-4ef6-891a-e4c4dc92c823",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 3.070127918475897,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:71082dc8-7ba7-483f-8c6d-356a2eac263a",
- "resource": {
- "resourceType": "Observation",
- "id": "71082dc8-7ba7-483f-8c6d-356a2eac263a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 42.092743728168664,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:67aa0812-560c-45fa-87f7-c120f4c995a9",
- "resource": {
- "resourceType": "Observation",
- "id": "67aa0812-560c-45fa-87f7-c120f4c995a9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 24.13886606573649,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:adbdeb71-2015-4df8-87e9-3bcffc52ca67",
- "resource": {
- "resourceType": "Observation",
- "id": "adbdeb71-2015-4df8-87e9-3bcffc52ca67",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "59576-9",
- "display": "Body mass index (BMI) [Percentile] Per age and gender"
- }
- ],
- "text": "Body mass index (BMI) [Percentile] Per age and gender"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 94.56321927940333,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1bcc7609-7489-46dc-aed8-4e44d012d2c4",
- "resource": {
- "resourceType": "Observation",
- "id": "1bcc7609-7489-46dc-aed8-4e44d012d2c4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 85.17148371038968,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 121.62226051815269,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:02502e51-d280-40dc-8491-e47fa19f79a8",
- "resource": {
- "resourceType": "Observation",
- "id": "02502e51-d280-40dc-8491-e47fa19f79a8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 8.427002076208357,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c264b850-53be-4961-995e-0ed3b49777c6",
- "resource": {
- "resourceType": "Observation",
- "id": "c264b850-53be-4961-995e-0ed3b49777c6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 5.117161337318086,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2aefe0c1-024a-4625-9fff-82080d2034c8",
- "resource": {
- "resourceType": "Observation",
- "id": "2aefe0c1-024a-4625-9fff-82080d2034c8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 12.997177409006884,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0bca7f33-b7d4-41d5-bf77-195579b0a202",
- "resource": {
- "resourceType": "Observation",
- "id": "0bca7f33-b7d4-41d5-bf77-195579b0a202",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 48.02322889512404,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:141d142f-25e0-4ae0-945d-43aebd900410",
- "resource": {
- "resourceType": "Observation",
- "id": "141d142f-25e0-4ae0-945d-43aebd900410",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 88.93215593163453,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:de592e40-b3b8-4994-9e84-3365c824a682",
- "resource": {
- "resourceType": "Observation",
- "id": "de592e40-b3b8-4994-9e84-3365c824a682",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 27.734881037141538,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b0850dce-a2dd-42bc-873f-43e49f588c96",
- "resource": {
- "resourceType": "Observation",
- "id": "b0850dce-a2dd-42bc-873f-43e49f588c96",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 35.372602943673556,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a56cfdf0-520a-4cf4-9a61-41422e68ce0c",
- "resource": {
- "resourceType": "Observation",
- "id": "a56cfdf0-520a-4cf4-9a61-41422e68ce0c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 43.6677922863001,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:dce4734a-6d78-4f75-9ef5-5d4b012417b5",
- "resource": {
- "resourceType": "Observation",
- "id": "dce4734a-6d78-4f75-9ef5-5d4b012417b5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 328.9599910083864,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7f731a0b-8abc-413d-81a6-4feaa066cf52",
- "resource": {
- "resourceType": "Observation",
- "id": "7f731a0b-8abc-413d-81a6-4feaa066cf52",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 427.1270307825664,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:046b41eb-01cf-4dad-97a3-5d9cd59a42ca",
- "resource": {
- "resourceType": "Observation",
- "id": "046b41eb-01cf-4dad-97a3-5d9cd59a42ca",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 9.556835279724679,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:53b82284-2d55-4059-a7d7-f8df8917e44b",
- "resource": {
- "resourceType": "Observation",
- "id": "53b82284-2d55-4059-a7d7-f8df8917e44b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5c8018c0-45e0-4639-b76b-d3d174eea6f7",
- "resource": {
- "resourceType": "Immunization",
- "id": "5c8018c0-45e0-4639-b76b-d3d174eea6f7",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "115",
- "display": "Tdap"
- }
- ],
- "text": "Tdap"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "occurrenceDateTime": "2010-06-26T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:709c345b-8967-44ba-b352-556409b82a1c",
- "resource": {
- "resourceType": "Immunization",
- "id": "709c345b-8967-44ba-b352-556409b82a1c",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "occurrenceDateTime": "2010-06-26T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:ee66ff0b-8bc7-47a5-bf35-4a467071961d",
- "resource": {
- "resourceType": "Immunization",
- "id": "ee66ff0b-8bc7-47a5-bf35-4a467071961d",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "62",
- "display": "HPV, quadrivalent"
- }
- ],
- "text": "HPV, quadrivalent"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "occurrenceDateTime": "2010-06-26T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:b5bf3e2e-1458-4b60-ac5b-2137f4775226",
- "resource": {
- "resourceType": "Immunization",
- "id": "b5bf3e2e-1458-4b60-ac5b-2137f4775226",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "occurrenceDateTime": "2010-06-26T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:9c053a48-db4a-4674-962e-ae130296b4c4",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "9c053a48-db4a-4674-962e-ae130296b4c4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- },
- "effectiveDateTime": "2010-06-26T23:35:42-04:00",
- "issued": "2010-06-26T23:35:42.651-04:00",
- "result": [
- {
- "reference": "urn:uuid:02502e51-d280-40dc-8491-e47fa19f79a8",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:c264b850-53be-4961-995e-0ed3b49777c6",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:2aefe0c1-024a-4625-9fff-82080d2034c8",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:0bca7f33-b7d4-41d5-bf77-195579b0a202",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:141d142f-25e0-4ae0-945d-43aebd900410",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:de592e40-b3b8-4994-9e84-3365c824a682",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:b0850dce-a2dd-42bc-873f-43e49f588c96",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:a56cfdf0-520a-4cf4-9a61-41422e68ce0c",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:dce4734a-6d78-4f75-9ef5-5d4b012417b5",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:7f731a0b-8abc-413d-81a6-4feaa066cf52",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:046b41eb-01cf-4dad-97a3-5d9cd59a42ca",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:428703b2-fa9e-4e0b-abf3-617c5d08dfc4",
- "resource": {
- "resourceType": "Claim",
- "id": "428703b2-fa9e-4e0b-abf3-617c5d08dfc4",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2010-06-26T23:35:42-04:00",
- "end": "2010-06-26T23:50:42-04:00"
- },
- "created": "2010-06-26T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:5c8018c0-45e0-4639-b76b-d3d174eea6f7"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:709c345b-8967-44ba-b352-556409b82a1c"
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:ee66ff0b-8bc7-47a5-bf35-4a467071961d"
- }
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:b5bf3e2e-1458-4b60-ac5b-2137f4775226"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "115",
- "display": "Tdap"
- }
- ],
- "text": "Tdap"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "62",
- "display": "HPV, quadrivalent"
- }
- ],
- "text": "HPV, quadrivalent"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:bceb2142-e749-4cfd-a3a6-00c48c2b5fca",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "bceb2142-e749-4cfd-a3a6-00c48c2b5fca",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "428703b2-fa9e-4e0b-abf3-617c5d08dfc4"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2010-06-26T23:50:42-04:00",
- "end": "2011-06-26T23:50:42-04:00"
- },
- "created": "2010-06-26T23:50:42-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:428703b2-fa9e-4e0b-abf3-617c5d08dfc4"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-06-26T23:35:42-04:00",
- "end": "2010-06-26T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:95bce670-c38a-4fde-92b3-4ea39f189f1b"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "115",
- "display": "Tdap"
- }
- ],
- "text": "Tdap"
- },
- "servicedPeriod": {
- "start": "2010-06-26T23:35:42-04:00",
- "end": "2010-06-26T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2010-06-26T23:35:42-04:00",
- "end": "2010-06-26T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "informationSequence": [
- 3
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "62",
- "display": "HPV, quadrivalent"
- }
- ],
- "text": "HPV, quadrivalent"
- },
- "servicedPeriod": {
- "start": "2010-06-26T23:35:42-04:00",
- "end": "2010-06-26T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "informationSequence": [
- 4
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "servicedPeriod": {
- "start": "2010-06-26T23:35:42-04:00",
- "end": "2010-06-26T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 449.66400000000004,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8",
- "resource": {
- "resourceType": "Encounter",
- "id": "80fe5bb1-0038-417a-8cd1-b978ee1f58a8",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "display": "Dr. Jacalyn740 Lindgren255"
- }
- }
- ],
- "period": {
- "start": "2011-07-02T23:35:42-04:00",
- "end": "2011-07-02T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:78958aff-d44d-425f-b701-96e8a6dd5b04",
- "resource": {
- "resourceType": "Observation",
- "id": "78958aff-d44d-425f-b701-96e8a6dd5b04",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8"
- },
- "effectiveDateTime": "2011-07-02T23:35:42-04:00",
- "issued": "2011-07-02T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 138.85336561716676,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0ed8d756-5ec3-454c-9a22-63dc15cb7fef",
- "resource": {
- "resourceType": "Observation",
- "id": "0ed8d756-5ec3-454c-9a22-63dc15cb7fef",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8"
- },
- "effectiveDateTime": "2011-07-02T23:35:42-04:00",
- "issued": "2011-07-02T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 2.459666594450257,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cdd48d3d-8821-40ba-8a9c-6cd0ade01ee4",
- "resource": {
- "resourceType": "Observation",
- "id": "cdd48d3d-8821-40ba-8a9c-6cd0ade01ee4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8"
- },
- "effectiveDateTime": "2011-07-02T23:35:42-04:00",
- "issued": "2011-07-02T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 48.68824875004585,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f9a33b76-278d-475e-ac83-c90b596c3fb4",
- "resource": {
- "resourceType": "Observation",
- "id": "f9a33b76-278d-475e-ac83-c90b596c3fb4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8"
- },
- "effectiveDateTime": "2011-07-02T23:35:42-04:00",
- "issued": "2011-07-02T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 25.25290424727607,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:241f61f2-11c2-4919-ad33-0aec02d3fd03",
- "resource": {
- "resourceType": "Observation",
- "id": "241f61f2-11c2-4919-ad33-0aec02d3fd03",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "59576-9",
- "display": "Body mass index (BMI) [Percentile] Per age and gender"
- }
- ],
- "text": "Body mass index (BMI) [Percentile] Per age and gender"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8"
- },
- "effectiveDateTime": "2011-07-02T23:35:42-04:00",
- "issued": "2011-07-02T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 94.52290965714471,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:93e895fd-ec39-468f-8ce3-4f7963c1c81e",
- "resource": {
- "resourceType": "Observation",
- "id": "93e895fd-ec39-468f-8ce3-4f7963c1c81e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8"
- },
- "effectiveDateTime": "2011-07-02T23:35:42-04:00",
- "issued": "2011-07-02T23:35:42.651-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 76.31094210870585,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 123.38236408520764,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6823dec2-d3dc-4473-8bad-60c7fc8a674d",
- "resource": {
- "resourceType": "Observation",
- "id": "6823dec2-d3dc-4473-8bad-60c7fc8a674d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8"
- },
- "effectiveDateTime": "2011-07-02T23:35:42-04:00",
- "issued": "2011-07-02T23:35:42.651-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7b1f2ef6-1a3f-489f-ab37-c0f06e9cd0e3",
- "resource": {
- "resourceType": "Immunization",
- "id": "7b1f2ef6-1a3f-489f-ab37-c0f06e9cd0e3",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8"
- },
- "occurrenceDateTime": "2011-07-02T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:573b74b5-36b8-4e43-aa01-5e7074d067f2",
- "resource": {
- "resourceType": "Immunization",
- "id": "573b74b5-36b8-4e43-aa01-5e7074d067f2",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "62",
- "display": "HPV, quadrivalent"
- }
- ],
- "text": "HPV, quadrivalent"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8"
- },
- "occurrenceDateTime": "2011-07-02T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:3cc5cf91-2e72-4d26-9356-791b6e87a82f",
- "resource": {
- "resourceType": "Claim",
- "id": "3cc5cf91-2e72-4d26-9356-791b6e87a82f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2011-07-02T23:35:42-04:00",
- "end": "2011-07-02T23:50:42-04:00"
- },
- "created": "2011-07-02T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:7b1f2ef6-1a3f-489f-ab37-c0f06e9cd0e3"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:573b74b5-36b8-4e43-aa01-5e7074d067f2"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "62",
- "display": "HPV, quadrivalent"
- }
- ],
- "text": "HPV, quadrivalent"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:f109e427-4fcd-4ee3-8c7c-a080a09d23b3",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "f109e427-4fcd-4ee3-8c7c-a080a09d23b3",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3cc5cf91-2e72-4d26-9356-791b6e87a82f"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2011-07-02T23:50:42-04:00",
- "end": "2012-07-02T23:50:42-04:00"
- },
- "created": "2011-07-02T23:50:42-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3cc5cf91-2e72-4d26-9356-791b6e87a82f"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2011-07-02T23:35:42-04:00",
- "end": "2011-07-02T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:80fe5bb1-0038-417a-8cd1-b978ee1f58a8"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2011-07-02T23:35:42-04:00",
- "end": "2011-07-02T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "62",
- "display": "HPV, quadrivalent"
- }
- ],
- "text": "HPV, quadrivalent"
- },
- "servicedPeriod": {
- "start": "2011-07-02T23:35:42-04:00",
- "end": "2011-07-02T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 224.83200000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6",
- "resource": {
- "resourceType": "Encounter",
- "id": "b9db43ee-76cd-47c0-867b-3a3cf9f406b6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "display": "Dr. Jacalyn740 Lindgren255"
- }
- }
- ],
- "period": {
- "start": "2012-07-07T23:35:42-04:00",
- "end": "2012-07-07T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:e29369e8-e3e0-451f-a909-2e822da64a1d",
- "resource": {
- "resourceType": "Observation",
- "id": "e29369e8-e3e0-451f-a909-2e822da64a1d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6"
- },
- "effectiveDateTime": "2012-07-07T23:35:42-04:00",
- "issued": "2012-07-07T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 145.5449333779574,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3f9f4815-a473-4f7c-b518-f35379d275b3",
- "resource": {
- "resourceType": "Observation",
- "id": "3f9f4815-a473-4f7c-b518-f35379d275b3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6"
- },
- "effectiveDateTime": "2012-07-07T23:35:42-04:00",
- "issued": "2012-07-07T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 3.1653782239614827,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:042a1f0a-bae5-4c81-9d53-7d8aaca0fa59",
- "resource": {
- "resourceType": "Observation",
- "id": "042a1f0a-bae5-4c81-9d53-7d8aaca0fa59",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6"
- },
- "effectiveDateTime": "2012-07-07T23:35:42-04:00",
- "issued": "2012-07-07T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 55.70344077238314,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:611f14e2-b991-4330-8a08-99358ec89864",
- "resource": {
- "resourceType": "Observation",
- "id": "611f14e2-b991-4330-8a08-99358ec89864",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6"
- },
- "effectiveDateTime": "2012-07-07T23:35:42-04:00",
- "issued": "2012-07-07T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 26.295887851090935,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bf4ab8f4-172f-481e-9d92-e5bbf213ec1a",
- "resource": {
- "resourceType": "Observation",
- "id": "bf4ab8f4-172f-481e-9d92-e5bbf213ec1a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "59576-9",
- "display": "Body mass index (BMI) [Percentile] Per age and gender"
- }
- ],
- "text": "Body mass index (BMI) [Percentile] Per age and gender"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6"
- },
- "effectiveDateTime": "2012-07-07T23:35:42-04:00",
- "issued": "2012-07-07T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 94.6477616911125,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0a55e5c1-9ce5-498b-84e2-5b17713d6d3b",
- "resource": {
- "resourceType": "Observation",
- "id": "0a55e5c1-9ce5-498b-84e2-5b17713d6d3b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6"
- },
- "effectiveDateTime": "2012-07-07T23:35:42-04:00",
- "issued": "2012-07-07T23:35:42.651-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 81.3946941547834,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 106.75758340656998,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:29c6e2a7-fb7d-4ea2-b08f-97d8b12fd492",
- "resource": {
- "resourceType": "Observation",
- "id": "29c6e2a7-fb7d-4ea2-b08f-97d8b12fd492",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6"
- },
- "effectiveDateTime": "2012-07-07T23:35:42-04:00",
- "issued": "2012-07-07T23:35:42.651-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ee6df6c8-96e4-4b6a-8a8b-3d95ad24816e",
- "resource": {
- "resourceType": "Immunization",
- "id": "ee6df6c8-96e4-4b6a-8a8b-3d95ad24816e",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6"
- },
- "occurrenceDateTime": "2012-07-07T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:64c5e265-005b-435b-ab34-c1f1d2cf7128",
- "resource": {
- "resourceType": "Immunization",
- "id": "64c5e265-005b-435b-ab34-c1f1d2cf7128",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "62",
- "display": "HPV, quadrivalent"
- }
- ],
- "text": "HPV, quadrivalent"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6"
- },
- "occurrenceDateTime": "2012-07-07T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:7134073a-c4ce-4baf-ab92-dbd11f2516c3",
- "resource": {
- "resourceType": "Claim",
- "id": "7134073a-c4ce-4baf-ab92-dbd11f2516c3",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2012-07-07T23:35:42-04:00",
- "end": "2012-07-07T23:50:42-04:00"
- },
- "created": "2012-07-07T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:ee6df6c8-96e4-4b6a-8a8b-3d95ad24816e"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:64c5e265-005b-435b-ab34-c1f1d2cf7128"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "62",
- "display": "HPV, quadrivalent"
- }
- ],
- "text": "HPV, quadrivalent"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e73eceff-6956-407b-baa9-a53f612a0745",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "e73eceff-6956-407b-baa9-a53f612a0745",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "7134073a-c4ce-4baf-ab92-dbd11f2516c3"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2012-07-07T23:50:42-04:00",
- "end": "2013-07-07T23:50:42-04:00"
- },
- "created": "2012-07-07T23:50:42-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:7134073a-c4ce-4baf-ab92-dbd11f2516c3"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-07-07T23:35:42-04:00",
- "end": "2012-07-07T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:b9db43ee-76cd-47c0-867b-3a3cf9f406b6"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2012-07-07T23:35:42-04:00",
- "end": "2012-07-07T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "62",
- "display": "HPV, quadrivalent"
- }
- ],
- "text": "HPV, quadrivalent"
- },
- "servicedPeriod": {
- "start": "2012-07-07T23:35:42-04:00",
- "end": "2012-07-07T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 224.83200000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "resource": {
- "resourceType": "Organization",
- "id": "a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "a9f20dc1-5147-3789-bcef-bbecb41c5983"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "HOLY FAMILY HOSPITAL",
- "telecom": [
- {
- "system": "phone",
- "value": "9786870156"
- }
- ],
- "address": [
- {
- "line": [
- "70 EAST STREET"
- ],
- "city": "METHUEN",
- "state": "MA",
- "postalCode": "01844",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-00000000014a",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "330"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Haag279",
- "given": [
- "Roberto515"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Roberto515.Haag279@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "70 EAST STREET"
- ],
- "city": "METHUEN",
- "state": "MA",
- "postalCode": "01844",
- "country": "US"
- }
- ],
- "gender": "male"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:fbdc402b-eade-4b36-bf6f-5847f320250b",
- "resource": {
- "resourceType": "Encounter",
- "id": "fbdc402b-eade-4b36-bf6f-5847f320250b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- }
- ],
- "period": {
- "start": "2013-06-08T23:35:42-04:00",
- "end": "2013-06-08T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:0de25daa-1d47-4cb1-b1a9-d4e30c3e73d1",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "0de25daa-1d47-4cb1-b1a9-d4e30c3e73d1",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "748856",
- "display": "Yaz 28 Day Pack"
- }
- ],
- "text": "Yaz 28 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:fbdc402b-eade-4b36-bf6f-5847f320250b"
- },
- "authoredOn": "2013-06-08T23:35:42-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:2fb6461e-bd17-4d35-9116-138b0bc3009a",
- "resource": {
- "resourceType": "Claim",
- "id": "2fb6461e-bd17-4d35-9116-138b0bc3009a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2013-06-08T23:35:42-04:00",
- "end": "2013-06-08T23:50:42-04:00"
- },
- "created": "2013-06-08T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:0de25daa-1d47-4cb1-b1a9-d4e30c3e73d1"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:fbdc402b-eade-4b36-bf6f-5847f320250b"
- }
- ]
- }
- ],
- "total": {
- "value": 23.2,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:470a4ec6-8fc4-43af-a3bb-9e916cefe3da",
- "resource": {
- "resourceType": "Claim",
- "id": "470a4ec6-8fc4-43af-a3bb-9e916cefe3da",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2013-06-08T23:35:42-04:00",
- "end": "2013-06-08T23:50:42-04:00"
- },
- "created": "2013-06-08T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:fbdc402b-eade-4b36-bf6f-5847f320250b"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3c6e1497-48fd-47e5-9289-d4b8e01a4773",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "3c6e1497-48fd-47e5-9289-d4b8e01a4773",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "470a4ec6-8fc4-43af-a3bb-9e916cefe3da"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2013-06-08T23:50:42-04:00",
- "end": "2014-06-08T23:50:42-04:00"
- },
- "created": "2013-06-08T23:50:42-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:470a4ec6-8fc4-43af-a3bb-9e916cefe3da"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2013-06-08T23:35:42-04:00",
- "end": "2013-06-08T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:fbdc402b-eade-4b36-bf6f-5847f320250b"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:05798c97-9ffa-44e5-8ace-178c22d68677",
- "resource": {
- "resourceType": "Encounter",
- "id": "05798c97-9ffa-44e5-8ace-178c22d68677",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "display": "Dr. Jacalyn740 Lindgren255"
- }
- }
- ],
- "period": {
- "start": "2013-07-13T23:35:42-04:00",
- "end": "2013-07-13T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a6c88da0-c5bf-44f2-8bdc-12779422f82e",
- "resource": {
- "resourceType": "Observation",
- "id": "a6c88da0-c5bf-44f2-8bdc-12779422f82e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:05798c97-9ffa-44e5-8ace-178c22d68677"
- },
- "effectiveDateTime": "2013-07-13T23:35:42-04:00",
- "issued": "2013-07-13T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 149.53922360833567,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b231dfde-a6f9-4758-9df9-6b92ce932001",
- "resource": {
- "resourceType": "Observation",
- "id": "b231dfde-a6f9-4758-9df9-6b92ce932001",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:05798c97-9ffa-44e5-8ace-178c22d68677"
- },
- "effectiveDateTime": "2013-07-13T23:35:42-04:00",
- "issued": "2013-07-13T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 3.80148902201755,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5b8e2824-a5d5-40bd-9c09-cd647a9c2880",
- "resource": {
- "resourceType": "Observation",
- "id": "5b8e2824-a5d5-40bd-9c09-cd647a9c2880",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:05798c97-9ffa-44e5-8ace-178c22d68677"
- },
- "effectiveDateTime": "2013-07-13T23:35:42-04:00",
- "issued": "2013-07-13T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 61.112119701434196,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:87c35b72-39cb-49b2-8762-11dc0eebeb9d",
- "resource": {
- "resourceType": "Observation",
- "id": "87c35b72-39cb-49b2-8762-11dc0eebeb9d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:05798c97-9ffa-44e5-8ace-178c22d68677"
- },
- "effectiveDateTime": "2013-07-13T23:35:42-04:00",
- "issued": "2013-07-13T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 27.32858241904286,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:be11197a-bd6b-4fc6-a319-c33d3746c162",
- "resource": {
- "resourceType": "Observation",
- "id": "be11197a-bd6b-4fc6-a319-c33d3746c162",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "59576-9",
- "display": "Body mass index (BMI) [Percentile] Per age and gender"
- }
- ],
- "text": "Body mass index (BMI) [Percentile] Per age and gender"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:05798c97-9ffa-44e5-8ace-178c22d68677"
- },
- "effectiveDateTime": "2013-07-13T23:35:42-04:00",
- "issued": "2013-07-13T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 94.80578705502126,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:16c6363e-cb34-477f-8092-0e47c6eca26d",
- "resource": {
- "resourceType": "Observation",
- "id": "16c6363e-cb34-477f-8092-0e47c6eca26d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:05798c97-9ffa-44e5-8ace-178c22d68677"
- },
- "effectiveDateTime": "2013-07-13T23:35:42-04:00",
- "issued": "2013-07-13T23:35:42.651-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 78.6269821922178,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 102.6504262402982,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4f2cdd2d-5126-4fe3-a51e-5d2bc18ee654",
- "resource": {
- "resourceType": "Observation",
- "id": "4f2cdd2d-5126-4fe3-a51e-5d2bc18ee654",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:05798c97-9ffa-44e5-8ace-178c22d68677"
- },
- "effectiveDateTime": "2013-07-13T23:35:42-04:00",
- "issued": "2013-07-13T23:35:42.651-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7befcda4-fe2f-4aa2-ac9c-e2ac361e4766",
- "resource": {
- "resourceType": "Immunization",
- "id": "7befcda4-fe2f-4aa2-ac9c-e2ac361e4766",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:05798c97-9ffa-44e5-8ace-178c22d68677"
- },
- "occurrenceDateTime": "2013-07-13T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:db1ab2b4-fb91-4f1a-8d50-0308f63b08d4",
- "resource": {
- "resourceType": "Claim",
- "id": "db1ab2b4-fb91-4f1a-8d50-0308f63b08d4",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2013-07-13T23:35:42-04:00",
- "end": "2013-07-13T23:50:42-04:00"
- },
- "created": "2013-07-13T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:7befcda4-fe2f-4aa2-ac9c-e2ac361e4766"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:05798c97-9ffa-44e5-8ace-178c22d68677"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:eea00fac-82d4-4ea8-87fd-d65ff46d4cc3",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "eea00fac-82d4-4ea8-87fd-d65ff46d4cc3",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "db1ab2b4-fb91-4f1a-8d50-0308f63b08d4"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2013-07-13T23:50:42-04:00",
- "end": "2014-07-13T23:50:42-04:00"
- },
- "created": "2013-07-13T23:50:42-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:db1ab2b4-fb91-4f1a-8d50-0308f63b08d4"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2013-07-13T23:35:42-04:00",
- "end": "2013-07-13T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:05798c97-9ffa-44e5-8ace-178c22d68677"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2013-07-13T23:35:42-04:00",
- "end": "2013-07-13T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:90536902-2ec3-4b22-ac5f-cb622b95bd86",
- "resource": {
- "resourceType": "Encounter",
- "id": "90536902-2ec3-4b22-ac5f-cb622b95bd86",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- }
- ],
- "period": {
- "start": "2013-12-30T22:35:42-05:00",
- "end": "2013-12-30T22:50:42-05:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:8f1c74d4-aa24-4d84-beae-46e55be49cf9",
- "resource": {
- "resourceType": "Condition",
- "id": "8f1c74d4-aa24-4d84-beae-46e55be49cf9",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:90536902-2ec3-4b22-ac5f-cb622b95bd86"
- },
- "onsetDateTime": "2013-12-30T22:35:42-05:00",
- "abatementDateTime": "2014-01-06T22:35:42-05:00",
- "recordedDate": "2013-12-30T22:35:42-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:9fc36e17-0114-45ac-b639-82ed6fe33534",
- "resource": {
- "resourceType": "Claim",
- "id": "9fc36e17-0114-45ac-b639-82ed6fe33534",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2013-12-30T22:35:42-05:00",
- "end": "2013-12-30T22:50:42-05:00"
- },
- "created": "2013-12-30T22:50:42-05:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:8f1c74d4-aa24-4d84-beae-46e55be49cf9"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:90536902-2ec3-4b22-ac5f-cb622b95bd86"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:6224b49b-ba6e-4d4f-9dc8-fc07823fa73e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "6224b49b-ba6e-4d4f-9dc8-fc07823fa73e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "9fc36e17-0114-45ac-b639-82ed6fe33534"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2013-12-30T22:50:42-05:00",
- "end": "2014-12-30T22:50:42-05:00"
- },
- "created": "2013-12-30T22:50:42-05:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:9fc36e17-0114-45ac-b639-82ed6fe33534"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:8f1c74d4-aa24-4d84-beae-46e55be49cf9"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2013-12-30T22:35:42-05:00",
- "end": "2013-12-30T22:50:42-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:90536902-2ec3-4b22-ac5f-cb622b95bd86"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2013-12-30T22:35:42-05:00",
- "end": "2013-12-30T22:50:42-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:4e70fb25-c25d-4e4f-9f40-e682b0815786",
- "resource": {
- "resourceType": "Encounter",
- "id": "4e70fb25-c25d-4e4f-9f40-e682b0815786",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "display": "Dr. Jacalyn740 Lindgren255"
- }
- }
- ],
- "period": {
- "start": "2014-07-19T23:35:42-04:00",
- "end": "2014-07-19T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d1de3bba-1426-4810-9851-a29db15cd7a0",
- "resource": {
- "resourceType": "Observation",
- "id": "d1de3bba-1426-4810-9851-a29db15cd7a0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:4e70fb25-c25d-4e4f-9f40-e682b0815786"
- },
- "effectiveDateTime": "2014-07-19T23:35:42-04:00",
- "issued": "2014-07-19T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 151.02538832308642,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0373caf2-df18-4e13-850b-4eabdcec1e2e",
- "resource": {
- "resourceType": "Observation",
- "id": "0373caf2-df18-4e13-850b-4eabdcec1e2e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:4e70fb25-c25d-4e4f-9f40-e682b0815786"
- },
- "effectiveDateTime": "2014-07-19T23:35:42-04:00",
- "issued": "2014-07-19T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 1.0764250824750103,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8db25348-18f7-4b85-8d41-c2cd56e2aa98",
- "resource": {
- "resourceType": "Observation",
- "id": "8db25348-18f7-4b85-8d41-c2cd56e2aa98",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:4e70fb25-c25d-4e4f-9f40-e682b0815786"
- },
- "effectiveDateTime": "2014-07-19T23:35:42-04:00",
- "issued": "2014-07-19T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 64.29509381909817,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b35999b4-d8bf-4dc8-ad2d-a6ad13590c9e",
- "resource": {
- "resourceType": "Observation",
- "id": "b35999b4-d8bf-4dc8-ad2d-a6ad13590c9e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:4e70fb25-c25d-4e4f-9f40-e682b0815786"
- },
- "effectiveDateTime": "2014-07-19T23:35:42-04:00",
- "issued": "2014-07-19T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 28.18888593137271,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2fb7e72f-c2ed-4981-9105-4f3e157b213f",
- "resource": {
- "resourceType": "Observation",
- "id": "2fb7e72f-c2ed-4981-9105-4f3e157b213f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "59576-9",
- "display": "Body mass index (BMI) [Percentile] Per age and gender"
- }
- ],
- "text": "Body mass index (BMI) [Percentile] Per age and gender"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:4e70fb25-c25d-4e4f-9f40-e682b0815786"
- },
- "effectiveDateTime": "2014-07-19T23:35:42-04:00",
- "issued": "2014-07-19T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 94.87600349596794,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:406177ca-af0f-44c5-8eb5-caee0bcdc0ec",
- "resource": {
- "resourceType": "Observation",
- "id": "406177ca-af0f-44c5-8eb5-caee0bcdc0ec",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:4e70fb25-c25d-4e4f-9f40-e682b0815786"
- },
- "effectiveDateTime": "2014-07-19T23:35:42-04:00",
- "issued": "2014-07-19T23:35:42.651-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 81.53618225928905,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 126.54581730674404,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d8e8afdc-ef9e-4fd2-a8e2-210329c7bae6",
- "resource": {
- "resourceType": "Observation",
- "id": "d8e8afdc-ef9e-4fd2-a8e2-210329c7bae6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:4e70fb25-c25d-4e4f-9f40-e682b0815786"
- },
- "effectiveDateTime": "2014-07-19T23:35:42-04:00",
- "issued": "2014-07-19T23:35:42.651-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b7d14314-fc30-4599-9375-2708f745fcb1",
- "resource": {
- "resourceType": "Immunization",
- "id": "b7d14314-fc30-4599-9375-2708f745fcb1",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:4e70fb25-c25d-4e4f-9f40-e682b0815786"
- },
- "occurrenceDateTime": "2014-07-19T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:35cd5e92-833a-4dbb-aa29-e35b78237a85",
- "resource": {
- "resourceType": "Claim",
- "id": "35cd5e92-833a-4dbb-aa29-e35b78237a85",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2014-07-19T23:35:42-04:00",
- "end": "2014-07-19T23:50:42-04:00"
- },
- "created": "2014-07-19T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:b7d14314-fc30-4599-9375-2708f745fcb1"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:4e70fb25-c25d-4e4f-9f40-e682b0815786"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:cb7fbd60-0314-4a33-ae2b-43903fee9173",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "cb7fbd60-0314-4a33-ae2b-43903fee9173",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "35cd5e92-833a-4dbb-aa29-e35b78237a85"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2014-07-19T23:50:42-04:00",
- "end": "2015-07-19T23:50:42-04:00"
- },
- "created": "2014-07-19T23:50:42-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:35cd5e92-833a-4dbb-aa29-e35b78237a85"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2014-07-19T23:35:42-04:00",
- "end": "2014-07-19T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:4e70fb25-c25d-4e4f-9f40-e682b0815786"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2014-07-19T23:35:42-04:00",
- "end": "2014-07-19T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:00e0bf1f-e605-4565-9eac-43b477101231",
- "resource": {
- "resourceType": "Encounter",
- "id": "00e0bf1f-e605-4565-9eac-43b477101231",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- }
- ],
- "period": {
- "start": "2015-05-29T23:35:42-04:00",
- "end": "2015-05-29T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:8410aa11-b714-4f99-8dd4-a5d9aedff045",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "8410aa11-b714-4f99-8dd4-a5d9aedff045",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "749762",
- "display": "Seasonique 91 Day Pack"
- }
- ],
- "text": "Seasonique 91 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:00e0bf1f-e605-4565-9eac-43b477101231"
- },
- "authoredOn": "2015-05-29T23:35:42-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:d0bf151e-2f9b-44e2-812c-bbbb663dd112",
- "resource": {
- "resourceType": "Claim",
- "id": "d0bf151e-2f9b-44e2-812c-bbbb663dd112",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2015-05-29T23:35:42-04:00",
- "end": "2015-05-29T23:50:42-04:00"
- },
- "created": "2015-05-29T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:8410aa11-b714-4f99-8dd4-a5d9aedff045"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:00e0bf1f-e605-4565-9eac-43b477101231"
- }
- ]
- }
- ],
- "total": {
- "value": 47.38,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5289075e-dd69-45d2-8681-c88ad0642d7e",
- "resource": {
- "resourceType": "Claim",
- "id": "5289075e-dd69-45d2-8681-c88ad0642d7e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2015-05-29T23:35:42-04:00",
- "end": "2015-05-29T23:50:42-04:00"
- },
- "created": "2015-05-29T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:00e0bf1f-e605-4565-9eac-43b477101231"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:334097dd-a9a8-46fe-b728-6a31290acc5a",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "334097dd-a9a8-46fe-b728-6a31290acc5a",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "5289075e-dd69-45d2-8681-c88ad0642d7e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2015-05-29T23:50:42-04:00",
- "end": "2016-05-29T23:50:42-04:00"
- },
- "created": "2015-05-29T23:50:42-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:5289075e-dd69-45d2-8681-c88ad0642d7e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2015-05-29T23:35:42-04:00",
- "end": "2015-05-29T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:00e0bf1f-e605-4565-9eac-43b477101231"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb",
- "resource": {
- "resourceType": "Encounter",
- "id": "3b60dd3a-011c-46ff-964e-e1aaf5c505eb",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "display": "Dr. Jacalyn740 Lindgren255"
- }
- }
- ],
- "period": {
- "start": "2015-07-25T23:35:42-04:00",
- "end": "2015-07-25T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:7db9e0c1-b214-4d3c-a166-4915318c31db",
- "resource": {
- "resourceType": "Observation",
- "id": "7db9e0c1-b214-4d3c-a166-4915318c31db",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 151.66269152600725,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:0c669903-5dc2-4d48-af6f-492f859063b3",
- "resource": {
- "resourceType": "Observation",
- "id": "0c669903-5dc2-4d48-af6f-492f859063b3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 1.9210486999377254,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:24fb2601-e110-4ba9-ae9b-2e0465547468",
- "resource": {
- "resourceType": "Observation",
- "id": "24fb2601-e110-4ba9-ae9b-2e0465547468",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 66.63265335291655,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a09305ea-96d3-49ca-8479-aeceb1e8e98e",
- "resource": {
- "resourceType": "Observation",
- "id": "a09305ea-96d3-49ca-8479-aeceb1e8e98e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 28.968738897616298,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e94c80e5-d157-4a48-b2f0-2056ff8b9239",
- "resource": {
- "resourceType": "Observation",
- "id": "e94c80e5-d157-4a48-b2f0-2056ff8b9239",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "59576-9",
- "display": "Body mass index (BMI) [Percentile] Per age and gender"
- }
- ],
- "text": "Body mass index (BMI) [Percentile] Per age and gender"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 94.90765715742681,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:af60a5b9-0b2d-4e34-8d45-d7e9883750cf",
- "resource": {
- "resourceType": "Observation",
- "id": "af60a5b9-0b2d-4e34-8d45-d7e9883750cf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 71.79847614624363,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 123.84680008350652,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1465815c-1eb2-48cf-a61a-f82768480d86",
- "resource": {
- "resourceType": "Observation",
- "id": "1465815c-1eb2-48cf-a61a-f82768480d86",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 5.451825308548753,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:84e92050-85cd-4449-8a45-66653427c8cd",
- "resource": {
- "resourceType": "Observation",
- "id": "84e92050-85cd-4449-8a45-66653427c8cd",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 5.31445237218615,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:37f13565-68b4-4266-b3bd-71a28c79fef0",
- "resource": {
- "resourceType": "Observation",
- "id": "37f13565-68b4-4266-b3bd-71a28c79fef0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 14.292709690805538,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:19cdc95a-0248-450f-b67c-3a824c906bf5",
- "resource": {
- "resourceType": "Observation",
- "id": "19cdc95a-0248-450f-b67c-3a824c906bf5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 44.866775641527624,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ce9f7e1f-2492-44a4-a087-8f709b6e30ff",
- "resource": {
- "resourceType": "Observation",
- "id": "ce9f7e1f-2492-44a4-a087-8f709b6e30ff",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 90.25248694163055,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8252f417-a6c4-45dc-9e6d-4175a7e2b922",
- "resource": {
- "resourceType": "Observation",
- "id": "8252f417-a6c4-45dc-9e6d-4175a7e2b922",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 32.82622570479111,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ce3c716e-a7b6-46cd-9b19-c1272fb57b82",
- "resource": {
- "resourceType": "Observation",
- "id": "ce3c716e-a7b6-46cd-9b19-c1272fb57b82",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 34.71848655675484,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ba2368e8-b57d-4ae9-9ad7-f871cf0c8b3b",
- "resource": {
- "resourceType": "Observation",
- "id": "ba2368e8-b57d-4ae9-9ad7-f871cf0c8b3b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 44.86740369479697,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:623dc13b-14b7-4b6b-a451-d325c3373987",
- "resource": {
- "resourceType": "Observation",
- "id": "623dc13b-14b7-4b6b-a451-d325c3373987",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 258.7522579452467,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9a507a71-31d7-4a21-88df-8d8ea334e03c",
- "resource": {
- "resourceType": "Observation",
- "id": "9a507a71-31d7-4a21-88df-8d8ea334e03c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 400.3792798918357,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:703cc745-4daa-4860-9a41-a3dd2e03a3d5",
- "resource": {
- "resourceType": "Observation",
- "id": "703cc745-4daa-4860-9a41-a3dd2e03a3d5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 10.766353162839396,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ec539e68-68eb-4abb-8928-d828eab266ce",
- "resource": {
- "resourceType": "Observation",
- "id": "ec539e68-68eb-4abb-8928-d828eab266ce",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ea6fd4e9-dc30-47ed-a2af-ed536195db73",
- "resource": {
- "resourceType": "Immunization",
- "id": "ea6fd4e9-dc30-47ed-a2af-ed536195db73",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "occurrenceDateTime": "2015-07-25T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:1f20dc56-ec7c-4e78-b0fa-c12d611cd87d",
- "resource": {
- "resourceType": "Immunization",
- "id": "1f20dc56-ec7c-4e78-b0fa-c12d611cd87d",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "occurrenceDateTime": "2015-07-25T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:c1c8e28f-6217-43ed-9734-a55845fd7732",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "c1c8e28f-6217-43ed-9734-a55845fd7732",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- },
- "effectiveDateTime": "2015-07-25T23:35:42-04:00",
- "issued": "2015-07-25T23:35:42.651-04:00",
- "result": [
- {
- "reference": "urn:uuid:1465815c-1eb2-48cf-a61a-f82768480d86",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:84e92050-85cd-4449-8a45-66653427c8cd",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:37f13565-68b4-4266-b3bd-71a28c79fef0",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:19cdc95a-0248-450f-b67c-3a824c906bf5",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:ce9f7e1f-2492-44a4-a087-8f709b6e30ff",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:8252f417-a6c4-45dc-9e6d-4175a7e2b922",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:ce3c716e-a7b6-46cd-9b19-c1272fb57b82",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:ba2368e8-b57d-4ae9-9ad7-f871cf0c8b3b",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:623dc13b-14b7-4b6b-a451-d325c3373987",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:9a507a71-31d7-4a21-88df-8d8ea334e03c",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:703cc745-4daa-4860-9a41-a3dd2e03a3d5",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:225b8676-0db8-4195-b5d2-d250f7fb1af2",
- "resource": {
- "resourceType": "Claim",
- "id": "225b8676-0db8-4195-b5d2-d250f7fb1af2",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2015-07-25T23:35:42-04:00",
- "end": "2015-07-25T23:50:42-04:00"
- },
- "created": "2015-07-25T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:ea6fd4e9-dc30-47ed-a2af-ed536195db73"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:1f20dc56-ec7c-4e78-b0fa-c12d611cd87d"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:eafe7583-1871-44b3-9703-cf183a9881c1",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "eafe7583-1871-44b3-9703-cf183a9881c1",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "225b8676-0db8-4195-b5d2-d250f7fb1af2"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2015-07-25T23:50:42-04:00",
- "end": "2016-07-25T23:50:42-04:00"
- },
- "created": "2015-07-25T23:50:42-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:225b8676-0db8-4195-b5d2-d250f7fb1af2"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-07-25T23:35:42-04:00",
- "end": "2015-07-25T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3b60dd3a-011c-46ff-964e-e1aaf5c505eb"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2015-07-25T23:35:42-04:00",
- "end": "2015-07-25T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "114",
- "display": "meningococcal MCV4P"
- }
- ],
- "text": "meningococcal MCV4P"
- },
- "servicedPeriod": {
- "start": "2015-07-25T23:35:42-04:00",
- "end": "2015-07-25T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 224.83200000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:bc1bd547-9007-4dcd-af8e-2b50e02452c5",
- "resource": {
- "resourceType": "Encounter",
- "id": "bc1bd547-9007-4dcd-af8e-2b50e02452c5",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "EMER"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency room admission (procedure)"
- }
- ],
- "text": "Emergency room admission (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- }
- ],
- "period": {
- "start": "2016-05-04T23:35:42-04:00",
- "end": "2016-05-05T00:45:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:9e8a7f98-8530-4464-bc31-079a9bbb16cd",
- "resource": {
- "resourceType": "Condition",
- "id": "9e8a7f98-8530-4464-bc31-079a9bbb16cd",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "283385000",
- "display": "Laceration of thigh"
- }
- ],
- "text": "Laceration of thigh"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:bc1bd547-9007-4dcd-af8e-2b50e02452c5"
- },
- "onsetDateTime": "2016-05-04T23:35:42-04:00",
- "abatementDateTime": "2016-05-25T23:35:42-04:00",
- "recordedDate": "2016-05-04T23:35:42-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:ddf6a420-693e-4acd-b865-74af823256d9",
- "resource": {
- "resourceType": "Procedure",
- "id": "ddf6a420-693e-4acd-b865-74af823256d9",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "288086009",
- "display": "Suture open wound"
- }
- ],
- "text": "Suture open wound"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:bc1bd547-9007-4dcd-af8e-2b50e02452c5"
- },
- "performedPeriod": {
- "start": "2016-05-04T23:35:42-04:00",
- "end": "2016-05-04T23:45:42-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:9e8a7f98-8530-4464-bc31-079a9bbb16cd",
- "display": "Laceration of thigh"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:395d20f9-8b5c-4808-8554-a04979abd7b8",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "395d20f9-8b5c-4808-8554-a04979abd7b8",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "313782",
- "display": "Acetaminophen 325 MG Oral Tablet"
- }
- ],
- "text": "Acetaminophen 325 MG Oral Tablet"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:bc1bd547-9007-4dcd-af8e-2b50e02452c5"
- },
- "authoredOn": "2016-05-04T23:35:42-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- },
- "dosageInstruction": [
- {
- "sequence": 1,
- "asNeededBoolean": true
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:b6165129-7f34-4bcd-b466-6044533d461f",
- "resource": {
- "resourceType": "Claim",
- "id": "b6165129-7f34-4bcd-b466-6044533d461f",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2016-05-04T23:35:42-04:00",
- "end": "2016-05-05T00:45:42-04:00"
- },
- "created": "2016-05-05T00:45:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:395d20f9-8b5c-4808-8554-a04979abd7b8"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency room admission (procedure)"
- }
- ],
- "text": "Emergency room admission (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:bc1bd547-9007-4dcd-af8e-2b50e02452c5"
- }
- ]
- }
- ],
- "total": {
- "value": 4.72,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:e8f8b682-c325-4b58-b328-69541ecf548d",
- "resource": {
- "resourceType": "CareTeam",
- "id": "e8f8b682-c325-4b58-b328-69541ecf548d",
- "status": "inactive",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:bc1bd547-9007-4dcd-af8e-2b50e02452c5"
- },
- "period": {
- "start": "2016-05-04T23:35:42-04:00",
- "end": "2016-05-25T23:35:42-04:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "283385000",
- "display": "Laceration of thigh"
- }
- ],
- "text": "Laceration of thigh"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:09cbcbb8-e08c-4c1e-9084-77d4f046d15b",
- "resource": {
- "resourceType": "CarePlan",
- "id": "09cbcbb8-e08c-4c1e-9084-77d4f046d15b",
- "text": {
- "status": "generated",
- "div": "Care Plan for Wound care.
Activities:
Care plan is meant to treat Laceration of thigh.
"
- },
- "status": "completed",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225358003",
- "display": "Wound care"
- }
- ],
- "text": "Wound care"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:bc1bd547-9007-4dcd-af8e-2b50e02452c5"
- },
- "period": {
- "start": "2016-05-04T23:35:42-04:00",
- "end": "2016-05-25T23:35:42-04:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:e8f8b682-c325-4b58-b328-69541ecf548d"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:9e8a7f98-8530-4464-bc31-079a9bbb16cd"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "385949008",
- "display": "Dressing change management"
- }
- ],
- "text": "Dressing change management"
- },
- "status": "completed",
- "location": {
- "display": "HOLY FAMILY HOSPITAL"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "439830001",
- "display": "Behavior to prevent infection"
- }
- ],
- "text": "Behavior to prevent infection"
- },
- "status": "completed",
- "location": {
- "display": "HOLY FAMILY HOSPITAL"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:e2386e4d-f51b-4693-ba29-832596fd5581",
- "resource": {
- "resourceType": "Claim",
- "id": "e2386e4d-f51b-4693-ba29-832596fd5581",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2016-05-04T23:35:42-04:00",
- "end": "2016-05-05T00:45:42-04:00"
- },
- "created": "2016-05-05T00:45:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:9e8a7f98-8530-4464-bc31-079a9bbb16cd"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:ddf6a420-693e-4acd-b865-74af823256d9"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency room admission (procedure)"
- }
- ],
- "text": "Emergency room admission (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:bc1bd547-9007-4dcd-af8e-2b50e02452c5"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "283385000",
- "display": "Laceration of thigh"
- }
- ],
- "text": "Laceration of thigh"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "288086009",
- "display": "Suture open wound"
- }
- ],
- "text": "Suture open wound"
- },
- "net": {
- "value": 9883.42,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:fc821981-5f17-437f-930e-897c82c24de4",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "fc821981-5f17-437f-930e-897c82c24de4",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "e2386e4d-f51b-4693-ba29-832596fd5581"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2016-05-05T00:45:42-04:00",
- "end": "2017-05-05T00:45:42-04:00"
- },
- "created": "2016-05-05T00:45:42-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:e2386e4d-f51b-4693-ba29-832596fd5581"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:9e8a7f98-8530-4464-bc31-079a9bbb16cd"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "50849002",
- "display": "Emergency room admission (procedure)"
- }
- ],
- "text": "Emergency room admission (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-05-04T23:35:42-04:00",
- "end": "2016-05-05T00:45:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:bc1bd547-9007-4dcd-af8e-2b50e02452c5"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "283385000",
- "display": "Laceration of thigh"
- }
- ],
- "text": "Laceration of thigh"
- },
- "servicedPeriod": {
- "start": "2016-05-04T23:35:42-04:00",
- "end": "2016-05-05T00:45:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- }
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "288086009",
- "display": "Suture open wound"
- }
- ],
- "text": "Suture open wound"
- },
- "servicedPeriod": {
- "start": "2016-05-04T23:35:42-04:00",
- "end": "2016-05-05T00:45:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "20",
- "display": "Urgent Care Facility"
- }
- ]
- },
- "net": {
- "value": 9883.42,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1976.6840000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 7906.736000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9883.42,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9883.42,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 7906.736000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:fe7ec842-c621-4c21-bd23-8b77d8a21dca",
- "resource": {
- "resourceType": "Encounter",
- "id": "fe7ec842-c621-4c21-bd23-8b77d8a21dca",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- }
- ],
- "period": {
- "start": "2016-05-23T23:35:42-04:00",
- "end": "2016-05-23T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d9c3e877-f75a-4daa-8ce4-62dc2a3ab909",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "d9c3e877-f75a-4daa-8ce4-62dc2a3ab909",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "978950",
- "display": "Natazia 28 Day Pack"
- }
- ],
- "text": "Natazia 28 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:fe7ec842-c621-4c21-bd23-8b77d8a21dca"
- },
- "authoredOn": "2016-05-23T23:35:42-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:273468e6-b467-4c2b-91cc-4566f794ad68",
- "resource": {
- "resourceType": "Claim",
- "id": "273468e6-b467-4c2b-91cc-4566f794ad68",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2016-05-23T23:35:42-04:00",
- "end": "2016-05-23T23:50:42-04:00"
- },
- "created": "2016-05-23T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:d9c3e877-f75a-4daa-8ce4-62dc2a3ab909"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:fe7ec842-c621-4c21-bd23-8b77d8a21dca"
- }
- ]
- }
- ],
- "total": {
- "value": 33.25,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:56cb174a-06dd-46a1-a731-0e0397bd73b0",
- "resource": {
- "resourceType": "Claim",
- "id": "56cb174a-06dd-46a1-a731-0e0397bd73b0",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2016-05-23T23:35:42-04:00",
- "end": "2016-05-23T23:50:42-04:00"
- },
- "created": "2016-05-23T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:fe7ec842-c621-4c21-bd23-8b77d8a21dca"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:2c289d9d-e56f-460d-a50d-90afe2e589ac",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "2c289d9d-e56f-460d-a50d-90afe2e589ac",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "56cb174a-06dd-46a1-a731-0e0397bd73b0"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2016-05-23T23:50:42-04:00",
- "end": "2017-05-23T23:50:42-04:00"
- },
- "created": "2016-05-23T23:50:42-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:56cb174a-06dd-46a1-a731-0e0397bd73b0"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2016-05-23T23:35:42-04:00",
- "end": "2016-05-23T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:fe7ec842-c621-4c21-bd23-8b77d8a21dca"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:cd5d7afb-e148-4b44-81e4-834507b28cbc",
- "resource": {
- "resourceType": "Encounter",
- "id": "cd5d7afb-e148-4b44-81e4-834507b28cbc",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "display": "Dr. Jacalyn740 Lindgren255"
- }
- }
- ],
- "period": {
- "start": "2016-07-30T23:35:42-04:00",
- "end": "2016-07-30T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:456a8935-61d5-4a57-a106-fffede832266",
- "resource": {
- "resourceType": "Observation",
- "id": "456a8935-61d5-4a57-a106-fffede832266",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:cd5d7afb-e148-4b44-81e4-834507b28cbc"
- },
- "effectiveDateTime": "2016-07-30T23:35:42-04:00",
- "issued": "2016-07-30T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 151.9789430482647,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b798c501-4dd4-400d-8dfe-b0ef6b3517c0",
- "resource": {
- "resourceType": "Observation",
- "id": "b798c501-4dd4-400d-8dfe-b0ef6b3517c0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:cd5d7afb-e148-4b44-81e4-834507b28cbc"
- },
- "effectiveDateTime": "2016-07-30T23:35:42-04:00",
- "issued": "2016-07-30T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 1.0533888930404331,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:389358d7-0cef-44c7-8ddd-030a165029c5",
- "resource": {
- "resourceType": "Observation",
- "id": "389358d7-0cef-44c7-8ddd-030a165029c5",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:cd5d7afb-e148-4b44-81e4-834507b28cbc"
- },
- "effectiveDateTime": "2016-07-30T23:35:42-04:00",
- "issued": "2016-07-30T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 68.57276409163076,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:105aebc2-1e2e-410f-815d-0327821cb565",
- "resource": {
- "resourceType": "Observation",
- "id": "105aebc2-1e2e-410f-815d-0327821cb565",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:cd5d7afb-e148-4b44-81e4-834507b28cbc"
- },
- "effectiveDateTime": "2016-07-30T23:35:42-04:00",
- "issued": "2016-07-30T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 29.688264873540472,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3b99c719-0cb1-4e88-8334-8de3de372b48",
- "resource": {
- "resourceType": "Observation",
- "id": "3b99c719-0cb1-4e88-8334-8de3de372b48",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "59576-9",
- "display": "Body mass index (BMI) [Percentile] Per age and gender"
- }
- ],
- "text": "Body mass index (BMI) [Percentile] Per age and gender"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:cd5d7afb-e148-4b44-81e4-834507b28cbc"
- },
- "effectiveDateTime": "2016-07-30T23:35:42-04:00",
- "issued": "2016-07-30T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 94.92389148839354,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:238c86f4-632c-49b0-83ae-7b05eb35ed17",
- "resource": {
- "resourceType": "Observation",
- "id": "238c86f4-632c-49b0-83ae-7b05eb35ed17",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:cd5d7afb-e148-4b44-81e4-834507b28cbc"
- },
- "effectiveDateTime": "2016-07-30T23:35:42-04:00",
- "issued": "2016-07-30T23:35:42.651-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 80.74859899301299,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 136.11534633379068,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cabb769f-1948-404e-8d6c-f2b3b2081325",
- "resource": {
- "resourceType": "Observation",
- "id": "cabb769f-1948-404e-8d6c-f2b3b2081325",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:cd5d7afb-e148-4b44-81e4-834507b28cbc"
- },
- "effectiveDateTime": "2016-07-30T23:35:42-04:00",
- "issued": "2016-07-30T23:35:42.651-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:48ddb2aa-1fd9-4907-b78f-3253a014e2e9",
- "resource": {
- "resourceType": "Immunization",
- "id": "48ddb2aa-1fd9-4907-b78f-3253a014e2e9",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:cd5d7afb-e148-4b44-81e4-834507b28cbc"
- },
- "occurrenceDateTime": "2016-07-30T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:0e3f4573-84ea-411f-ace9-bbf2c5de7a80",
- "resource": {
- "resourceType": "Claim",
- "id": "0e3f4573-84ea-411f-ace9-bbf2c5de7a80",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2016-07-30T23:35:42-04:00",
- "end": "2016-07-30T23:50:42-04:00"
- },
- "created": "2016-07-30T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:48ddb2aa-1fd9-4907-b78f-3253a014e2e9"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:cd5d7afb-e148-4b44-81e4-834507b28cbc"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:a2ae590b-d3b5-42f0-9aae-3980f1e9318e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "a2ae590b-d3b5-42f0-9aae-3980f1e9318e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "0e3f4573-84ea-411f-ace9-bbf2c5de7a80"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2016-07-30T23:50:42-04:00",
- "end": "2017-07-30T23:50:42-04:00"
- },
- "created": "2016-07-30T23:50:42-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:0e3f4573-84ea-411f-ace9-bbf2c5de7a80"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "410620009",
- "display": "Well child visit (procedure)"
- }
- ],
- "text": "Well child visit (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-07-30T23:35:42-04:00",
- "end": "2016-07-30T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:cd5d7afb-e148-4b44-81e4-834507b28cbc"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2016-07-30T23:35:42-04:00",
- "end": "2016-07-30T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:717881ea-2503-44e7-a3b3-45d4666148d8",
- "resource": {
- "resourceType": "Encounter",
- "id": "717881ea-2503-44e7-a3b3-45d4666148d8",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- }
- ],
- "period": {
- "start": "2016-09-29T23:35:42-04:00",
- "end": "2016-09-29T23:50:42-04:00"
- },
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ]
- }
- ],
- "serviceProvider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:91308819-a229-43e6-a84d-308bb8d9f7f5",
- "resource": {
- "resourceType": "Condition",
- "id": "91308819-a229-43e6-a84d-308bb8d9f7f5",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:717881ea-2503-44e7-a3b3-45d4666148d8"
- },
- "onsetDateTime": "2016-09-29T23:35:42-04:00",
- "abatementDateTime": "2016-10-13T23:35:42-04:00",
- "recordedDate": "2016-09-29T23:35:42-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:75f08279-cc2a-4670-a132-01b3280c7ec3",
- "resource": {
- "resourceType": "Claim",
- "id": "75f08279-cc2a-4670-a132-01b3280c7ec3",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2016-09-29T23:35:42-04:00",
- "end": "2016-09-29T23:50:42-04:00"
- },
- "created": "2016-09-29T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:91308819-a229-43e6-a84d-308bb8d9f7f5"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "encounter": [
- {
- "reference": "urn:uuid:717881ea-2503-44e7-a3b3-45d4666148d8"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:1d69022d-bc24-4dd3-8b22-b8c581706ae5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "1d69022d-bc24-4dd3-8b22-b8c581706ae5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "75f08279-cc2a-4670-a132-01b3280c7ec3"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2016-09-29T23:50:42-04:00",
- "end": "2017-09-29T23:50:42-04:00"
- },
- "created": "2016-09-29T23:50:42-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:75f08279-cc2a-4670-a132-01b3280c7ec3"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:91308819-a229-43e6-a84d-308bb8d9f7f5"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185345009",
- "display": "Encounter for symptom"
- }
- ],
- "text": "Encounter for symptom"
- },
- "servicedPeriod": {
- "start": "2016-09-29T23:35:42-04:00",
- "end": "2016-09-29T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:717881ea-2503-44e7-a3b3-45d4666148d8"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "444814009",
- "display": "Viral sinusitis (disorder)"
- }
- ],
- "text": "Viral sinusitis (disorder)"
- },
- "servicedPeriod": {
- "start": "2016-09-29T23:35:42-04:00",
- "end": "2016-09-29T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a",
- "resource": {
- "resourceType": "Encounter",
- "id": "858f7499-560d-493d-9bd4-62f55b121f1a",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "display": "Dr. Jacalyn740 Lindgren255"
- }
- }
- ],
- "period": {
- "start": "2017-08-05T23:35:42-04:00",
- "end": "2017-08-05T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:1dde2651-4744-47f1-9fb7-5f0fdad2b316",
- "resource": {
- "resourceType": "Condition",
- "id": "1dde2651-4744-47f1-9fb7-5f0fdad2b316",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162864005",
- "display": "Body mass index 30+ - obesity (finding)"
- }
- ],
- "text": "Body mass index 30+ - obesity (finding)"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "onsetDateTime": "2017-08-05T23:35:42-04:00",
- "recordedDate": "2017-08-05T23:35:42-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:4fa11d6d-b4d3-44dc-8083-ddf01b98742f",
- "resource": {
- "resourceType": "Condition",
- "id": "4fa11d6d-b4d3-44dc-8083-ddf01b98742f",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "onsetDateTime": "2017-08-05T23:35:42-04:00",
- "recordedDate": "2017-08-05T23:35:42-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:466a7fca-ea58-4163-9b14-e760948d5ad1",
- "resource": {
- "resourceType": "Observation",
- "id": "466a7fca-ea58-4163-9b14-e760948d5ad1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "effectiveDateTime": "2017-08-05T23:35:42-04:00",
- "issued": "2017-08-05T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 152.15817064004855,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9e36f038-84c8-4c0b-a91d-f13dbea7e724",
- "resource": {
- "resourceType": "Observation",
- "id": "9e36f038-84c8-4c0b-a91d-f13dbea7e724",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "effectiveDateTime": "2017-08-05T23:35:42-04:00",
- "issued": "2017-08-05T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 0.7380012870494554,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1d65530a-c843-430e-b39d-c50eff319c2f",
- "resource": {
- "resourceType": "Observation",
- "id": "1d65530a-c843-430e-b39d-c50eff319c2f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "effectiveDateTime": "2017-08-05T23:35:42-04:00",
- "issued": "2017-08-05T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 70.33423093390505,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fd9b9645-3e27-456c-9815-0cfe29aa088a",
- "resource": {
- "resourceType": "Observation",
- "id": "fd9b9645-3e27-456c-9815-0cfe29aa088a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "effectiveDateTime": "2017-08-05T23:35:42-04:00",
- "issued": "2017-08-05T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 30.379189757789213,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:812c5baa-51f0-4d6e-8d4e-5006dc4c1611",
- "resource": {
- "resourceType": "Observation",
- "id": "812c5baa-51f0-4d6e-8d4e-5006dc4c1611",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "59576-9",
- "display": "Body mass index (BMI) [Percentile] Per age and gender"
- }
- ],
- "text": "Body mass index (BMI) [Percentile] Per age and gender"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "effectiveDateTime": "2017-08-05T23:35:42-04:00",
- "issued": "2017-08-05T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 94.9324324792929,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fbba7e05-e993-41c8-9038-7aaae78ba2c1",
- "resource": {
- "resourceType": "Observation",
- "id": "fbba7e05-e993-41c8-9038-7aaae78ba2c1",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "effectiveDateTime": "2017-08-05T23:35:42-04:00",
- "issued": "2017-08-05T23:35:42.651-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 120.09638868149413,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 188.91283161144722,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:804206c2-3b72-47f7-a5ad-023bafc65e79",
- "resource": {
- "resourceType": "Observation",
- "id": "804206c2-3b72-47f7-a5ad-023bafc65e79",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "effectiveDateTime": "2017-08-05T23:35:42-04:00",
- "issued": "2017-08-05T23:35:42.651-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:aba44cf6-0c97-4d19-982c-9c3d6401342b",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "aba44cf6-0c97-4d19-982c-9c3d6401342b",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316049",
- "display": "Hydrochlorothiazide 25 MG"
- }
- ],
- "text": "Hydrochlorothiazide 25 MG"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "authoredOn": "2017-08-05T23:35:42-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "display": "Dr. Jacalyn740 Lindgren255"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:4fa11d6d-b4d3-44dc-8083-ddf01b98742f"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:91f10549-e35b-43e9-b5f7-be56d0fb5e6a",
- "resource": {
- "resourceType": "Claim",
- "id": "91f10549-e35b-43e9-b5f7-be56d0fb5e6a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2017-08-05T23:35:42-04:00",
- "end": "2017-08-05T23:50:42-04:00"
- },
- "created": "2017-08-05T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:aba44cf6-0c97-4d19-982c-9c3d6401342b"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:3e3a5e54-eb43-4c01-8354-8ce692a09f7b",
- "resource": {
- "resourceType": "Immunization",
- "id": "3e3a5e54-eb43-4c01-8354-8ce692a09f7b",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "occurrenceDateTime": "2017-08-05T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:6d6872fc-bbad-4ee3-98de-94e799f91e3f",
- "resource": {
- "resourceType": "CareTeam",
- "id": "6d6872fc-bbad-4ee3-98de-94e799f91e3f",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "period": {
- "start": "2017-08-05T23:35:42-04:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "display": "Dr. Jacalyn740 Lindgren255"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:a322b60e-8d4d-4dcc-b10d-71bf7f0393d7",
- "resource": {
- "resourceType": "Goal",
- "id": "a322b60e-8d4d-4dcc-b10d-71bf7f0393d7",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Maintain blood pressure below 140/90 mm[Hg]"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:9d267e04-f462-4b1f-8ca0-9a49038c0077",
- "resource": {
- "resourceType": "Goal",
- "id": "9d267e04-f462-4b1f-8ca0-9a49038c0077",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Reduce sodium intake to no more than 2,400 mg/day"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:aa0f3692-d429-4fff-a33e-8c04f89ee791",
- "resource": {
- "resourceType": "CarePlan",
- "id": "aa0f3692-d429-4fff-a33e-8c04f89ee791",
- "text": {
- "status": "generated",
- "div": "Care Plan for Lifestyle education regarding hypertension.
Activities:
- Lifestyle education regarding hypertension
- Lifestyle education regarding hypertension
- Lifestyle education regarding hypertension
- Lifestyle education regarding hypertension
Care plan is meant to treat Hypertension.
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "443402002",
- "display": "Lifestyle education regarding hypertension"
- }
- ],
- "text": "Lifestyle education regarding hypertension"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- },
- "period": {
- "start": "2017-08-05T23:35:42-04:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:6d6872fc-bbad-4ee3-98de-94e799f91e3f"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:4fa11d6d-b4d3-44dc-8083-ddf01b98742f"
- }
- ],
- "goal": [
- {
- "reference": "urn:uuid:a322b60e-8d4d-4dcc-b10d-71bf7f0393d7"
- },
- {
- "reference": "urn:uuid:9d267e04-f462-4b1f-8ca0-9a49038c0077"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "386463000",
- "display": "Prescribed activity/exercise education"
- }
- ],
- "text": "Prescribed activity/exercise education"
- },
- "status": "in-progress",
- "location": {
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "413473000",
- "display": "Counseling about alcohol consumption"
- }
- ],
- "text": "Counseling about alcohol consumption"
- },
- "status": "in-progress",
- "location": {
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "1151000175103",
- "display": "Dietary approaches to stop hypertension diet"
- }
- ],
- "text": "Dietary approaches to stop hypertension diet"
- },
- "status": "in-progress",
- "location": {
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225323000",
- "display": "Smoking cessation education"
- }
- ],
- "text": "Smoking cessation education"
- },
- "status": "in-progress",
- "location": {
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:f3e3ac71-3d15-4334-b349-e8bdfbd4727e",
- "resource": {
- "resourceType": "Claim",
- "id": "f3e3ac71-3d15-4334-b349-e8bdfbd4727e",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2017-08-05T23:35:42-04:00",
- "end": "2017-08-05T23:50:42-04:00"
- },
- "created": "2017-08-05T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:3e3a5e54-eb43-4c01-8354-8ce692a09f7b"
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:1dde2651-4744-47f1-9fb7-5f0fdad2b316"
- }
- },
- {
- "sequence": 2,
- "diagnosisReference": {
- "reference": "urn:uuid:4fa11d6d-b4d3-44dc-8083-ddf01b98742f"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162864005",
- "display": "Body mass index 30+ - obesity (finding)"
- }
- ],
- "text": "Body mass index 30+ - obesity (finding)"
- }
- },
- {
- "sequence": 4,
- "diagnosisSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:907ac329-6306-43fd-81a4-0ecc4d108e0d",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "907ac329-6306-43fd-81a4-0ecc4d108e0d",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "f3e3ac71-3d15-4334-b349-e8bdfbd4727e"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2017-08-05T23:50:42-04:00",
- "end": "2018-08-05T23:50:42-04:00"
- },
- "created": "2017-08-05T23:50:42-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:f3e3ac71-3d15-4334-b349-e8bdfbd4727e"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:1dde2651-4744-47f1-9fb7-5f0fdad2b316"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisReference": {
- "reference": "urn:uuid:4fa11d6d-b4d3-44dc-8083-ddf01b98742f"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-08-05T23:35:42-04:00",
- "end": "2017-08-05T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:858f7499-560d-493d-9bd4-62f55b121f1a"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2017-08-05T23:35:42-04:00",
- "end": "2017-08-05T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162864005",
- "display": "Body mass index 30+ - obesity (finding)"
- }
- ],
- "text": "Body mass index 30+ - obesity (finding)"
- },
- "servicedPeriod": {
- "start": "2017-08-05T23:35:42-04:00",
- "end": "2017-08-05T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 4,
- "diagnosisSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- },
- "servicedPeriod": {
- "start": "2017-08-05T23:35:42-04:00",
- "end": "2017-08-05T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:14b4c6bf-149b-4a9c-8e5a-fdf1ad4ae501",
- "resource": {
- "resourceType": "Encounter",
- "id": "14b4c6bf-149b-4a9c-8e5a-fdf1ad4ae501",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Hypertension follow-up encounter"
- }
- ],
- "text": "Hypertension follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- }
- ],
- "period": {
- "start": "2017-09-04T23:35:42-04:00",
- "end": "2017-09-04T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:e381d1b3-4bf5-40f2-941a-b8ddaf06a757",
- "resource": {
- "resourceType": "Observation",
- "id": "e381d1b3-4bf5-40f2-941a-b8ddaf06a757",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:14b4c6bf-149b-4a9c-8e5a-fdf1ad4ae501"
- },
- "effectiveDateTime": "2017-09-04T23:35:42-04:00",
- "issued": "2017-09-04T23:35:42.651-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 109.70230698313489,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 163.9071552178571,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7506c9db-f6aa-4430-97bc-ee37412cc921",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "7506c9db-f6aa-4430-97bc-ee37412cc921",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "746030",
- "display": "Atenolol 50 MG / Chlorthalidone 25 MG Oral Tablet"
- }
- ],
- "text": "Atenolol 50 MG / Chlorthalidone 25 MG Oral Tablet"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:14b4c6bf-149b-4a9c-8e5a-fdf1ad4ae501"
- },
- "authoredOn": "2017-09-04T23:35:42-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:4fa11d6d-b4d3-44dc-8083-ddf01b98742f"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:9283153e-0698-4835-aa8d-05cbdbe580db",
- "resource": {
- "resourceType": "Claim",
- "id": "9283153e-0698-4835-aa8d-05cbdbe580db",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2017-09-04T23:35:42-04:00",
- "end": "2017-09-04T23:50:42-04:00"
- },
- "created": "2017-09-04T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:7506c9db-f6aa-4430-97bc-ee37412cc921"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Hypertension follow-up encounter"
- }
- ],
- "text": "Hypertension follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:14b4c6bf-149b-4a9c-8e5a-fdf1ad4ae501"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:cb3febbf-46ac-41d7-95ff-db7c63ba02a5",
- "resource": {
- "resourceType": "Claim",
- "id": "cb3febbf-46ac-41d7-95ff-db7c63ba02a5",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2017-09-04T23:35:42-04:00",
- "end": "2017-09-04T23:50:42-04:00"
- },
- "created": "2017-09-04T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Hypertension follow-up encounter"
- }
- ],
- "text": "Hypertension follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:14b4c6bf-149b-4a9c-8e5a-fdf1ad4ae501"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:7c1d1efb-41ce-4dac-abdd-88b02f33b684",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "7c1d1efb-41ce-4dac-abdd-88b02f33b684",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "cb3febbf-46ac-41d7-95ff-db7c63ba02a5"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2017-09-04T23:50:42-04:00",
- "end": "2018-09-04T23:50:42-04:00"
- },
- "created": "2017-09-04T23:50:42-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:cb3febbf-46ac-41d7-95ff-db7c63ba02a5"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Hypertension follow-up encounter"
- }
- ],
- "text": "Hypertension follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2017-09-04T23:35:42-04:00",
- "end": "2017-09-04T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:14b4c6bf-149b-4a9c-8e5a-fdf1ad4ae501"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:36f889c6-1ef4-480d-9508-3811a64609b4",
- "resource": {
- "resourceType": "Encounter",
- "id": "36f889c6-1ef4-480d-9508-3811a64609b4",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Hypertension follow-up encounter"
- }
- ],
- "text": "Hypertension follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- }
- ],
- "period": {
- "start": "2017-11-03T23:35:42-04:00",
- "end": "2017-11-03T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:5725ce02-3472-4120-8fad-a390f2be133f",
- "resource": {
- "resourceType": "Observation",
- "id": "5725ce02-3472-4120-8fad-a390f2be133f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:36f889c6-1ef4-480d-9508-3811a64609b4"
- },
- "effectiveDateTime": "2017-11-03T23:35:42-04:00",
- "issued": "2017-11-03T23:35:42.651-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 110.68281728084656,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 142.96992696995835,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:bee0a162-5f61-4f95-93c9-959b118032b8",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "bee0a162-5f61-4f95-93c9-959b118032b8",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "999969",
- "display": "Amlodipine 5 MG / Hydrochlorothiazide 12.5 MG / Olmesartan medoxomil 20 MG"
- }
- ],
- "text": "Amlodipine 5 MG / Hydrochlorothiazide 12.5 MG / Olmesartan medoxomil 20 MG"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:36f889c6-1ef4-480d-9508-3811a64609b4"
- },
- "authoredOn": "2017-11-03T23:35:42-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:4fa11d6d-b4d3-44dc-8083-ddf01b98742f"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:03dfd544-531e-4ac6-a6d7-a16d46d04d0d",
- "resource": {
- "resourceType": "Claim",
- "id": "03dfd544-531e-4ac6-a6d7-a16d46d04d0d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2017-11-03T23:35:42-04:00",
- "end": "2017-11-03T23:50:42-04:00"
- },
- "created": "2017-11-03T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:bee0a162-5f61-4f95-93c9-959b118032b8"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Hypertension follow-up encounter"
- }
- ],
- "text": "Hypertension follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:36f889c6-1ef4-480d-9508-3811a64609b4"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:7e7c29e3-c5f8-46b5-a9c1-aeb7506cdd41",
- "resource": {
- "resourceType": "Claim",
- "id": "7e7c29e3-c5f8-46b5-a9c1-aeb7506cdd41",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2017-11-03T23:35:42-04:00",
- "end": "2017-11-03T23:50:42-04:00"
- },
- "created": "2017-11-03T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Hypertension follow-up encounter"
- }
- ],
- "text": "Hypertension follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:36f889c6-1ef4-480d-9508-3811a64609b4"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:48f9993b-84fd-4b4b-afbb-25c45765cceb",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "48f9993b-84fd-4b4b-afbb-25c45765cceb",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "7e7c29e3-c5f8-46b5-a9c1-aeb7506cdd41"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2017-11-03T23:50:42-04:00",
- "end": "2018-11-03T23:50:42-04:00"
- },
- "created": "2017-11-03T23:50:42-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:7e7c29e3-c5f8-46b5-a9c1-aeb7506cdd41"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Hypertension follow-up encounter"
- }
- ],
- "text": "Hypertension follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2017-11-03T23:35:42-04:00",
- "end": "2017-11-03T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:36f889c6-1ef4-480d-9508-3811a64609b4"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:8dcc9b79-6d7c-4d15-bfce-4a27ac0ae79b",
- "resource": {
- "resourceType": "Encounter",
- "id": "8dcc9b79-6d7c-4d15-bfce-4a27ac0ae79b",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Hypertension follow-up encounter"
- }
- ],
- "text": "Hypertension follow-up encounter"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- }
- ],
- "period": {
- "start": "2018-01-02T22:35:42-05:00",
- "end": "2018-01-02T23:05:42-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a17c0152-a871-4c6e-b337-87ec57b0fa49",
- "resource": {
- "resourceType": "Observation",
- "id": "a17c0152-a871-4c6e-b337-87ec57b0fa49",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:8dcc9b79-6d7c-4d15-bfce-4a27ac0ae79b"
- },
- "effectiveDateTime": "2018-01-02T22:35:42-05:00",
- "issued": "2018-01-02T22:35:42.651-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 99.67155697698848,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 147.9412314150588,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6392bf2a-eaa8-4996-a87e-43d9a4fa6f58",
- "resource": {
- "resourceType": "Procedure",
- "id": "6392bf2a-eaa8-4996-a87e-43d9a4fa6f58",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183856001",
- "display": "Referral to hypertension clinic"
- }
- ],
- "text": "Referral to hypertension clinic"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:8dcc9b79-6d7c-4d15-bfce-4a27ac0ae79b"
- },
- "performedPeriod": {
- "start": "2018-01-02T22:35:42-05:00",
- "end": "2018-01-02T22:50:42-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:7b5f883f-7ea3-4d38-9109-5429de42cc75",
- "resource": {
- "resourceType": "Claim",
- "id": "7b5f883f-7ea3-4d38-9109-5429de42cc75",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2018-01-02T22:35:42-05:00",
- "end": "2018-01-02T23:05:42-05:00"
- },
- "created": "2018-01-02T23:05:42-05:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:6392bf2a-eaa8-4996-a87e-43d9a4fa6f58"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Hypertension follow-up encounter"
- }
- ],
- "text": "Hypertension follow-up encounter"
- },
- "encounter": [
- {
- "reference": "urn:uuid:8dcc9b79-6d7c-4d15-bfce-4a27ac0ae79b"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183856001",
- "display": "Referral to hypertension clinic"
- }
- ],
- "text": "Referral to hypertension clinic"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:491d2890-4fb7-4367-975a-a862376a2bd7",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "491d2890-4fb7-4367-975a-a862376a2bd7",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "7b5f883f-7ea3-4d38-9109-5429de42cc75"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2018-01-02T23:05:42-05:00",
- "end": "2019-01-02T23:05:42-05:00"
- },
- "created": "2018-01-02T23:05:42-05:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:7b5f883f-7ea3-4d38-9109-5429de42cc75"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "390906007",
- "display": "Hypertension follow-up encounter"
- }
- ],
- "text": "Hypertension follow-up encounter"
- },
- "servicedPeriod": {
- "start": "2018-01-02T22:35:42-05:00",
- "end": "2018-01-02T23:05:42-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:8dcc9b79-6d7c-4d15-bfce-4a27ac0ae79b"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "183856001",
- "display": "Referral to hypertension clinic"
- }
- ],
- "text": "Referral to hypertension clinic"
- },
- "servicedPeriod": {
- "start": "2018-01-02T22:35:42-05:00",
- "end": "2018-01-02T23:05:42-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:b29706c4-2e57-41f7-8e7d-cd510bfd8d4a",
- "resource": {
- "resourceType": "Encounter",
- "id": "b29706c4-2e57-41f7-8e7d-cd510bfd8d4a",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- }
- ],
- "period": {
- "start": "2018-05-13T23:35:42-04:00",
- "end": "2018-05-13T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:42ae14d1-af65-4ab2-ab85-7aa3528b3117",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "42ae14d1-af65-4ab2-ab85-7aa3528b3117",
- "status": "stopped",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "757594",
- "display": "Jolivette 28 Day Pack"
- }
- ],
- "text": "Jolivette 28 Day Pack"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:b29706c4-2e57-41f7-8e7d-cd510bfd8d4a"
- },
- "authoredOn": "2018-05-13T23:35:42-04:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a",
- "display": "Dr. Roberto515 Haag279"
- }
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:1407ea30-f713-4002-b680-247a84176d4b",
- "resource": {
- "resourceType": "Claim",
- "id": "1407ea30-f713-4002-b680-247a84176d4b",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2018-05-13T23:35:42-04:00",
- "end": "2018-05-13T23:50:42-04:00"
- },
- "created": "2018-05-13T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:42ae14d1-af65-4ab2-ab85-7aa3528b3117"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:b29706c4-2e57-41f7-8e7d-cd510bfd8d4a"
- }
- ]
- }
- ],
- "total": {
- "value": 30.75,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:ac80378d-afdb-40ca-a96a-217d00ec27a9",
- "resource": {
- "resourceType": "Claim",
- "id": "ac80378d-afdb-40ca-a96a-217d00ec27a9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2018-05-13T23:35:42-04:00",
- "end": "2018-05-13T23:50:42-04:00"
- },
- "created": "2018-05-13T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:a9f20dc1-5147-3789-bcef-bbecb41c5983",
- "display": "HOLY FAMILY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "encounter": [
- {
- "reference": "urn:uuid:b29706c4-2e57-41f7-8e7d-cd510bfd8d4a"
- }
- ]
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:eb9fc85c-7469-4cb0-a6bd-f3e56798404f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "eb9fc85c-7469-4cb0-a6bd-f3e56798404f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "ac80378d-afdb-40ca-a96a-217d00ec27a9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2018-05-13T23:50:42-04:00",
- "end": "2019-05-13T23:50:42-04:00"
- },
- "created": "2018-05-13T23:50:42-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:ac80378d-afdb-40ca-a96a-217d00ec27a9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-00000000014a"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "698314001",
- "display": "Consultation for treatment"
- }
- ],
- "text": "Consultation for treatment"
- },
- "servicedPeriod": {
- "start": "2018-05-13T23:35:42-04:00",
- "end": "2018-05-13T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:b29706c4-2e57-41f7-8e7d-cd510bfd8d4a"
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:51d12755-88a9-4861-985f-4ec3f734bf63",
- "resource": {
- "resourceType": "Encounter",
- "id": "51d12755-88a9-4861-985f-4ec3f734bf63",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Ms. Tania553 Harris789"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce",
- "display": "Dr. Jacalyn740 Lindgren255"
- }
- }
- ],
- "period": {
- "start": "2018-08-11T23:35:42-04:00",
- "end": "2018-08-11T23:50:42-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:170d30dc-66b2-4c9e-9f6c-b6074932bb46",
- "resource": {
- "resourceType": "Observation",
- "id": "170d30dc-66b2-4c9e-9f6c-b6074932bb46",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:51d12755-88a9-4861-985f-4ec3f734bf63"
- },
- "effectiveDateTime": "2018-08-11T23:35:42-04:00",
- "issued": "2018-08-11T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 152.26816916412497,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a722c8f1-950e-4a47-b158-e59df9096608",
- "resource": {
- "resourceType": "Observation",
- "id": "a722c8f1-950e-4a47-b158-e59df9096608",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:51d12755-88a9-4861-985f-4ec3f734bf63"
- },
- "effectiveDateTime": "2018-08-11T23:35:42-04:00",
- "issued": "2018-08-11T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 2.3907776840875865,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8a07f639-b7f7-4367-beb2-5019cdefbbfc",
- "resource": {
- "resourceType": "Observation",
- "id": "8a07f639-b7f7-4367-beb2-5019cdefbbfc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:51d12755-88a9-4861-985f-4ec3f734bf63"
- },
- "effectiveDateTime": "2018-08-11T23:35:42-04:00",
- "issued": "2018-08-11T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 72.07338046953858,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9cbbe94e-6928-4d62-8c23-2439f199466d",
- "resource": {
- "resourceType": "Observation",
- "id": "9cbbe94e-6928-4d62-8c23-2439f199466d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:51d12755-88a9-4861-985f-4ec3f734bf63"
- },
- "effectiveDateTime": "2018-08-11T23:35:42-04:00",
- "issued": "2018-08-11T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 31.08541290865568,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d4651b24-9a80-4a46-90a2-29a851c2d2ce",
- "resource": {
- "resourceType": "Observation",
- "id": "d4651b24-9a80-4a46-90a2-29a851c2d2ce",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "59576-9",
- "display": "Body mass index (BMI) [Percentile] Per age and gender"
- }
- ],
- "text": "Body mass index (BMI) [Percentile] Per age and gender"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:51d12755-88a9-4861-985f-4ec3f734bf63"
- },
- "effectiveDateTime": "2018-08-11T23:35:42-04:00",
- "issued": "2018-08-11T23:35:42.651-04:00",
- "valueQuantity": {
- "value": 94.93558382536055,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e16d3136-7f42-44e1-89fd-503e8764d41d",
- "resource": {
- "resourceType": "Observation",
- "id": "e16d3136-7f42-44e1-89fd-503e8764d41d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:51d12755-88a9-4861-985f-4ec3f734bf63"
- },
- "effectiveDateTime": "2018-08-11T23:35:42-04:00",
- "issued": "2018-08-11T23:35:42.651-04:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 110.4401769347791,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 154.09745345898082,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a3bf4137-e096-46ff-a829-11f58a7a365c",
- "resource": {
- "resourceType": "Observation",
- "id": "a3bf4137-e096-46ff-a829-11f58a7a365c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:51d12755-88a9-4861-985f-4ec3f734bf63"
- },
- "effectiveDateTime": "2018-08-11T23:35:42-04:00",
- "issued": "2018-08-11T23:35:42.651-04:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:76b47b2c-6f91-47cb-8c69-f33ea345efcb",
- "resource": {
- "resourceType": "Immunization",
- "id": "76b47b2c-6f91-47cb-8c69-f33ea345efcb",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "encounter": {
- "reference": "urn:uuid:51d12755-88a9-4861-985f-4ec3f734bf63"
- },
- "occurrenceDateTime": "2018-08-11T23:35:42-04:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:3602f834-1408-41d4-95b2-770fa35821a0",
- "resource": {
- "resourceType": "Claim",
- "id": "3602f834-1408-41d4-95b2-770fa35821a0",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a",
- "display": "Tania553 Harris789"
- },
- "billablePeriod": {
- "start": "2018-08-11T23:35:42-04:00",
- "end": "2018-08-11T23:50:42-04:00"
- },
- "created": "2018-08-11T23:50:42-04:00",
- "provider": {
- "reference": "urn:uuid:783421ae-905a-3082-ae86-cb958fffaa7c",
- "display": "GEMINI PHYSICAL THERAPY LLC"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:76b47b2c-6f91-47cb-8c69-f33ea345efcb"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:51d12755-88a9-4861-985f-4ec3f734bf63"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:7365faf1-cf9e-489c-904e-65aff0d6e92e",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "7365faf1-cf9e-489c-904e-65aff0d6e92e",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3602f834-1408-41d4-95b2-770fa35821a0"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:57959813-8cd2-4e3c-8970-e4364b74980a"
- },
- "billablePeriod": {
- "start": "2018-08-11T23:50:42-04:00",
- "end": "2019-08-11T23:50:42-04:00"
- },
- "created": "2018-08-11T23:50:42-04:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3602f834-1408-41d4-95b2-770fa35821a0"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000081ce"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-08-11T23:35:42-04:00",
- "end": "2018-08-11T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:51d12755-88a9-4861-985f-4ec3f734bf63"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2018-08-11T23:35:42-04:00",
- "end": "2018-08-11T23:50:42-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- }
- ]
-}
diff --git a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Willian804_Moen819_439b24b4-6f25-4093-b101-47a39bd061ca.json b/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Willian804_Moen819_439b24b4-6f25-4093-b101-47a39bd061ca.json
deleted file mode 100644
index e6a8f259..00000000
--- a/backend/pkg/hub/internal/fhir/base/testdata/fixtures/401-R4/bundle/synthea_Willian804_Moen819_439b24b4-6f25-4093-b101-47a39bd061ca.json
+++ /dev/null
@@ -1,14908 +0,0 @@
-{
- "resourceType": "Bundle",
- "type": "transaction",
- "entry": [
- {
- "fullUrl": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "resource": {
- "resourceType": "Patient",
- "id": "17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "text": {
- "status": "generated",
- "div": "Generated by
Synthea.Version identifier: v2.4.0-404-ge7ce2295\n . Person seed: 186383988687977231 Population seed: 0
"
- },
- "extension": [
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2054-5",
- "display": "Black or African American"
- }
- },
- {
- "url": "text",
- "valueString": "Black or African American"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
- "extension": [
- {
- "url": "ombCategory",
- "valueCoding": {
- "system": "urn:oid:2.16.840.1.113883.6.238",
- "code": "2186-5",
- "display": "Not Hispanic or Latino"
- }
- },
- {
- "url": "text",
- "valueString": "Not Hispanic or Latino"
- }
- ]
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName",
- "valueString": "Delois358 Hintz995"
- },
- {
- "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
- "valueCode": "M"
- },
- {
- "url": "http://hl7.org/fhir/StructureDefinition/patient-birthPlace",
- "valueAddress": {
- "city": "Lawrence",
- "state": "Massachusetts",
- "country": "US"
- }
- },
- {
- "url": "http://synthetichealth.github.io/synthea/disability-adjusted-life-years",
- "valueDecimal": 0.09827400029822156
- },
- {
- "url": "http://synthetichealth.github.io/synthea/quality-adjusted-life-years",
- "valueDecimal": 62.90172599970178
- }
- ],
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "439b24b4-6f25-4093-b101-47a39bd061ca"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "MR",
- "display": "Medical Record Number"
- }
- ],
- "text": "Medical Record Number"
- },
- "system": "http://hospital.smarthealthit.org",
- "value": "439b24b4-6f25-4093-b101-47a39bd061ca"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "SS",
- "display": "Social Security Number"
- }
- ],
- "text": "Social Security Number"
- },
- "system": "http://hl7.org/fhir/sid/us-ssn",
- "value": "999-57-3355"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "DL",
- "display": "Driver's License"
- }
- ],
- "text": "Driver's License"
- },
- "system": "urn:oid:2.16.840.1.113883.4.3.25",
- "value": "S99925942"
- },
- {
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
- "code": "PPN",
- "display": "Passport Number"
- }
- ],
- "text": "Passport Number"
- },
- "system": "http://standardhealthrecord.org/fhir/StructureDefinition/passportNumber",
- "value": "X42032818X"
- }
- ],
- "name": [
- {
- "use": "official",
- "family": "Moen819",
- "given": [
- "Willian804"
- ],
- "prefix": [
- "Mr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "phone",
- "value": "555-135-7303",
- "use": "home"
- }
- ],
- "gender": "male",
- "birthDate": "1955-10-09",
- "address": [
- {
- "extension": [
- {
- "url": "http://hl7.org/fhir/StructureDefinition/geolocation",
- "extension": [
- {
- "url": "latitude",
- "valueDecimal": 42.319304553912225
- },
- {
- "url": "longitude",
- "valueDecimal": -71.17365303910063
- }
- ]
- }
- ],
- "line": [
- "545 Tromp Port Unit 55"
- ],
- "city": "Needham",
- "state": "Massachusetts",
- "postalCode": "02492",
- "country": "US"
- }
- ],
- "maritalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
- "code": "M",
- "display": "M"
- }
- ],
- "text": "M"
- },
- "multipleBirthBoolean": false,
- "communication": [
- {
- "language": {
- "coding": [
- {
- "system": "urn:ietf:bcp:47",
- "code": "en-US",
- "display": "English"
- }
- ],
- "text": "English"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Patient"
- }
- },
- {
- "fullUrl": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "resource": {
- "resourceType": "Organization",
- "id": "851964ad-fff8-3ab6-aba0-4f85090f0041",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "851964ad-fff8-3ab6-aba0-4f85090f0041"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "PCP260628",
- "telecom": [
- {
- "system": "phone",
- "value": "617-566-7831"
- }
- ],
- "address": [
- {
- "line": [
- "1863 BEACON ST"
- ],
- "city": "BROOKLINE",
- "state": "MA",
- "postalCode": "02445-4270",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-000000011a12",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "72210"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Johnston597",
- "given": [
- "Rosemarie149"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Rosemarie149.Johnston597@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "1863 BEACON ST"
- ],
- "city": "BROOKLINE",
- "state": "MA",
- "postalCode": "02445-4270",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:0552a903-5ae0-49c4-b36f-ac12dc85dcb6",
- "resource": {
- "resourceType": "Encounter",
- "id": "0552a903-5ae0-49c4-b36f-ac12dc85dcb6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- }
- ],
- "period": {
- "start": "1973-12-02T14:48:37-05:00",
- "end": "1973-12-02T15:03:37-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:3d1bcecc-397a-48d5-a83c-e75f770621c5",
- "resource": {
- "resourceType": "Condition",
- "id": "3d1bcecc-397a-48d5-a83c-e75f770621c5",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "active"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0552a903-5ae0-49c4-b36f-ac12dc85dcb6"
- },
- "onsetDateTime": "1973-12-02T14:48:37-05:00",
- "recordedDate": "1973-12-02T14:48:37-05:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:3c34e04f-9aed-45d7-bdd4-1636c88a6e68",
- "resource": {
- "resourceType": "MedicationRequest",
- "id": "3c34e04f-9aed-45d7-bdd4-1636c88a6e68",
- "status": "active",
- "intent": "order",
- "medicationCodeableConcept": {
- "coding": [
- {
- "system": "http://www.nlm.nih.gov/research/umls/rxnorm",
- "code": "316049",
- "display": "Hydrochlorothiazide 25 MG"
- }
- ],
- "text": "Hydrochlorothiazide 25 MG"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0552a903-5ae0-49c4-b36f-ac12dc85dcb6"
- },
- "authoredOn": "1973-12-02T14:48:37-05:00",
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:3d1bcecc-397a-48d5-a83c-e75f770621c5"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "MedicationRequest"
- }
- },
- {
- "fullUrl": "urn:uuid:60d039c8-e190-409a-9476-ca8522f15b89",
- "resource": {
- "resourceType": "Claim",
- "id": "60d039c8-e190-409a-9476-ca8522f15b89",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "pharmacy"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "1973-12-02T14:48:37-05:00",
- "end": "1973-12-02T15:03:37-05:00"
- },
- "created": "1973-12-02T15:03:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "prescription": {
- "reference": "urn:uuid:3c34e04f-9aed-45d7-bdd4-1636c88a6e68"
- },
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:0552a903-5ae0-49c4-b36f-ac12dc85dcb6"
- }
- ]
- }
- ],
- "total": {
- "value": 263.49,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:27be1995-69c6-4ac3-b022-1feb65ea4a53",
- "resource": {
- "resourceType": "CareTeam",
- "id": "27be1995-69c6-4ac3-b022-1feb65ea4a53",
- "status": "active",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0552a903-5ae0-49c4-b36f-ac12dc85dcb6"
- },
- "period": {
- "start": "1973-12-02T14:48:37-05:00"
- },
- "participant": [
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "116153009",
- "display": "Patient"
- }
- ],
- "text": "Patient"
- }
- ],
- "member": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Person in the healthcare environment (person)"
- }
- ],
- "text": "Person in the healthcare environment (person)"
- }
- ],
- "member": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- },
- {
- "role": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "303118004",
- "display": "Healthcare related organization (qualifier value)"
- }
- ],
- "text": "Healthcare related organization (qualifier value)"
- }
- ],
- "member": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- }
- ],
- "reasonCode": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- }
- ],
- "managingOrganization": [
- {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CareTeam"
- }
- },
- {
- "fullUrl": "urn:uuid:326d98c8-f6a8-4e58-8394-2c24c562f350",
- "resource": {
- "resourceType": "Goal",
- "id": "326d98c8-f6a8-4e58-8394-2c24c562f350",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Maintain blood pressure below 140/90 mm[Hg]"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:0fd19f4f-5ca4-42f7-b1c6-1541694be573",
- "resource": {
- "resourceType": "Goal",
- "id": "0fd19f4f-5ca4-42f7-b1c6-1541694be573",
- "lifecycleStatus": "accepted",
- "achievementStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/goal-achievement",
- "code": "in-progress"
- }
- ]
- },
- "description": {
- "text": "Reduce sodium intake to no more than 2,400 mg/day"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- }
- },
- "request": {
- "method": "POST",
- "url": "Goal"
- }
- },
- {
- "fullUrl": "urn:uuid:eb439b92-609f-4674-8dbd-c6baf6c6253e",
- "resource": {
- "resourceType": "CarePlan",
- "id": "eb439b92-609f-4674-8dbd-c6baf6c6253e",
- "text": {
- "status": "generated",
- "div": "Care Plan for Lifestyle education regarding hypertension.
Activities:
- Lifestyle education regarding hypertension
- Lifestyle education regarding hypertension
- Lifestyle education regarding hypertension
- Lifestyle education regarding hypertension
Care plan is meant to treat Hypertension.
"
- },
- "status": "active",
- "intent": "order",
- "category": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "443402002",
- "display": "Lifestyle education regarding hypertension"
- }
- ],
- "text": "Lifestyle education regarding hypertension"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0552a903-5ae0-49c4-b36f-ac12dc85dcb6"
- },
- "period": {
- "start": "1973-12-02T14:48:37-05:00"
- },
- "careTeam": [
- {
- "reference": "urn:uuid:27be1995-69c6-4ac3-b022-1feb65ea4a53"
- }
- ],
- "addresses": [
- {
- "reference": "urn:uuid:3d1bcecc-397a-48d5-a83c-e75f770621c5"
- }
- ],
- "goal": [
- {
- "reference": "urn:uuid:326d98c8-f6a8-4e58-8394-2c24c562f350"
- },
- {
- "reference": "urn:uuid:0fd19f4f-5ca4-42f7-b1c6-1541694be573"
- }
- ],
- "activity": [
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "386463000",
- "display": "Prescribed activity/exercise education"
- }
- ],
- "text": "Prescribed activity/exercise education"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP260628"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "413473000",
- "display": "Counseling about alcohol consumption"
- }
- ],
- "text": "Counseling about alcohol consumption"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP260628"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "1151000175103",
- "display": "Dietary approaches to stop hypertension diet"
- }
- ],
- "text": "Dietary approaches to stop hypertension diet"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP260628"
- }
- }
- },
- {
- "detail": {
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "225323000",
- "display": "Smoking cessation education"
- }
- ],
- "text": "Smoking cessation education"
- },
- "status": "in-progress",
- "location": {
- "display": "PCP260628"
- }
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "CarePlan"
- }
- },
- {
- "fullUrl": "urn:uuid:990027c4-140d-4bb5-8a85-a9e9740706da",
- "resource": {
- "resourceType": "Claim",
- "id": "990027c4-140d-4bb5-8a85-a9e9740706da",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "1973-12-02T14:48:37-05:00",
- "end": "1973-12-02T15:03:37-05:00"
- },
- "created": "1973-12-02T15:03:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:3d1bcecc-397a-48d5-a83c-e75f770621c5"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:0552a903-5ae0-49c4-b36f-ac12dc85dcb6"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:cc9c79fb-fbe7-478a-a5a0-e85a7024e29c",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "cc9c79fb-fbe7-478a-a5a0-e85a7024e29c",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "990027c4-140d-4bb5-8a85-a9e9740706da"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "1973-12-02T15:03:37-05:00",
- "end": "1974-12-02T15:03:37-05:00"
- },
- "created": "1973-12-02T15:03:37-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:990027c4-140d-4bb5-8a85-a9e9740706da"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:3d1bcecc-397a-48d5-a83c-e75f770621c5"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "1973-12-02T14:48:37-05:00",
- "end": "1973-12-02T15:03:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:0552a903-5ae0-49c4-b36f-ac12dc85dcb6"
- }
- ]
- },
- {
- "sequence": 2,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "59621000",
- "display": "Hypertension"
- }
- ],
- "text": "Hypertension"
- },
- "servicedPeriod": {
- "start": "1973-12-02T14:48:37-05:00",
- "end": "1973-12-02T15:03:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- }
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 0.0,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:2703101d-7db0-4c55-8b45-4971303d96cc",
- "resource": {
- "resourceType": "Encounter",
- "id": "2703101d-7db0-4c55-8b45-4971303d96cc",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- }
- ],
- "period": {
- "start": "2009-11-01T14:48:37-05:00",
- "end": "2009-11-01T15:18:37-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:0662a5e4-473a-43f2-8348-69ba483d5b30",
- "resource": {
- "resourceType": "Observation",
- "id": "0662a5e4-473a-43f2-8348-69ba483d5b30",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:2703101d-7db0-4c55-8b45-4971303d96cc"
- },
- "effectiveDateTime": "2009-11-01T14:48:37-05:00",
- "issued": "2009-11-01T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 190.90009202240046,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:01b7ba57-18a1-4952-a966-4d3a0460b1c6",
- "resource": {
- "resourceType": "Observation",
- "id": "01b7ba57-18a1-4952-a966-4d3a0460b1c6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:2703101d-7db0-4c55-8b45-4971303d96cc"
- },
- "effectiveDateTime": "2009-11-01T14:48:37-05:00",
- "issued": "2009-11-01T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 0.9998159383892293,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d7d7b83a-0d37-48ed-920d-a2face014d6f",
- "resource": {
- "resourceType": "Observation",
- "id": "d7d7b83a-0d37-48ed-920d-a2face014d6f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:2703101d-7db0-4c55-8b45-4971303d96cc"
- },
- "effectiveDateTime": "2009-11-01T14:48:37-05:00",
- "issued": "2009-11-01T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 95.64469582524627,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8e77f97d-1a0a-47f0-8060-2373cc67a467",
- "resource": {
- "resourceType": "Observation",
- "id": "8e77f97d-1a0a-47f0-8060-2373cc67a467",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:2703101d-7db0-4c55-8b45-4971303d96cc"
- },
- "effectiveDateTime": "2009-11-01T14:48:37-05:00",
- "issued": "2009-11-01T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 26.24512314368957,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:08e9047e-8697-42bd-926c-e64072c36bf0",
- "resource": {
- "resourceType": "Observation",
- "id": "08e9047e-8697-42bd-926c-e64072c36bf0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:2703101d-7db0-4c55-8b45-4971303d96cc"
- },
- "effectiveDateTime": "2009-11-01T14:48:37-05:00",
- "issued": "2009-11-01T14:48:37.413-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 81.18871365090006,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 125.50979599695498,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a5644a47-7beb-49c2-8298-776eb9d2f9d4",
- "resource": {
- "resourceType": "Observation",
- "id": "a5644a47-7beb-49c2-8298-776eb9d2f9d4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:2703101d-7db0-4c55-8b45-4971303d96cc"
- },
- "effectiveDateTime": "2009-11-01T14:48:37-05:00",
- "issued": "2009-11-01T14:48:37.413-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2fcd66cf-8e52-4cf6-b0de-978365636bc4",
- "resource": {
- "resourceType": "Procedure",
- "id": "2fcd66cf-8e52-4cf6-b0de-978365636bc4",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:2703101d-7db0-4c55-8b45-4971303d96cc"
- },
- "performedPeriod": {
- "start": "2009-11-01T14:48:37-05:00",
- "end": "2009-11-01T15:03:37-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:e37f9471-2a7e-4e8d-bef5-5b1d8e6ab2e0",
- "resource": {
- "resourceType": "Immunization",
- "id": "e37f9471-2a7e-4e8d-bef5-5b1d8e6ab2e0",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:2703101d-7db0-4c55-8b45-4971303d96cc"
- },
- "occurrenceDateTime": "2009-11-01T14:48:37-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:d7bf6b04-104d-416c-b25b-a413dbebc99d",
- "resource": {
- "resourceType": "Claim",
- "id": "d7bf6b04-104d-416c-b25b-a413dbebc99d",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2009-11-01T14:48:37-05:00",
- "end": "2009-11-01T15:18:37-05:00"
- },
- "created": "2009-11-01T15:18:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:e37f9471-2a7e-4e8d-bef5-5b1d8e6ab2e0"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:2fcd66cf-8e52-4cf6-b0de-978365636bc4"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:2703101d-7db0-4c55-8b45-4971303d96cc"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 697.95,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:5245f828-c1ba-469c-a7c6-404a3da04bab",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "5245f828-c1ba-469c-a7c6-404a3da04bab",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "d7bf6b04-104d-416c-b25b-a413dbebc99d"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2009-11-01T15:18:37-05:00",
- "end": "2010-11-01T15:18:37-04:00"
- },
- "created": "2009-11-01T15:18:37-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:d7bf6b04-104d-416c-b25b-a413dbebc99d"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2009-11-01T14:48:37-05:00",
- "end": "2009-11-01T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:2703101d-7db0-4c55-8b45-4971303d96cc"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2009-11-01T14:48:37-05:00",
- "end": "2009-11-01T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2009-11-01T14:48:37-05:00",
- "end": "2009-11-01T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 697.95,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 139.59,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 558.36,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 697.95,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 697.95,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 670.7760000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3d10019f-c88e-3de5-9916-6107b9c0263d",
- "resource": {
- "resourceType": "Organization",
- "id": "3d10019f-c88e-3de5-9916-6107b9c0263d",
- "identifier": [
- {
- "system": "https://github.com/synthetichealth/synthea",
- "value": "3d10019f-c88e-3de5-9916-6107b9c0263d"
- }
- ],
- "active": true,
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/organization-type",
- "code": "prov",
- "display": "Healthcare Provider"
- }
- ],
- "text": "Healthcare Provider"
- }
- ],
- "name": "NEWTON-WELLESLEY HOSPITAL",
- "telecom": [
- {
- "system": "phone",
- "value": "6172436000"
- }
- ],
- "address": [
- {
- "line": [
- "2014 WASHINGTON STREET"
- ],
- "city": "NEWTON",
- "state": "MA",
- "postalCode": "02462",
- "country": "US"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Organization"
- }
- },
- {
- "fullUrl": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4",
- "resource": {
- "resourceType": "Practitioner",
- "id": "0000016d-3a85-4cca-0000-0000000001a4",
- "identifier": [
- {
- "system": "http://hl7.org/fhir/sid/us-npi",
- "value": "420"
- }
- ],
- "active": true,
- "name": [
- {
- "family": "Cummerata161",
- "given": [
- "Genevieve884"
- ],
- "prefix": [
- "Dr."
- ]
- }
- ],
- "telecom": [
- {
- "system": "email",
- "value": "Genevieve884.Cummerata161@example.com",
- "use": "work"
- }
- ],
- "address": [
- {
- "line": [
- "2014 WASHINGTON STREET"
- ],
- "city": "NEWTON",
- "state": "MA",
- "postalCode": "02462",
- "country": "US"
- }
- ],
- "gender": "female"
- },
- "request": {
- "method": "POST",
- "url": "Practitioner"
- }
- },
- {
- "fullUrl": "urn:uuid:1d745053-17a6-4a3b-9b0e-78804d09d64a",
- "resource": {
- "resourceType": "Encounter",
- "id": "1d745053-17a6-4a3b-9b0e-78804d09d64a",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4",
- "display": "Dr. Genevieve884 Cummerata161"
- }
- }
- ],
- "period": {
- "start": "2010-10-08T15:48:37-04:00",
- "end": "2010-10-08T17:04:37-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:3d10019f-c88e-3de5-9916-6107b9c0263d",
- "display": "NEWTON-WELLESLEY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:ca6bd122-2a00-4086-911d-75772aaf392f",
- "resource": {
- "resourceType": "Condition",
- "id": "ca6bd122-2a00-4086-911d-75772aaf392f",
- "clinicalStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
- "code": "resolved"
- }
- ]
- },
- "verificationStatus": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
- "code": "confirmed"
- }
- ]
- },
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "68496003",
- "display": "Polyp of colon"
- }
- ],
- "text": "Polyp of colon"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:1d745053-17a6-4a3b-9b0e-78804d09d64a"
- },
- "onsetDateTime": "2010-10-08T15:48:37-04:00",
- "abatementDateTime": "2011-11-02T15:48:37-04:00",
- "recordedDate": "2010-10-08T15:48:37-04:00"
- },
- "request": {
- "method": "POST",
- "url": "Condition"
- }
- },
- {
- "fullUrl": "urn:uuid:b753a2ad-b124-47d9-8066-72c79c23eaf0",
- "resource": {
- "resourceType": "Observation",
- "id": "b753a2ad-b124-47d9-8066-72c79c23eaf0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "procedure",
- "display": "procedure"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "33756-8",
- "display": "Polyp size greatest dimension by CAP cancer protocols"
- }
- ],
- "text": "Polyp size greatest dimension by CAP cancer protocols"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:1d745053-17a6-4a3b-9b0e-78804d09d64a"
- },
- "effectiveDateTime": "2010-10-08T15:48:37-04:00",
- "issued": "2010-10-08T15:48:37.413-04:00",
- "valueQuantity": {
- "value": 5.088795992000894,
- "unit": "mm",
- "system": "http://unitsofmeasure.org",
- "code": "mm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fff940ac-9f52-4984-b21e-3193ffde87fb",
- "resource": {
- "resourceType": "Observation",
- "id": "fff940ac-9f52-4984-b21e-3193ffde87fb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57905-2",
- "display": "Hemoglobin.gastrointestinal [Presence] in Stool by Immunologic method"
- }
- ],
- "text": "Hemoglobin.gastrointestinal [Presence] in Stool by Immunologic method"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:1d745053-17a6-4a3b-9b0e-78804d09d64a"
- },
- "effectiveDateTime": "2010-10-08T15:48:37-04:00",
- "issued": "2010-10-08T15:48:37.413-04:00",
- "valueQuantity": {
- "value": 6.586400480963753,
- "unit": "ng/mL",
- "system": "http://unitsofmeasure.org",
- "code": "ng/mL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7a76d03b-a2ee-477c-b501-a0abf2a40d82",
- "resource": {
- "resourceType": "Procedure",
- "id": "7a76d03b-a2ee-477c-b501-a0abf2a40d82",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:1d745053-17a6-4a3b-9b0e-78804d09d64a"
- },
- "performedPeriod": {
- "start": "2010-10-08T15:48:37-04:00",
- "end": "2010-10-08T16:19:37-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:56a4b631-a179-4358-8e30-56477bf4b599",
- "resource": {
- "resourceType": "Procedure",
- "id": "56a4b631-a179-4358-8e30-56477bf4b599",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "1015401000000102",
- "display": "Fecal occult blood test"
- }
- ],
- "text": "Fecal occult blood test"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:1d745053-17a6-4a3b-9b0e-78804d09d64a"
- },
- "performedPeriod": {
- "start": "2010-10-08T15:48:37-04:00",
- "end": "2010-10-08T16:03:37-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:ca6bd122-2a00-4086-911d-75772aaf392f",
- "display": "Polyp of colon"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:f925dd38-9aa8-44f4-95d1-b0cc41104a16",
- "resource": {
- "resourceType": "Procedure",
- "id": "f925dd38-9aa8-44f4-95d1-b0cc41104a16",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274031008",
- "display": "Rectal polypectomy"
- }
- ],
- "text": "Rectal polypectomy"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:1d745053-17a6-4a3b-9b0e-78804d09d64a"
- },
- "performedPeriod": {
- "start": "2010-10-08T15:48:37-04:00",
- "end": "2010-10-08T16:03:37-04:00"
- },
- "reasonReference": [
- {
- "reference": "urn:uuid:ca6bd122-2a00-4086-911d-75772aaf392f",
- "display": "Polyp of colon"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:6defce70-f862-4e9e-962e-1cdfb9e7c9d3",
- "resource": {
- "resourceType": "Claim",
- "id": "6defce70-f862-4e9e-962e-1cdfb9e7c9d3",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2010-10-08T15:48:37-04:00",
- "end": "2010-10-08T17:04:37-04:00"
- },
- "created": "2010-10-08T17:04:37-04:00",
- "provider": {
- "reference": "urn:uuid:3d10019f-c88e-3de5-9916-6107b9c0263d",
- "display": "NEWTON-WELLESLEY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:ca6bd122-2a00-4086-911d-75772aaf392f"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:7a76d03b-a2ee-477c-b501-a0abf2a40d82"
- }
- },
- {
- "sequence": 2,
- "procedureReference": {
- "reference": "urn:uuid:56a4b631-a179-4358-8e30-56477bf4b599"
- }
- },
- {
- "sequence": 3,
- "procedureReference": {
- "reference": "urn:uuid:f925dd38-9aa8-44f4-95d1-b0cc41104a16"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "encounter": [
- {
- "reference": "urn:uuid:1d745053-17a6-4a3b-9b0e-78804d09d64a"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "net": {
- "value": 11307.07,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "diagnosisSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "68496003",
- "display": "Polyp of colon"
- }
- ],
- "text": "Polyp of colon"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "1015401000000102",
- "display": "Fecal occult blood test"
- }
- ],
- "text": "Fecal occult blood test"
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "sequence": 5,
- "procedureSequence": [
- 3
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274031008",
- "display": "Rectal polypectomy"
- }
- ],
- "text": "Rectal polypectomy"
- },
- "net": {
- "value": 13613.85,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:0542cd45-c5c9-4c0f-b0c8-3f14dafe685f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "0542cd45-c5c9-4c0f-b0c8-3f14dafe685f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "6defce70-f862-4e9e-962e-1cdfb9e7c9d3"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2010-10-08T17:04:37-04:00",
- "end": "2011-10-08T17:04:37-04:00"
- },
- "created": "2010-10-08T17:04:37-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:6defce70-f862-4e9e-962e-1cdfb9e7c9d3"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "diagnosis": [
- {
- "sequence": 1,
- "diagnosisReference": {
- "reference": "urn:uuid:ca6bd122-2a00-4086-911d-75772aaf392f"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype",
- "code": "principal"
- }
- ]
- }
- ]
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "servicedPeriod": {
- "start": "2010-10-08T15:48:37-04:00",
- "end": "2010-10-08T17:04:37-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:1d745053-17a6-4a3b-9b0e-78804d09d64a"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "servicedPeriod": {
- "start": "2010-10-08T15:48:37-04:00",
- "end": "2010-10-08T17:04:37-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 11307.07,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2261.414,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 9045.656,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 11307.07,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 11307.07,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "diagnosisSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "68496003",
- "display": "Polyp of colon"
- }
- ],
- "text": "Polyp of colon"
- },
- "servicedPeriod": {
- "start": "2010-10-08T15:48:37-04:00",
- "end": "2010-10-08T17:04:37-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- }
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "1015401000000102",
- "display": "Fecal occult blood test"
- }
- ],
- "text": "Fecal occult blood test"
- },
- "servicedPeriod": {
- "start": "2010-10-08T15:48:37-04:00",
- "end": "2010-10-08T17:04:37-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 516.65,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.33,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 413.32,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 516.65,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 5,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "274031008",
- "display": "Rectal polypectomy"
- }
- ],
- "text": "Rectal polypectomy"
- },
- "servicedPeriod": {
- "start": "2010-10-08T15:48:37-04:00",
- "end": "2010-10-08T17:04:37-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 13613.85,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2722.7700000000004,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 10891.080000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 13613.85,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 13613.85,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 20350.056000000004,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:0bc29f84-96ee-4abe-9832-83628705ed37",
- "resource": {
- "resourceType": "Encounter",
- "id": "0bc29f84-96ee-4abe-9832-83628705ed37",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- }
- ],
- "period": {
- "start": "2010-11-07T14:48:37-05:00",
- "end": "2010-11-07T15:18:37-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a031782d-2b5e-4345-9ba0-e38f97738f5b",
- "resource": {
- "resourceType": "Observation",
- "id": "a031782d-2b5e-4345-9ba0-e38f97738f5b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0bc29f84-96ee-4abe-9832-83628705ed37"
- },
- "effectiveDateTime": "2010-11-07T14:48:37-05:00",
- "issued": "2010-11-07T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 190.90009202240046,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:154c221c-1a08-4817-bd38-e395833c86ea",
- "resource": {
- "resourceType": "Observation",
- "id": "154c221c-1a08-4817-bd38-e395833c86ea",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0bc29f84-96ee-4abe-9832-83628705ed37"
- },
- "effectiveDateTime": "2010-11-07T14:48:37-05:00",
- "issued": "2010-11-07T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 2.5816342851624787,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:afccfa43-30dc-48ca-bbc8-6920407c9107",
- "resource": {
- "resourceType": "Observation",
- "id": "afccfa43-30dc-48ca-bbc8-6920407c9107",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0bc29f84-96ee-4abe-9832-83628705ed37"
- },
- "effectiveDateTime": "2010-11-07T14:48:37-05:00",
- "issued": "2010-11-07T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 95.64469582524627,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5d23bdb0-37f6-4d3c-99eb-0c61ec54c790",
- "resource": {
- "resourceType": "Observation",
- "id": "5d23bdb0-37f6-4d3c-99eb-0c61ec54c790",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0bc29f84-96ee-4abe-9832-83628705ed37"
- },
- "effectiveDateTime": "2010-11-07T14:48:37-05:00",
- "issued": "2010-11-07T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 26.24512314368957,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:764ea2ab-1c20-44b9-9e58-6e71c23d5e6a",
- "resource": {
- "resourceType": "Observation",
- "id": "764ea2ab-1c20-44b9-9e58-6e71c23d5e6a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0bc29f84-96ee-4abe-9832-83628705ed37"
- },
- "effectiveDateTime": "2010-11-07T14:48:37-05:00",
- "issued": "2010-11-07T14:48:37.413-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 82.99514799129005,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 120.90929097435658,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:01fe3246-40db-4705-b9e3-0c7e16cbc480",
- "resource": {
- "resourceType": "Observation",
- "id": "01fe3246-40db-4705-b9e3-0c7e16cbc480",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0bc29f84-96ee-4abe-9832-83628705ed37"
- },
- "effectiveDateTime": "2010-11-07T14:48:37-05:00",
- "issued": "2010-11-07T14:48:37.413-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f5afd82b-5e13-4ee3-92c1-a0fcb623b973",
- "resource": {
- "resourceType": "Procedure",
- "id": "f5afd82b-5e13-4ee3-92c1-a0fcb623b973",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0bc29f84-96ee-4abe-9832-83628705ed37"
- },
- "performedPeriod": {
- "start": "2010-11-07T14:48:37-05:00",
- "end": "2010-11-07T15:03:37-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:5462b21a-9aa9-481d-87b9-cf23ed8af0df",
- "resource": {
- "resourceType": "Immunization",
- "id": "5462b21a-9aa9-481d-87b9-cf23ed8af0df",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:0bc29f84-96ee-4abe-9832-83628705ed37"
- },
- "occurrenceDateTime": "2010-11-07T14:48:37-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:e8376827-f2e1-4591-be74-a8986eb09615",
- "resource": {
- "resourceType": "Claim",
- "id": "e8376827-f2e1-4591-be74-a8986eb09615",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2010-11-07T14:48:37-05:00",
- "end": "2010-11-07T15:18:37-05:00"
- },
- "created": "2010-11-07T15:18:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:5462b21a-9aa9-481d-87b9-cf23ed8af0df"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:f5afd82b-5e13-4ee3-92c1-a0fcb623b973"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:0bc29f84-96ee-4abe-9832-83628705ed37"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 515.08,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:db534821-90a5-44dc-9741-4d8f627168a7",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "db534821-90a5-44dc-9741-4d8f627168a7",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "e8376827-f2e1-4591-be74-a8986eb09615"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2010-11-07T15:18:37-05:00",
- "end": "2011-11-07T15:18:37-05:00"
- },
- "created": "2010-11-07T15:18:37-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:e8376827-f2e1-4591-be74-a8986eb09615"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-11-07T14:48:37-05:00",
- "end": "2010-11-07T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:0bc29f84-96ee-4abe-9832-83628705ed37"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2010-11-07T14:48:37-05:00",
- "end": "2010-11-07T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2010-11-07T14:48:37-05:00",
- "end": "2010-11-07T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 515.08,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 103.01600000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 412.0640000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 515.08,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 515.08,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 524.4800000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:25860449-3af9-4347-bffa-abe4b1844022",
- "resource": {
- "resourceType": "Encounter",
- "id": "25860449-3af9-4347-bffa-abe4b1844022",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4",
- "display": "Dr. Genevieve884 Cummerata161"
- }
- }
- ],
- "period": {
- "start": "2011-11-02T15:48:37-04:00",
- "end": "2011-11-02T16:44:37-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:3d10019f-c88e-3de5-9916-6107b9c0263d",
- "display": "NEWTON-WELLESLEY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:a421a1b4-1276-4729-a990-2465cd9563ed",
- "resource": {
- "resourceType": "Procedure",
- "id": "a421a1b4-1276-4729-a990-2465cd9563ed",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:25860449-3af9-4347-bffa-abe4b1844022"
- },
- "performedPeriod": {
- "start": "2011-11-02T15:48:37-04:00",
- "end": "2011-11-02T16:29:37-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:85b1146f-61b1-45f4-b66a-d5b1df60537c",
- "resource": {
- "resourceType": "Claim",
- "id": "85b1146f-61b1-45f4-b66a-d5b1df60537c",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2011-11-02T15:48:37-04:00",
- "end": "2011-11-02T16:44:37-04:00"
- },
- "created": "2011-11-02T16:44:37-04:00",
- "provider": {
- "reference": "urn:uuid:3d10019f-c88e-3de5-9916-6107b9c0263d",
- "display": "NEWTON-WELLESLEY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:a421a1b4-1276-4729-a990-2465cd9563ed"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "encounter": [
- {
- "reference": "urn:uuid:25860449-3af9-4347-bffa-abe4b1844022"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "net": {
- "value": 9996.42,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:b2b67cba-b573-480d-ba2c-0b5cacb665a4",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "b2b67cba-b573-480d-ba2c-0b5cacb665a4",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "85b1146f-61b1-45f4-b66a-d5b1df60537c"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2011-11-02T16:44:37-04:00",
- "end": "2012-11-02T16:44:37-04:00"
- },
- "created": "2011-11-02T16:44:37-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:85b1146f-61b1-45f4-b66a-d5b1df60537c"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "servicedPeriod": {
- "start": "2011-11-02T15:48:37-04:00",
- "end": "2011-11-02T16:44:37-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:25860449-3af9-4347-bffa-abe4b1844022"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "servicedPeriod": {
- "start": "2011-11-02T15:48:37-04:00",
- "end": "2011-11-02T16:44:37-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 9996.42,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 1999.284,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 7997.136,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9996.42,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 9996.42,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 7997.136,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9",
- "resource": {
- "resourceType": "Encounter",
- "id": "7c2f65f9-8236-4044-949d-462b11fd1bd9",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- }
- ],
- "period": {
- "start": "2011-11-13T14:48:37-05:00",
- "end": "2011-11-13T15:18:37-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:03ad2655-c860-4e72-b332-5105aa8af505",
- "resource": {
- "resourceType": "Observation",
- "id": "03ad2655-c860-4e72-b332-5105aa8af505",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "effectiveDateTime": "2011-11-13T14:48:37-05:00",
- "issued": "2011-11-13T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 190.90009202240046,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3dce9566-fe11-4ea2-9ab1-531da1cc0432",
- "resource": {
- "resourceType": "Observation",
- "id": "3dce9566-fe11-4ea2-9ab1-531da1cc0432",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "effectiveDateTime": "2011-11-13T14:48:37-05:00",
- "issued": "2011-11-13T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 0.4820291180847551,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7de55873-901e-4e4a-9e1f-fbeb7fbe1ac9",
- "resource": {
- "resourceType": "Observation",
- "id": "7de55873-901e-4e4a-9e1f-fbeb7fbe1ac9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "effectiveDateTime": "2011-11-13T14:48:37-05:00",
- "issued": "2011-11-13T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 95.64469582524627,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:327bdd20-8f06-47b1-ad4c-5d9504ca91fe",
- "resource": {
- "resourceType": "Observation",
- "id": "327bdd20-8f06-47b1-ad4c-5d9504ca91fe",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "effectiveDateTime": "2011-11-13T14:48:37-05:00",
- "issued": "2011-11-13T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 26.24512314368957,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7bdc8465-c724-46e7-a484-c87cea38b8d8",
- "resource": {
- "resourceType": "Observation",
- "id": "7bdc8465-c724-46e7-a484-c87cea38b8d8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "effectiveDateTime": "2011-11-13T14:48:37-05:00",
- "issued": "2011-11-13T14:48:37.413-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 78.58012900882035,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 120.52576635453681,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:91ce7086-f854-4b32-a9a6-1607a9d37e57",
- "resource": {
- "resourceType": "Observation",
- "id": "91ce7086-f854-4b32-a9a6-1607a9d37e57",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "effectiveDateTime": "2011-11-13T14:48:37-05:00",
- "issued": "2011-11-13T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 191.72055690515637,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:446435c2-5d8e-42fc-bbfa-f5f3e1cb549a",
- "resource": {
- "resourceType": "Observation",
- "id": "446435c2-5d8e-42fc-bbfa-f5f3e1cb549a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "effectiveDateTime": "2011-11-13T14:48:37-05:00",
- "issued": "2011-11-13T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 130.02222119343168,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:56cbcec0-d63f-4aac-a02e-538ea8a453e0",
- "resource": {
- "resourceType": "Observation",
- "id": "56cbcec0-d63f-4aac-a02e-538ea8a453e0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "effectiveDateTime": "2011-11-13T14:48:37-05:00",
- "issued": "2011-11-13T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 86.5027923294257,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1f354fef-adba-44cc-a050-f8b3fe8605a0",
- "resource": {
- "resourceType": "Observation",
- "id": "1f354fef-adba-44cc-a050-f8b3fe8605a0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "effectiveDateTime": "2011-11-13T14:48:37-05:00",
- "issued": "2011-11-13T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 79.21332033704434,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:66bfb324-0049-4cf8-a186-11d468e5b685",
- "resource": {
- "resourceType": "Observation",
- "id": "66bfb324-0049-4cf8-a186-11d468e5b685",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "effectiveDateTime": "2011-11-13T14:48:37-05:00",
- "issued": "2011-11-13T14:48:37.413-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c0509ed5-b73c-4320-92e7-39a528cf919f",
- "resource": {
- "resourceType": "Procedure",
- "id": "c0509ed5-b73c-4320-92e7-39a528cf919f",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "performedPeriod": {
- "start": "2011-11-13T14:48:37-05:00",
- "end": "2011-11-13T15:03:37-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:a64ce13d-9670-4467-a3e4-e1d926c53ff6",
- "resource": {
- "resourceType": "Immunization",
- "id": "a64ce13d-9670-4467-a3e4-e1d926c53ff6",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "occurrenceDateTime": "2011-11-13T14:48:37-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:465a8ae2-db78-4894-ab0b-253056fb7a8f",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "465a8ae2-db78-4894-ab0b-253056fb7a8f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- },
- "effectiveDateTime": "2011-11-13T14:48:37-05:00",
- "issued": "2011-11-13T14:48:37.413-05:00",
- "result": [
- {
- "reference": "urn:uuid:91ce7086-f854-4b32-a9a6-1607a9d37e57",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:446435c2-5d8e-42fc-bbfa-f5f3e1cb549a",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:56cbcec0-d63f-4aac-a02e-538ea8a453e0",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:1f354fef-adba-44cc-a050-f8b3fe8605a0",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:a497ce30-28f3-4fb2-9b04-aebab0c3149a",
- "resource": {
- "resourceType": "Claim",
- "id": "a497ce30-28f3-4fb2-9b04-aebab0c3149a",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2011-11-13T14:48:37-05:00",
- "end": "2011-11-13T15:18:37-05:00"
- },
- "created": "2011-11-13T15:18:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:a64ce13d-9670-4467-a3e4-e1d926c53ff6"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:c0509ed5-b73c-4320-92e7-39a528cf919f"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 602.31,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:4a8082dc-dd18-4cbc-99c4-f683517db9a5",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "4a8082dc-dd18-4cbc-99c4-f683517db9a5",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "a497ce30-28f3-4fb2-9b04-aebab0c3149a"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2011-11-13T15:18:37-05:00",
- "end": "2012-11-13T15:18:37-05:00"
- },
- "created": "2011-11-13T15:18:37-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:a497ce30-28f3-4fb2-9b04-aebab0c3149a"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2011-11-13T14:48:37-05:00",
- "end": "2011-11-13T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:7c2f65f9-8236-4044-949d-462b11fd1bd9"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2011-11-13T14:48:37-05:00",
- "end": "2011-11-13T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2011-11-13T14:48:37-05:00",
- "end": "2011-11-13T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 602.31,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 120.46199999999999,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 481.84799999999996,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 602.31,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 602.31,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 594.264,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085",
- "resource": {
- "resourceType": "Encounter",
- "id": "f102e2f9-3d78-4eb9-89a5-a154695ec085",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- }
- ],
- "period": {
- "start": "2012-11-18T14:48:37-05:00",
- "end": "2012-11-18T15:03:37-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:cd403c81-b841-4fb2-aecd-68102235771a",
- "resource": {
- "resourceType": "Observation",
- "id": "cd403c81-b841-4fb2-aecd-68102235771a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 190.90009202240046,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9a095a0a-c7c3-4bf4-ad52-834619096947",
- "resource": {
- "resourceType": "Observation",
- "id": "9a095a0a-c7c3-4bf4-ad52-834619096947",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 0.8454277263098029,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c07a2fd9-1afd-41f6-a767-cf365bfc59ab",
- "resource": {
- "resourceType": "Observation",
- "id": "c07a2fd9-1afd-41f6-a767-cf365bfc59ab",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 95.64469582524627,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:834fd90c-3470-43f6-a686-a81c9f28930e",
- "resource": {
- "resourceType": "Observation",
- "id": "834fd90c-3470-43f6-a686-a81c9f28930e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 26.24512314368957,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:4ad16924-0846-49d8-af0d-63f769f75b7f",
- "resource": {
- "resourceType": "Observation",
- "id": "4ad16924-0846-49d8-af0d-63f769f75b7f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 72.65085454592419,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 114.98153994887099,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:94d03d94-69bc-4074-b9cf-2a3c261ce88a",
- "resource": {
- "resourceType": "Observation",
- "id": "94d03d94-69bc-4074-b9cf-2a3c261ce88a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 7.509872840344881,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:04c69781-8ec3-40c8-a3ff-099758a867bf",
- "resource": {
- "resourceType": "Observation",
- "id": "04c69781-8ec3-40c8-a3ff-099758a867bf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 4.427943416965275,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ac563b78-bd01-4fd2-821c-f6537267fa0d",
- "resource": {
- "resourceType": "Observation",
- "id": "ac563b78-bd01-4fd2-821c-f6537267fa0d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 15.15416309102298,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:dfda4854-fd73-4303-aedd-46e374b26d2a",
- "resource": {
- "resourceType": "Observation",
- "id": "dfda4854-fd73-4303-aedd-46e374b26d2a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 46.75499005614434,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:dc83670c-4b64-469e-bffa-fadceddb970e",
- "resource": {
- "resourceType": "Observation",
- "id": "dc83670c-4b64-469e-bffa-fadceddb970e",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 86.99657797498494,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:763e4213-d0f7-4775-8a47-404148e05459",
- "resource": {
- "resourceType": "Observation",
- "id": "763e4213-d0f7-4775-8a47-404148e05459",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 30.58281711672172,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:3cd05ed2-76af-4734-b045-799996921ac6",
- "resource": {
- "resourceType": "Observation",
- "id": "3cd05ed2-76af-4734-b045-799996921ac6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 35.287387747107296,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8d6ff11d-7d91-4d3b-9c71-abac7f1545c6",
- "resource": {
- "resourceType": "Observation",
- "id": "8d6ff11d-7d91-4d3b-9c71-abac7f1545c6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 43.09260329314136,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:63f62470-37f2-48cc-86bd-3d6689e6a03d",
- "resource": {
- "resourceType": "Observation",
- "id": "63f62470-37f2-48cc-86bd-3d6689e6a03d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 421.3541832734728,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d1b27f4a-dc0d-49bc-a785-b4432ce90754",
- "resource": {
- "resourceType": "Observation",
- "id": "d1b27f4a-dc0d-49bc-a785-b4432ce90754",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 511.92925606371097,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:5b748f9e-2820-4dd9-9b5d-12da599030f0",
- "resource": {
- "resourceType": "Observation",
- "id": "5b748f9e-2820-4dd9-9b5d-12da599030f0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 11.447864434504197,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b314a547-4df1-43ee-8141-e5ca984857f9",
- "resource": {
- "resourceType": "Observation",
- "id": "b314a547-4df1-43ee-8141-e5ca984857f9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cc21b5a4-d79d-41a2-9f3b-e5348e9f58eb",
- "resource": {
- "resourceType": "Immunization",
- "id": "cc21b5a4-d79d-41a2-9f3b-e5348e9f58eb",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "occurrenceDateTime": "2012-11-18T14:48:37-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:8ca769f3-3f53-4c87-9e26-0c1bbe84f6d0",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "8ca769f3-3f53-4c87-9e26-0c1bbe84f6d0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- },
- "effectiveDateTime": "2012-11-18T14:48:37-05:00",
- "issued": "2012-11-18T14:48:37.413-05:00",
- "result": [
- {
- "reference": "urn:uuid:94d03d94-69bc-4074-b9cf-2a3c261ce88a",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:04c69781-8ec3-40c8-a3ff-099758a867bf",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:ac563b78-bd01-4fd2-821c-f6537267fa0d",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:dfda4854-fd73-4303-aedd-46e374b26d2a",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:dc83670c-4b64-469e-bffa-fadceddb970e",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:763e4213-d0f7-4775-8a47-404148e05459",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:3cd05ed2-76af-4734-b045-799996921ac6",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:8d6ff11d-7d91-4d3b-9c71-abac7f1545c6",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:63f62470-37f2-48cc-86bd-3d6689e6a03d",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:d1b27f4a-dc0d-49bc-a785-b4432ce90754",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:5b748f9e-2820-4dd9-9b5d-12da599030f0",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:dd2fe848-7a49-4734-8265-edaa08563e81",
- "resource": {
- "resourceType": "Claim",
- "id": "dd2fe848-7a49-4734-8265-edaa08563e81",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2012-11-18T14:48:37-05:00",
- "end": "2012-11-18T15:03:37-05:00"
- },
- "created": "2012-11-18T15:03:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:cc21b5a4-d79d-41a2-9f3b-e5348e9f58eb"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:547e70db-8d85-4a78-bd05-2d4b6725ebcc",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "547e70db-8d85-4a78-bd05-2d4b6725ebcc",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "dd2fe848-7a49-4734-8265-edaa08563e81"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2012-11-18T15:03:37-05:00",
- "end": "2013-11-18T15:03:37-05:00"
- },
- "created": "2012-11-18T15:03:37-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:dd2fe848-7a49-4734-8265-edaa08563e81"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2012-11-18T14:48:37-05:00",
- "end": "2012-11-18T15:03:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f102e2f9-3d78-4eb9-89a5-a154695ec085"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2012-11-18T14:48:37-05:00",
- "end": "2012-11-18T15:03:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:dcb3c424-90dd-49c3-9aa4-d9f24196a955",
- "resource": {
- "resourceType": "Encounter",
- "id": "dcb3c424-90dd-49c3-9aa4-d9f24196a955",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- }
- ],
- "period": {
- "start": "2013-11-24T14:48:37-05:00",
- "end": "2013-11-24T15:18:37-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:3c6e9a1f-d538-45db-bf0f-f90060833977",
- "resource": {
- "resourceType": "Observation",
- "id": "3c6e9a1f-d538-45db-bf0f-f90060833977",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:dcb3c424-90dd-49c3-9aa4-d9f24196a955"
- },
- "effectiveDateTime": "2013-11-24T14:48:37-05:00",
- "issued": "2013-11-24T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 190.90009202240046,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9c65bcff-5b47-4e1c-92af-8724b163c349",
- "resource": {
- "resourceType": "Observation",
- "id": "9c65bcff-5b47-4e1c-92af-8724b163c349",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:dcb3c424-90dd-49c3-9aa4-d9f24196a955"
- },
- "effectiveDateTime": "2013-11-24T14:48:37-05:00",
- "issued": "2013-11-24T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 0.1782054356305327,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a85dc04b-a147-44b2-8e31-a723fb1e9ac2",
- "resource": {
- "resourceType": "Observation",
- "id": "a85dc04b-a147-44b2-8e31-a723fb1e9ac2",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:dcb3c424-90dd-49c3-9aa4-d9f24196a955"
- },
- "effectiveDateTime": "2013-11-24T14:48:37-05:00",
- "issued": "2013-11-24T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 95.64469582524627,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8d101871-bad5-4253-8a4b-cc659846963c",
- "resource": {
- "resourceType": "Observation",
- "id": "8d101871-bad5-4253-8a4b-cc659846963c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:dcb3c424-90dd-49c3-9aa4-d9f24196a955"
- },
- "effectiveDateTime": "2013-11-24T14:48:37-05:00",
- "issued": "2013-11-24T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 26.24512314368957,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8bc172bd-1cb3-400e-9f12-4e9dfe1de8c7",
- "resource": {
- "resourceType": "Observation",
- "id": "8bc172bd-1cb3-400e-9f12-4e9dfe1de8c7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:dcb3c424-90dd-49c3-9aa4-d9f24196a955"
- },
- "effectiveDateTime": "2013-11-24T14:48:37-05:00",
- "issued": "2013-11-24T14:48:37.413-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 77.23438706868346,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 100.58217055330593,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c5c8027b-72ec-4113-b73e-c1424c9a3e50",
- "resource": {
- "resourceType": "Observation",
- "id": "c5c8027b-72ec-4113-b73e-c1424c9a3e50",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:dcb3c424-90dd-49c3-9aa4-d9f24196a955"
- },
- "effectiveDateTime": "2013-11-24T14:48:37-05:00",
- "issued": "2013-11-24T14:48:37.413-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:804ae8f8-5dc2-4a31-8077-4ee717228f43",
- "resource": {
- "resourceType": "Procedure",
- "id": "804ae8f8-5dc2-4a31-8077-4ee717228f43",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:dcb3c424-90dd-49c3-9aa4-d9f24196a955"
- },
- "performedPeriod": {
- "start": "2013-11-24T14:48:37-05:00",
- "end": "2013-11-24T15:03:37-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:41c7034f-d5b5-4295-8a73-4f43e3e200f9",
- "resource": {
- "resourceType": "Immunization",
- "id": "41c7034f-d5b5-4295-8a73-4f43e3e200f9",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:dcb3c424-90dd-49c3-9aa4-d9f24196a955"
- },
- "occurrenceDateTime": "2013-11-24T14:48:37-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:c1ff5513-58bf-4864-ae3a-90f22b34af44",
- "resource": {
- "resourceType": "Claim",
- "id": "c1ff5513-58bf-4864-ae3a-90f22b34af44",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2013-11-24T14:48:37-05:00",
- "end": "2013-11-24T15:18:37-05:00"
- },
- "created": "2013-11-24T15:18:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:41c7034f-d5b5-4295-8a73-4f43e3e200f9"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:804ae8f8-5dc2-4a31-8077-4ee717228f43"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:dcb3c424-90dd-49c3-9aa4-d9f24196a955"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 478.43,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:823505de-5fed-446e-8c6d-bb9a7539c0c2",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "823505de-5fed-446e-8c6d-bb9a7539c0c2",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "c1ff5513-58bf-4864-ae3a-90f22b34af44"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2013-11-24T15:18:37-05:00",
- "end": "2014-11-24T15:18:37-05:00"
- },
- "created": "2013-11-24T15:18:37-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:c1ff5513-58bf-4864-ae3a-90f22b34af44"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2013-11-24T14:48:37-05:00",
- "end": "2013-11-24T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:dcb3c424-90dd-49c3-9aa4-d9f24196a955"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2013-11-24T14:48:37-05:00",
- "end": "2013-11-24T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2013-11-24T14:48:37-05:00",
- "end": "2013-11-24T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 478.43,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 95.686,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 382.744,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 478.43,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 478.43,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 495.16,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae",
- "resource": {
- "resourceType": "Encounter",
- "id": "ea1ddc29-3d35-4ddc-81be-bef22a0b09ae",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- }
- ],
- "period": {
- "start": "2014-11-30T14:48:37-05:00",
- "end": "2014-11-30T15:18:37-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:f38bd597-e489-475e-9a58-27e449a296eb",
- "resource": {
- "resourceType": "Observation",
- "id": "f38bd597-e489-475e-9a58-27e449a296eb",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "effectiveDateTime": "2014-11-30T14:48:37-05:00",
- "issued": "2014-11-30T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 190.90009202240046,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ec0d80e5-0a6d-4627-b834-5fa88bef304d",
- "resource": {
- "resourceType": "Observation",
- "id": "ec0d80e5-0a6d-4627-b834-5fa88bef304d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "effectiveDateTime": "2014-11-30T14:48:37-05:00",
- "issued": "2014-11-30T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 3.1102358672466,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2f2528d2-aade-4651-9367-a33aee6fd83b",
- "resource": {
- "resourceType": "Observation",
- "id": "2f2528d2-aade-4651-9367-a33aee6fd83b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "effectiveDateTime": "2014-11-30T14:48:37-05:00",
- "issued": "2014-11-30T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 95.64469582524627,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6362770f-afcd-49b3-ac11-a4ec25021f77",
- "resource": {
- "resourceType": "Observation",
- "id": "6362770f-afcd-49b3-ac11-a4ec25021f77",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "effectiveDateTime": "2014-11-30T14:48:37-05:00",
- "issued": "2014-11-30T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 26.24512314368957,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:df793111-1a7a-4770-9fa0-59ef802e2194",
- "resource": {
- "resourceType": "Observation",
- "id": "df793111-1a7a-4770-9fa0-59ef802e2194",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "effectiveDateTime": "2014-11-30T14:48:37-05:00",
- "issued": "2014-11-30T14:48:37.413-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 87.44092175170091,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 105.63193724958808,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:775d98d8-05e3-4b64-8d2e-9cdc91560b49",
- "resource": {
- "resourceType": "Observation",
- "id": "775d98d8-05e3-4b64-8d2e-9cdc91560b49",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "effectiveDateTime": "2014-11-30T14:48:37-05:00",
- "issued": "2014-11-30T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 185.36296756721157,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:334523d5-da89-4273-b5ef-7719a4de82cc",
- "resource": {
- "resourceType": "Observation",
- "id": "334523d5-da89-4273-b5ef-7719a4de82cc",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "effectiveDateTime": "2014-11-30T14:48:37-05:00",
- "issued": "2014-11-30T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 144.53723829652617,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f9e47d92-0d78-4878-8687-daf08b1cc07f",
- "resource": {
- "resourceType": "Observation",
- "id": "f9e47d92-0d78-4878-8687-daf08b1cc07f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "effectiveDateTime": "2014-11-30T14:48:37-05:00",
- "issued": "2014-11-30T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 93.23883328971795,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a61f431f-b25a-449a-b33c-202e80b08b71",
- "resource": {
- "resourceType": "Observation",
- "id": "a61f431f-b25a-449a-b33c-202e80b08b71",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "effectiveDateTime": "2014-11-30T14:48:37-05:00",
- "issued": "2014-11-30T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 63.21668661818839,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:10c4cf11-4034-439d-b28f-a7a905f55318",
- "resource": {
- "resourceType": "Observation",
- "id": "10c4cf11-4034-439d-b28f-a7a905f55318",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "effectiveDateTime": "2014-11-30T14:48:37-05:00",
- "issued": "2014-11-30T14:48:37.413-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2fccc57f-cac4-4d52-805d-a3190f14a023",
- "resource": {
- "resourceType": "Procedure",
- "id": "2fccc57f-cac4-4d52-805d-a3190f14a023",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "performedPeriod": {
- "start": "2014-11-30T14:48:37-05:00",
- "end": "2014-11-30T15:03:37-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:18fd75cf-fdc1-4698-9f97-41da10aabf7b",
- "resource": {
- "resourceType": "Immunization",
- "id": "18fd75cf-fdc1-4698-9f97-41da10aabf7b",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "occurrenceDateTime": "2014-11-30T14:48:37-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:0e405abd-8a6c-4aa3-8d39-031f215ded76",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "0e405abd-8a6c-4aa3-8d39-031f215ded76",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- },
- "effectiveDateTime": "2014-11-30T14:48:37-05:00",
- "issued": "2014-11-30T14:48:37.413-05:00",
- "result": [
- {
- "reference": "urn:uuid:775d98d8-05e3-4b64-8d2e-9cdc91560b49",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:334523d5-da89-4273-b5ef-7719a4de82cc",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:f9e47d92-0d78-4878-8687-daf08b1cc07f",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:a61f431f-b25a-449a-b33c-202e80b08b71",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:b5598c5f-9111-426b-bf54-144ac0b5c9a9",
- "resource": {
- "resourceType": "Claim",
- "id": "b5598c5f-9111-426b-bf54-144ac0b5c9a9",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2014-11-30T14:48:37-05:00",
- "end": "2014-11-30T15:18:37-05:00"
- },
- "created": "2014-11-30T15:18:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:18fd75cf-fdc1-4698-9f97-41da10aabf7b"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:2fccc57f-cac4-4d52-805d-a3190f14a023"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 865.82,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:579946e2-8ec7-437a-9338-02dde1c188fe",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "579946e2-8ec7-437a-9338-02dde1c188fe",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "b5598c5f-9111-426b-bf54-144ac0b5c9a9"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2014-11-30T15:18:37-05:00",
- "end": "2015-11-30T15:18:37-05:00"
- },
- "created": "2014-11-30T15:18:37-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:b5598c5f-9111-426b-bf54-144ac0b5c9a9"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2014-11-30T14:48:37-05:00",
- "end": "2014-11-30T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:ea1ddc29-3d35-4ddc-81be-bef22a0b09ae"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2014-11-30T14:48:37-05:00",
- "end": "2014-11-30T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2014-11-30T14:48:37-05:00",
- "end": "2014-11-30T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 865.82,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 173.16400000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 692.6560000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 865.82,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 865.82,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 805.0720000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:3f005de1-d8ac-411c-b419-750a8dd24a41",
- "resource": {
- "resourceType": "Encounter",
- "id": "3f005de1-d8ac-411c-b419-750a8dd24a41",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- }
- ],
- "period": {
- "start": "2015-12-06T14:48:37-05:00",
- "end": "2015-12-06T15:03:37-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d51d38eb-8ded-4bab-b8a1-a8163e63d6b6",
- "resource": {
- "resourceType": "Observation",
- "id": "d51d38eb-8ded-4bab-b8a1-a8163e63d6b6",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:3f005de1-d8ac-411c-b419-750a8dd24a41"
- },
- "effectiveDateTime": "2015-12-06T14:48:37-05:00",
- "issued": "2015-12-06T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 190.90009202240046,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:469c5720-1b8f-44b7-af87-de995ca453b4",
- "resource": {
- "resourceType": "Observation",
- "id": "469c5720-1b8f-44b7-af87-de995ca453b4",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:3f005de1-d8ac-411c-b419-750a8dd24a41"
- },
- "effectiveDateTime": "2015-12-06T14:48:37-05:00",
- "issued": "2015-12-06T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 0.5960103887651522,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6df55c7f-7d8e-407d-ae72-d5d0e49595ba",
- "resource": {
- "resourceType": "Observation",
- "id": "6df55c7f-7d8e-407d-ae72-d5d0e49595ba",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:3f005de1-d8ac-411c-b419-750a8dd24a41"
- },
- "effectiveDateTime": "2015-12-06T14:48:37-05:00",
- "issued": "2015-12-06T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 93.96269575060644,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9a0c68fc-95be-42c2-9981-c0fbb56ebf6d",
- "resource": {
- "resourceType": "Observation",
- "id": "9a0c68fc-95be-42c2-9981-c0fbb56ebf6d",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:3f005de1-d8ac-411c-b419-750a8dd24a41"
- },
- "effectiveDateTime": "2015-12-06T14:48:37-05:00",
- "issued": "2015-12-06T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 25.78357847876352,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f15a2132-3317-4c68-b850-49f74dece56a",
- "resource": {
- "resourceType": "Observation",
- "id": "f15a2132-3317-4c68-b850-49f74dece56a",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:3f005de1-d8ac-411c-b419-750a8dd24a41"
- },
- "effectiveDateTime": "2015-12-06T14:48:37-05:00",
- "issued": "2015-12-06T14:48:37.413-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 75.63739999360216,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 111.33734166523767,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:99d6b372-6b59-4424-be5c-ddd087c4475b",
- "resource": {
- "resourceType": "Observation",
- "id": "99d6b372-6b59-4424-be5c-ddd087c4475b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:3f005de1-d8ac-411c-b419-750a8dd24a41"
- },
- "effectiveDateTime": "2015-12-06T14:48:37-05:00",
- "issued": "2015-12-06T14:48:37.413-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:04b2783b-6e5a-4bec-bfdd-73fff59ab3e5",
- "resource": {
- "resourceType": "Immunization",
- "id": "04b2783b-6e5a-4bec-bfdd-73fff59ab3e5",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:3f005de1-d8ac-411c-b419-750a8dd24a41"
- },
- "occurrenceDateTime": "2015-12-06T14:48:37-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:3829fc20-b013-497d-908f-00d6f48a9a84",
- "resource": {
- "resourceType": "Claim",
- "id": "3829fc20-b013-497d-908f-00d6f48a9a84",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2015-12-06T14:48:37-05:00",
- "end": "2015-12-06T15:03:37-05:00"
- },
- "created": "2015-12-06T15:03:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:04b2783b-6e5a-4bec-bfdd-73fff59ab3e5"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:3f005de1-d8ac-411c-b419-750a8dd24a41"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:901e51d7-bc98-4416-90c8-040bdd2139a6",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "901e51d7-bc98-4416-90c8-040bdd2139a6",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "3829fc20-b013-497d-908f-00d6f48a9a84"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2015-12-06T15:03:37-05:00",
- "end": "2016-12-06T15:03:37-05:00"
- },
- "created": "2015-12-06T15:03:37-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:3829fc20-b013-497d-908f-00d6f48a9a84"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2015-12-06T14:48:37-05:00",
- "end": "2015-12-06T15:03:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:3f005de1-d8ac-411c-b419-750a8dd24a41"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2015-12-06T14:48:37-05:00",
- "end": "2015-12-06T15:03:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:78dad556-5c30-43c3-85f0-52a68ffb8346",
- "resource": {
- "resourceType": "Encounter",
- "id": "78dad556-5c30-43c3-85f0-52a68ffb8346",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4",
- "display": "Dr. Genevieve884 Cummerata161"
- }
- }
- ],
- "period": {
- "start": "2016-10-31T15:48:37-04:00",
- "end": "2016-10-31T16:45:37-04:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:3d10019f-c88e-3de5-9916-6107b9c0263d",
- "display": "NEWTON-WELLESLEY HOSPITAL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:ba0424bb-723b-4faa-bb7b-e8a0592cc672",
- "resource": {
- "resourceType": "Procedure",
- "id": "ba0424bb-723b-4faa-bb7b-e8a0592cc672",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:78dad556-5c30-43c3-85f0-52a68ffb8346"
- },
- "performedPeriod": {
- "start": "2016-10-31T15:48:37-04:00",
- "end": "2016-10-31T16:30:37-04:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:90e51fbf-3660-4726-abc3-d8ae4a1bc624",
- "resource": {
- "resourceType": "Claim",
- "id": "90e51fbf-3660-4726-abc3-d8ae4a1bc624",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2016-10-31T15:48:37-04:00",
- "end": "2016-10-31T16:45:37-04:00"
- },
- "created": "2016-10-31T16:45:37-04:00",
- "provider": {
- "reference": "urn:uuid:3d10019f-c88e-3de5-9916-6107b9c0263d",
- "display": "NEWTON-WELLESLEY HOSPITAL"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:ba0424bb-723b-4faa-bb7b-e8a0592cc672"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "encounter": [
- {
- "reference": "urn:uuid:78dad556-5c30-43c3-85f0-52a68ffb8346"
- }
- ]
- },
- {
- "sequence": 2,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "net": {
- "value": 10289.62,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:9ba9a5a5-688f-4063-bed0-7b328e11425f",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "9ba9a5a5-688f-4063-bed0-7b328e11425f",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "NO_INSURANCE"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "NO_INSURANCE"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "90e51fbf-3660-4726-abc3-d8ae4a1bc624"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2016-10-31T16:45:37-04:00",
- "end": "2017-10-31T16:45:37-04:00"
- },
- "created": "2016-10-31T16:45:37-04:00",
- "insurer": {
- "display": "NO_INSURANCE"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:90e51fbf-3660-4726-abc3-d8ae4a1bc624"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-0000000001a4"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "NO_INSURANCE"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "185349003",
- "display": "Encounter for 'check-up'"
- }
- ],
- "text": "Encounter for 'check-up'"
- },
- "servicedPeriod": {
- "start": "2016-10-31T15:48:37-04:00",
- "end": "2016-10-31T16:45:37-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:78dad556-5c30-43c3-85f0-52a68ffb8346"
- }
- ]
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "73761001",
- "display": "Colonoscopy"
- }
- ],
- "text": "Colonoscopy"
- },
- "servicedPeriod": {
- "start": "2016-10-31T15:48:37-04:00",
- "end": "2016-10-31T16:45:37-04:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "21",
- "display": "Inpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 10289.62,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 2057.9240000000004,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 8231.696000000002,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 10289.62,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 10289.62,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 8231.696000000002,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c",
- "resource": {
- "resourceType": "Encounter",
- "id": "4f219688-a713-4735-85e7-dde1ea49ac5c",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- }
- ],
- "period": {
- "start": "2016-12-11T14:48:37-05:00",
- "end": "2016-12-11T15:18:37-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:16b663ef-3d55-4e88-994a-50438c904849",
- "resource": {
- "resourceType": "Observation",
- "id": "16b663ef-3d55-4e88-994a-50438c904849",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c"
- },
- "effectiveDateTime": "2016-12-11T14:48:37-05:00",
- "issued": "2016-12-11T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 190.90009202240046,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:09d243d9-0e3a-401a-9d03-da1c55df2e57",
- "resource": {
- "resourceType": "Observation",
- "id": "09d243d9-0e3a-401a-9d03-da1c55df2e57",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c"
- },
- "effectiveDateTime": "2016-12-11T14:48:37-05:00",
- "issued": "2016-12-11T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 2.22125720059921,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:a1208bef-e27a-442d-b308-634efe935052",
- "resource": {
- "resourceType": "Observation",
- "id": "a1208bef-e27a-442d-b308-634efe935052",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c"
- },
- "effectiveDateTime": "2016-12-11T14:48:37-05:00",
- "issued": "2016-12-11T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 92.91202512417522,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:37e31c11-5fa6-4ded-ac0f-8f83002fa328",
- "resource": {
- "resourceType": "Observation",
- "id": "37e31c11-5fa6-4ded-ac0f-8f83002fa328",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c"
- },
- "effectiveDateTime": "2016-12-11T14:48:37-05:00",
- "issued": "2016-12-11T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 25.495272057417086,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:6d2c7caf-cbec-4e42-be96-914ab3e53d3f",
- "resource": {
- "resourceType": "Observation",
- "id": "6d2c7caf-cbec-4e42-be96-914ab3e53d3f",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c"
- },
- "effectiveDateTime": "2016-12-11T14:48:37-05:00",
- "issued": "2016-12-11T14:48:37.413-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 69.80919266552696,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 109.34564980347562,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:1959eeab-dc7e-4e48-a742-ce81bec9b607",
- "resource": {
- "resourceType": "Observation",
- "id": "1959eeab-dc7e-4e48-a742-ce81bec9b607",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c"
- },
- "effectiveDateTime": "2016-12-11T14:48:37-05:00",
- "issued": "2016-12-11T14:48:37.413-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f4387843-9aa2-4979-bba8-707c9eb640fb",
- "resource": {
- "resourceType": "Procedure",
- "id": "f4387843-9aa2-4979-bba8-707c9eb640fb",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c"
- },
- "performedPeriod": {
- "start": "2016-12-11T14:48:37-05:00",
- "end": "2016-12-11T15:03:37-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:22466c27-beff-4303-a402-398cebc1e922",
- "resource": {
- "resourceType": "Immunization",
- "id": "22466c27-beff-4303-a402-398cebc1e922",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c"
- },
- "occurrenceDateTime": "2016-12-11T14:48:37-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:4f3b34a1-6a49-4531-93eb-581fef254b01",
- "resource": {
- "resourceType": "Immunization",
- "id": "4f3b34a1-6a49-4531-93eb-581fef254b01",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c"
- },
- "occurrenceDateTime": "2016-12-11T14:48:37-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:a256fa34-a8ff-4302-8435-effa638ecfed",
- "resource": {
- "resourceType": "Claim",
- "id": "a256fa34-a8ff-4302-8435-effa638ecfed",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2016-12-11T14:48:37-05:00",
- "end": "2016-12-11T15:18:37-05:00"
- },
- "created": "2016-12-11T15:18:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:22466c27-beff-4303-a402-398cebc1e922"
- }
- },
- {
- "sequence": 2,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:4f3b34a1-6a49-4531-93eb-581fef254b01"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:f4387843-9aa2-4979-bba8-707c9eb640fb"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 4,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 671.50,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:d00addb8-edf1-410a-b949-03f5d6ea6ff2",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "d00addb8-edf1-410a-b949-03f5d6ea6ff2",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "a256fa34-a8ff-4302-8435-effa638ecfed"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2016-12-11T15:18:37-05:00",
- "end": "2017-12-11T15:18:37-05:00"
- },
- "created": "2016-12-11T15:18:37-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:a256fa34-a8ff-4302-8435-effa638ecfed"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-12-11T14:48:37-05:00",
- "end": "2016-12-11T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:4f219688-a713-4735-85e7-dde1ea49ac5c"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2016-12-11T14:48:37-05:00",
- "end": "2016-12-11T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "informationSequence": [
- 2
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "113",
- "display": "Td (adult) preservative free"
- }
- ],
- "text": "Td (adult) preservative free"
- },
- "servicedPeriod": {
- "start": "2016-12-11T14:48:37-05:00",
- "end": "2016-12-11T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 4,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2016-12-11T14:48:37-05:00",
- "end": "2016-12-11T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 671.50,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 134.3,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 537.2,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 671.50,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 671.50,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 762.032,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6",
- "resource": {
- "resourceType": "Encounter",
- "id": "c2dd6942-bf2d-46e5-85b9-df63be038da6",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- }
- ],
- "period": {
- "start": "2017-12-17T14:48:37-05:00",
- "end": "2017-12-17T15:18:37-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:4a58c057-73e0-43a0-adec-e387560d3543",
- "resource": {
- "resourceType": "Observation",
- "id": "4a58c057-73e0-43a0-adec-e387560d3543",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 190.90009202240046,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:ddf9da33-4006-4fcd-8ff1-f70096eed05b",
- "resource": {
- "resourceType": "Observation",
- "id": "ddf9da33-4006-4fcd-8ff1-f70096eed05b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 2.57775207705713,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b7999e29-70af-4c12-8623-e2af77c13e80",
- "resource": {
- "resourceType": "Observation",
- "id": "b7999e29-70af-4c12-8623-e2af77c13e80",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 91.55793167961386,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b8ec4fdd-3005-4db0-8df7-8f9bc0a186da",
- "resource": {
- "resourceType": "Observation",
- "id": "b8ec4fdd-3005-4db0-8df7-8f9bc0a186da",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 25.12370572126073,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:8c7841c6-29b1-457e-9aa9-f50d04a11437",
- "resource": {
- "resourceType": "Observation",
- "id": "8c7841c6-29b1-457e-9aa9-f50d04a11437",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 81.35316608305375,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 129.16525322522725,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9895f72a-44f4-4384-a22e-80ee7ed08f33",
- "resource": {
- "resourceType": "Observation",
- "id": "9895f72a-44f4-4384-a22e-80ee7ed08f33",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2093-3",
- "display": "Total Cholesterol"
- }
- ],
- "text": "Total Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 192.9716204878047,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:b0040351-eaab-41e8-a6f9-390fdb804ae7",
- "resource": {
- "resourceType": "Observation",
- "id": "b0040351-eaab-41e8-a6f9-390fdb804ae7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2571-8",
- "display": "Triglycerides"
- }
- ],
- "text": "Triglycerides"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 111.88476964585908,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fe11914d-33f2-4188-a375-89bb576076d8",
- "resource": {
- "resourceType": "Observation",
- "id": "fe11914d-33f2-4188-a375-89bb576076d8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "18262-6",
- "display": "Low Density Lipoprotein Cholesterol"
- }
- ],
- "text": "Low Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 90.98689455197339,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cdfc7306-dfb6-4869-8dd9-f6175f2eddaf",
- "resource": {
- "resourceType": "Observation",
- "id": "cdfc7306-dfb6-4869-8dd9-f6175f2eddaf",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "2085-9",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ],
- "text": "High Density Lipoprotein Cholesterol"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 79.60777200665949,
- "unit": "mg/dL",
- "system": "http://unitsofmeasure.org",
- "code": "mg/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:cd4669ce-85e9-4cf7-8b5d-0dee25e0b626",
- "resource": {
- "resourceType": "Observation",
- "id": "cd4669ce-85e9-4cf7-8b5d-0dee25e0b626",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "6690-2",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Leukocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 6.139928483484859,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e9692195-2afa-4cbe-83a4-44096a4660c8",
- "resource": {
- "resourceType": "Observation",
- "id": "e9692195-2afa-4cbe-83a4-44096a4660c8",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "789-8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 4.925391672882274,
- "unit": "10*6/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*6/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:dad6a16b-72f9-461f-9890-9ec9d73c1f63",
- "resource": {
- "resourceType": "Observation",
- "id": "dad6a16b-72f9-461f-9890-9ec9d73c1f63",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "718-7",
- "display": "Hemoglobin [Mass/volume] in Blood"
- }
- ],
- "text": "Hemoglobin [Mass/volume] in Blood"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 17.01580867033584,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:e6c83d93-20a4-4e83-81a1-7e47d1f4640b",
- "resource": {
- "resourceType": "Observation",
- "id": "e6c83d93-20a4-4e83-81a1-7e47d1f4640b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "4544-3",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- }
- ],
- "text": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 45.25042958961397,
- "unit": "%",
- "system": "http://unitsofmeasure.org",
- "code": "%"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:524abf42-6047-4125-9cf0-851de3b0d066",
- "resource": {
- "resourceType": "Observation",
- "id": "524abf42-6047-4125-9cf0-851de3b0d066",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "787-2",
- "display": "MCV [Entitic volume] by Automated count"
- }
- ],
- "text": "MCV [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 82.52822232211263,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:218272c0-8533-4ec9-80df-0aefc03239ab",
- "resource": {
- "resourceType": "Observation",
- "id": "218272c0-8533-4ec9-80df-0aefc03239ab",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "785-6",
- "display": "MCH [Entitic mass] by Automated count"
- }
- ],
- "text": "MCH [Entitic mass] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 32.00299790635971,
- "unit": "pg",
- "system": "http://unitsofmeasure.org",
- "code": "pg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:d247805a-9ed4-40ce-8156-efe7b797ad60",
- "resource": {
- "resourceType": "Observation",
- "id": "d247805a-9ed4-40ce-8156-efe7b797ad60",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "786-4",
- "display": "MCHC [Mass/volume] by Automated count"
- }
- ],
- "text": "MCHC [Mass/volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 34.3880176367728,
- "unit": "g/dL",
- "system": "http://unitsofmeasure.org",
- "code": "g/dL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fc66b7a4-b709-45b6-b3c1-152241a3ae2c",
- "resource": {
- "resourceType": "Observation",
- "id": "fc66b7a4-b709-45b6-b3c1-152241a3ae2c",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "21000-5",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- }
- ],
- "text": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 39.33784551876639,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:c898b923-f1ef-4574-a62d-5040ee3d3ba3",
- "resource": {
- "resourceType": "Observation",
- "id": "c898b923-f1ef-4574-a62d-5040ee3d3ba3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "777-3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- }
- ],
- "text": "Platelets [#/volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 420.23439236283883,
- "unit": "10*3/uL",
- "system": "http://unitsofmeasure.org",
- "code": "10*3/uL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:45f3a130-d172-492a-abb1-bdbfd8e4c01b",
- "resource": {
- "resourceType": "Observation",
- "id": "45f3a130-d172-492a-abb1-bdbfd8e4c01b",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32207-3",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 508.48138090934236,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:9b13dc1b-0aad-4e09-b2ab-32cb5c1f2fef",
- "resource": {
- "resourceType": "Observation",
- "id": "9b13dc1b-0aad-4e09-b2ab-32cb5c1f2fef",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "laboratory",
- "display": "laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "32623-1",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ],
- "text": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 11.531385599449077,
- "unit": "fL",
- "system": "http://unitsofmeasure.org",
- "code": "fL"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:398f06c9-4774-4406-8516-405af7efb7a0",
- "resource": {
- "resourceType": "Observation",
- "id": "398f06c9-4774-4406-8516-405af7efb7a0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:2338ec85-3169-4681-a8b7-f3fd217ca4c9",
- "resource": {
- "resourceType": "Procedure",
- "id": "2338ec85-3169-4681-a8b7-f3fd217ca4c9",
- "status": "completed",
- "code": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "performedPeriod": {
- "start": "2017-12-17T14:48:37-05:00",
- "end": "2017-12-17T15:03:37-05:00"
- }
- },
- "request": {
- "method": "POST",
- "url": "Procedure"
- }
- },
- {
- "fullUrl": "urn:uuid:68246dcb-79ca-4c04-8194-e5509331bcff",
- "resource": {
- "resourceType": "Immunization",
- "id": "68246dcb-79ca-4c04-8194-e5509331bcff",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "occurrenceDateTime": "2017-12-17T14:48:37-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:611a9a3f-819f-47e8-b3c5-31c2b799f2c9",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "611a9a3f-819f-47e8-b3c5-31c2b799f2c9",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "57698-3",
- "display": "Lipid Panel"
- }
- ],
- "text": "Lipid Panel"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "result": [
- {
- "reference": "urn:uuid:9895f72a-44f4-4384-a22e-80ee7ed08f33",
- "display": "Total Cholesterol"
- },
- {
- "reference": "urn:uuid:b0040351-eaab-41e8-a6f9-390fdb804ae7",
- "display": "Triglycerides"
- },
- {
- "reference": "urn:uuid:fe11914d-33f2-4188-a375-89bb576076d8",
- "display": "Low Density Lipoprotein Cholesterol"
- },
- {
- "reference": "urn:uuid:cdfc7306-dfb6-4869-8dd9-f6175f2eddaf",
- "display": "High Density Lipoprotein Cholesterol"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:0af9fdfc-6c4c-4d33-9cb5-c14b164c76aa",
- "resource": {
- "resourceType": "DiagnosticReport",
- "id": "0af9fdfc-6c4c-4d33-9cb5-c14b164c76aa",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/v2-0074",
- "code": "LAB",
- "display": "Laboratory"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "58410-2",
- "display": "Complete blood count (hemogram) panel - Blood by Automated count"
- }
- ],
- "text": "Complete blood count (hemogram) panel - Blood by Automated count"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- },
- "effectiveDateTime": "2017-12-17T14:48:37-05:00",
- "issued": "2017-12-17T14:48:37.413-05:00",
- "result": [
- {
- "reference": "urn:uuid:cd4669ce-85e9-4cf7-8b5d-0dee25e0b626",
- "display": "Leukocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:e9692195-2afa-4cbe-83a4-44096a4660c8",
- "display": "Erythrocytes [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:dad6a16b-72f9-461f-9890-9ec9d73c1f63",
- "display": "Hemoglobin [Mass/volume] in Blood"
- },
- {
- "reference": "urn:uuid:e6c83d93-20a4-4e83-81a1-7e47d1f4640b",
- "display": "Hematocrit [Volume Fraction] of Blood by Automated count"
- },
- {
- "reference": "urn:uuid:524abf42-6047-4125-9cf0-851de3b0d066",
- "display": "MCV [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:218272c0-8533-4ec9-80df-0aefc03239ab",
- "display": "MCH [Entitic mass] by Automated count"
- },
- {
- "reference": "urn:uuid:d247805a-9ed4-40ce-8156-efe7b797ad60",
- "display": "MCHC [Mass/volume] by Automated count"
- },
- {
- "reference": "urn:uuid:fc66b7a4-b709-45b6-b3c1-152241a3ae2c",
- "display": "Erythrocyte distribution width [Entitic volume] by Automated count"
- },
- {
- "reference": "urn:uuid:c898b923-f1ef-4574-a62d-5040ee3d3ba3",
- "display": "Platelets [#/volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:45f3a130-d172-492a-abb1-bdbfd8e4c01b",
- "display": "Platelet distribution width [Entitic volume] in Blood by Automated count"
- },
- {
- "reference": "urn:uuid:9b13dc1b-0aad-4e09-b2ab-32cb5c1f2fef",
- "display": "Platelet mean volume [Entitic volume] in Blood by Automated count"
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "DiagnosticReport"
- }
- },
- {
- "fullUrl": "urn:uuid:7afb4c63-d06d-4df1-ae38-a7b46a8f6d45",
- "resource": {
- "resourceType": "Claim",
- "id": "7afb4c63-d06d-4df1-ae38-a7b46a8f6d45",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2017-12-17T14:48:37-05:00",
- "end": "2017-12-17T15:18:37-05:00"
- },
- "created": "2017-12-17T15:18:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:68246dcb-79ca-4c04-8194-e5509331bcff"
- }
- }
- ],
- "procedure": [
- {
- "sequence": 1,
- "procedureReference": {
- "reference": "urn:uuid:2338ec85-3169-4681-a8b7-f3fd217ca4c9"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "sequence": 3,
- "procedureSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "net": {
- "value": 710.75,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:c306ab17-f9de-4bf4-9496-06a10f25dfbb",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "c306ab17-f9de-4bf4-9496-06a10f25dfbb",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "7afb4c63-d06d-4df1-ae38-a7b46a8f6d45"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2017-12-17T15:18:37-05:00",
- "end": "2018-12-17T15:18:37-05:00"
- },
- "created": "2017-12-17T15:18:37-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:7afb4c63-d06d-4df1-ae38-a7b46a8f6d45"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-12-17T14:48:37-05:00",
- "end": "2017-12-17T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:c2dd6942-bf2d-46e5-85b9-df63be038da6"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2017-12-17T14:48:37-05:00",
- "end": "2017-12-17T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- },
- {
- "sequence": 3,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "430193006",
- "display": "Medication Reconciliation (procedure)"
- }
- ],
- "text": "Medication Reconciliation (procedure)"
- },
- "servicedPeriod": {
- "start": "2017-12-17T14:48:37-05:00",
- "end": "2017-12-17T15:18:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 710.75,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 142.15,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 568.6,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 710.75,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 710.75,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 681.0160000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- },
- {
- "fullUrl": "urn:uuid:f4426cd0-bc15-49dc-bff8-4de1e11b5a85",
- "resource": {
- "resourceType": "Encounter",
- "id": "f4426cd0-bc15-49dc-bff8-4de1e11b5a85",
- "status": "finished",
- "class": {
- "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
- "code": "AMB"
- },
- "type": [
- {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- }
- ],
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Mr. Willian804 Moen819"
- },
- "participant": [
- {
- "individual": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12",
- "display": "Dr. Rosemarie149 Johnston597"
- }
- }
- ],
- "period": {
- "start": "2018-12-23T14:48:37-05:00",
- "end": "2018-12-23T15:03:37-05:00"
- },
- "serviceProvider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- }
- },
- "request": {
- "method": "POST",
- "url": "Encounter"
- }
- },
- {
- "fullUrl": "urn:uuid:d50a096c-a52f-4d4e-b0b0-6d869a5bcfa0",
- "resource": {
- "resourceType": "Observation",
- "id": "d50a096c-a52f-4d4e-b0b0-6d869a5bcfa0",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8302-2",
- "display": "Body Height"
- }
- ],
- "text": "Body Height"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f4426cd0-bc15-49dc-bff8-4de1e11b5a85"
- },
- "effectiveDateTime": "2018-12-23T14:48:37-05:00",
- "issued": "2018-12-23T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 190.90009202240046,
- "unit": "cm",
- "system": "http://unitsofmeasure.org",
- "code": "cm"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:f1935574-440e-45a0-9c94-c7f784e73515",
- "resource": {
- "resourceType": "Observation",
- "id": "f1935574-440e-45a0-9c94-c7f784e73515",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72514-3",
- "display": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- }
- ],
- "text": "Pain severity - 0-10 verbal numeric rating [Score] - Reported"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f4426cd0-bc15-49dc-bff8-4de1e11b5a85"
- },
- "effectiveDateTime": "2018-12-23T14:48:37-05:00",
- "issued": "2018-12-23T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 0.3184595286222933,
- "unit": "{score}",
- "system": "http://unitsofmeasure.org",
- "code": "{score}"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:fd9962ae-0aa9-456c-bbe9-36f8ee4400e3",
- "resource": {
- "resourceType": "Observation",
- "id": "fd9962ae-0aa9-456c-bbe9-36f8ee4400e3",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "29463-7",
- "display": "Body Weight"
- }
- ],
- "text": "Body Weight"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f4426cd0-bc15-49dc-bff8-4de1e11b5a85"
- },
- "effectiveDateTime": "2018-12-23T14:48:37-05:00",
- "issued": "2018-12-23T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 90.45305211778118,
- "unit": "kg",
- "system": "http://unitsofmeasure.org",
- "code": "kg"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:056189d7-fa8c-4178-9823-24e5c92903b7",
- "resource": {
- "resourceType": "Observation",
- "id": "056189d7-fa8c-4178-9823-24e5c92903b7",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "39156-5",
- "display": "Body Mass Index"
- }
- ],
- "text": "Body Mass Index"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f4426cd0-bc15-49dc-bff8-4de1e11b5a85"
- },
- "effectiveDateTime": "2018-12-23T14:48:37-05:00",
- "issued": "2018-12-23T14:48:37.413-05:00",
- "valueQuantity": {
- "value": 24.820524244138085,
- "unit": "kg/m2",
- "system": "http://unitsofmeasure.org",
- "code": "kg/m2"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:44652330-e785-4931-ad14-374881a9f040",
- "resource": {
- "resourceType": "Observation",
- "id": "44652330-e785-4931-ad14-374881a9f040",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "vital-signs",
- "display": "vital-signs"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "55284-4",
- "display": "Blood Pressure"
- }
- ],
- "text": "Blood Pressure"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f4426cd0-bc15-49dc-bff8-4de1e11b5a85"
- },
- "effectiveDateTime": "2018-12-23T14:48:37-05:00",
- "issued": "2018-12-23T14:48:37.413-05:00",
- "component": [
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8462-4",
- "display": "Diastolic Blood Pressure"
- }
- ],
- "text": "Diastolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 82.78376773863606,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- },
- {
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "8480-6",
- "display": "Systolic Blood Pressure"
- }
- ],
- "text": "Systolic Blood Pressure"
- },
- "valueQuantity": {
- "value": 120.56024138138916,
- "unit": "mm[Hg]",
- "system": "http://unitsofmeasure.org",
- "code": "mm[Hg]"
- }
- }
- ]
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:64830809-f9d9-4d8b-a391-2b9917f34f87",
- "resource": {
- "resourceType": "Observation",
- "id": "64830809-f9d9-4d8b-a391-2b9917f34f87",
- "status": "final",
- "category": [
- {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/observation-category",
- "code": "survey",
- "display": "survey"
- }
- ]
- }
- ],
- "code": {
- "coding": [
- {
- "system": "http://loinc.org",
- "code": "72166-2",
- "display": "Tobacco smoking status NHIS"
- }
- ],
- "text": "Tobacco smoking status NHIS"
- },
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f4426cd0-bc15-49dc-bff8-4de1e11b5a85"
- },
- "effectiveDateTime": "2018-12-23T14:48:37-05:00",
- "issued": "2018-12-23T14:48:37.413-05:00",
- "valueCodeableConcept": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "266919005",
- "display": "Never smoker"
- }
- ],
- "text": "Never smoker"
- }
- },
- "request": {
- "method": "POST",
- "url": "Observation"
- }
- },
- {
- "fullUrl": "urn:uuid:7c543db5-e35a-444d-a87d-21b7e37895f6",
- "resource": {
- "resourceType": "Immunization",
- "id": "7c543db5-e35a-444d-a87d-21b7e37895f6",
- "status": "completed",
- "vaccineCode": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "encounter": {
- "reference": "urn:uuid:f4426cd0-bc15-49dc-bff8-4de1e11b5a85"
- },
- "occurrenceDateTime": "2018-12-23T14:48:37-05:00",
- "primarySource": true
- },
- "request": {
- "method": "POST",
- "url": "Immunization"
- }
- },
- {
- "fullUrl": "urn:uuid:1468a9a0-a6b8-40ce-bb86-0f48643ef7d7",
- "resource": {
- "resourceType": "Claim",
- "id": "1468a9a0-a6b8-40ce-bb86-0f48643ef7d7",
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304",
- "display": "Willian804 Moen819"
- },
- "billablePeriod": {
- "start": "2018-12-23T14:48:37-05:00",
- "end": "2018-12-23T15:03:37-05:00"
- },
- "created": "2018-12-23T15:03:37-05:00",
- "provider": {
- "reference": "urn:uuid:851964ad-fff8-3ab6-aba0-4f85090f0041",
- "display": "PCP260628"
- },
- "priority": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/processpriority",
- "code": "normal"
- }
- ]
- },
- "supportingInfo": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory",
- "code": "info"
- }
- ]
- },
- "valueReference": {
- "reference": "urn:uuid:7c543db5-e35a-444d-a87d-21b7e37895f6"
- }
- }
- ],
- "insurance": [
- {
- "sequence": 1,
- "focal": true,
- "coverage": {
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "encounter": [
- {
- "reference": "urn:uuid:f4426cd0-bc15-49dc-bff8-4de1e11b5a85"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- }
- }
- ],
- "total": {
- "value": 129.16,
- "currency": "USD"
- }
- },
- "request": {
- "method": "POST",
- "url": "Claim"
- }
- },
- {
- "fullUrl": "urn:uuid:17e5f4ff-fcf5-4506-9e22-e8dec3d91ed7",
- "resource": {
- "resourceType": "ExplanationOfBenefit",
- "id": "17e5f4ff-fcf5-4506-9e22-e8dec3d91ed7",
- "contained": [
- {
- "resourceType": "ServiceRequest",
- "id": "referral",
- "status": "completed",
- "intent": "order",
- "subject": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "requester": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "performer": [
- {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- }
- ]
- },
- {
- "resourceType": "Coverage",
- "id": "coverage",
- "status": "active",
- "type": {
- "text": "Anthem"
- },
- "beneficiary": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "payor": [
- {
- "display": "Anthem"
- }
- ]
- }
- ],
- "identifier": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/clm_id",
- "value": "1468a9a0-a6b8-40ce-bb86-0f48643ef7d7"
- },
- {
- "system": "https://bluebutton.cms.gov/resources/identifier/claim-group",
- "value": "99999999999"
- }
- ],
- "status": "active",
- "type": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claim-type",
- "code": "institutional"
- }
- ]
- },
- "use": "claim",
- "patient": {
- "reference": "urn:uuid:17b5cd0a-c2b6-4d3e-bbe4-7a8255832304"
- },
- "billablePeriod": {
- "start": "2018-12-23T15:03:37-05:00",
- "end": "2019-12-23T15:03:37-05:00"
- },
- "created": "2018-12-23T15:03:37-05:00",
- "insurer": {
- "display": "Anthem"
- },
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "referral": {
- "reference": "#referral"
- },
- "claim": {
- "reference": "urn:uuid:1468a9a0-a6b8-40ce-bb86-0f48643ef7d7"
- },
- "outcome": "complete",
- "careTeam": [
- {
- "sequence": 1,
- "provider": {
- "reference": "urn:uuid:0000016d-3a85-4cca-0000-000000011a12"
- },
- "role": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole",
- "code": "primary",
- "display": "Primary Care Practitioner"
- }
- ]
- }
- }
- ],
- "insurance": [
- {
- "focal": true,
- "coverage": {
- "reference": "#coverage",
- "display": "Anthem"
- }
- }
- ],
- "item": [
- {
- "sequence": 1,
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://snomed.info/sct",
- "code": "162673000",
- "display": "General examination of patient (procedure)"
- }
- ],
- "text": "General examination of patient (procedure)"
- },
- "servicedPeriod": {
- "start": "2018-12-23T14:48:37-05:00",
- "end": "2018-12-23T15:03:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "encounter": [
- {
- "reference": "urn:uuid:f4426cd0-bc15-49dc-bff8-4de1e11b5a85"
- }
- ]
- },
- {
- "sequence": 2,
- "informationSequence": [
- 1
- ],
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd",
- "code": "1",
- "display": "Medical care"
- }
- ]
- },
- "productOrService": {
- "coding": [
- {
- "system": "http://hl7.org/fhir/sid/cvx",
- "code": "140",
- "display": "Influenza, seasonal, injectable, preservative free"
- }
- ],
- "text": "Influenza, seasonal, injectable, preservative free"
- },
- "servicedPeriod": {
- "start": "2018-12-23T14:48:37-05:00",
- "end": "2018-12-23T15:03:37-05:00"
- },
- "locationCodeableConcept": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/ex-serviceplace",
- "code": "19",
- "display": "Off Campus-Outpatient Hospital"
- }
- ]
- },
- "net": {
- "value": 140.52,
- "currency": "USD"
- },
- "adjudication": [
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt",
- "display": "Line Beneficiary Coinsurance Amount"
- }
- ]
- },
- "amount": {
- "value": 28.104000000000003,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt",
- "display": "Line Provider Payment Amount"
- }
- ]
- },
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt",
- "display": "Line Submitted Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt",
- "display": "Line Allowed Charge Amount"
- }
- ]
- },
- "amount": {
- "value": 140.52,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt",
- "display": "Line Beneficiary Part B Deductible Amount"
- }
- ]
- },
- "amount": {
- "value": 0,
- "currency": "USD"
- }
- },
- {
- "category": {
- "coding": [
- {
- "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication",
- "code": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd",
- "display": "Line Processing Indicator Code"
- }
- ]
- }
- }
- ]
- }
- ],
- "total": [
- {
- "category": {
- "coding": [
- {
- "system": "http://terminology.hl7.org/CodeSystem/adjudication",
- "code": "submitted",
- "display": "Submitted Amount"
- }
- ],
- "text": "Submitted Amount"
- },
- "amount": {
- "value": 129.16,
- "currency": "USD"
- }
- }
- ],
- "payment": {
- "amount": {
- "value": 112.41600000000001,
- "currency": "USD"
- }
- }
- },
- "request": {
- "method": "POST",
- "url": "ExplanationOfBenefit"
- }
- }
- ]
-}
diff --git a/backend/pkg/hub/internal/fhir/bluebutton/client.go b/backend/pkg/hub/internal/fhir/bluebutton/client.go
deleted file mode 100644
index a1b86a1f..00000000
--- a/backend/pkg/hub/internal/fhir/bluebutton/client.go
+++ /dev/null
@@ -1,31 +0,0 @@
-package bluebutton
-
-import (
- "context"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/sirupsen/logrus"
- "net/http"
-)
-
-type BlueButtonClient struct {
- *base.FHIR401Client
-}
-
-func NewClient(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (base.Client, *models.Source, error) {
- baseClient, updatedSource, err := base.NewFHIR401Client(ctx, appConfig, globalLogger, source, testHttpClient...)
- return BlueButtonClient{
- baseClient,
- }, updatedSource, err
-}
-
-func (c BlueButtonClient) SyncAll(db database.DatabaseRepository) error {
-
- supportedResources := []string{
- "ExplanationOfBenefit",
- "Coverage",
- }
- return c.SyncAllByResourceName(db, supportedResources)
-}
diff --git a/backend/pkg/hub/internal/fhir/careevolution/client.go b/backend/pkg/hub/internal/fhir/careevolution/client.go
deleted file mode 100644
index da409648..00000000
--- a/backend/pkg/hub/internal/fhir/careevolution/client.go
+++ /dev/null
@@ -1,22 +0,0 @@
-package careevolution
-
-import (
- "context"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/sirupsen/logrus"
- "net/http"
-)
-
-type CareEvolutionClient struct {
- *base.FHIR401Client
-}
-
-func NewClient(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (base.Client, *models.Source, error) {
- baseClient, updatedSource, err := base.NewFHIR401Client(ctx, appConfig, globalLogger, source, testHttpClient...)
- baseClient.Headers["Accept"] = "application/json+fhir"
- return CareEvolutionClient{
- baseClient,
- }, updatedSource, err
-}
diff --git a/backend/pkg/hub/internal/fhir/cerner/client.go b/backend/pkg/hub/internal/fhir/cerner/client.go
deleted file mode 100644
index 1a5e4f64..00000000
--- a/backend/pkg/hub/internal/fhir/cerner/client.go
+++ /dev/null
@@ -1,53 +0,0 @@
-package cerner
-
-import (
- "context"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/sirupsen/logrus"
- "net/http"
-)
-
-type CernerClient struct {
- *base.FHIR401Client
-}
-
-func NewClient(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (base.Client, *models.Source, error) {
- baseClient, updatedSource, err := base.NewFHIR401Client(ctx, appConfig, globalLogger, source, testHttpClient...)
- baseClient.Headers["Accept"] = "application/json+fhir"
- return CernerClient{
- baseClient,
- }, updatedSource, err
-}
-
-func (c CernerClient) SyncAll(db database.DatabaseRepository) error {
-
- supportedResources := []string{
- "AllergyIntolerance",
- "CarePlan",
- "CareTeam",
- "Condition",
- "Consent",
- "Device",
- "Encounter",
- "FamilyMemberHistory",
- "Goal",
- "Immunization",
- "InsurancePlan",
- "MedicationRequest",
- "NutritionOrder",
- "Observation",
- "Person",
- "Procedure",
- "Provenance",
- "Questionnaire",
- "QuestionnaireResponse",
- "RelatedPerson",
- "Schedule",
- "ServiceRequest",
- "Slot",
- }
- return c.SyncAllByResourceName(db, supportedResources)
-}
diff --git a/backend/pkg/hub/internal/fhir/cigna/client.go b/backend/pkg/hub/internal/fhir/cigna/client.go
deleted file mode 100644
index f7142f94..00000000
--- a/backend/pkg/hub/internal/fhir/cigna/client.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package cigna
-
-import (
- "context"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/sirupsen/logrus"
- "net/http"
-)
-
-type CignaClient struct {
- *base.FHIR401Client
-}
-
-func NewClient(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (base.Client, *models.Source, error) {
- baseClient, updatedSource, err := base.NewFHIR401Client(ctx, appConfig, globalLogger, source, testHttpClient...)
- return CignaClient{
- baseClient,
- }, updatedSource, err
-}
diff --git a/backend/pkg/hub/internal/fhir/cigna/client_test.go b/backend/pkg/hub/internal/fhir/cigna/client_test.go
deleted file mode 100644
index 738ec554..00000000
--- a/backend/pkg/hub/internal/fhir/cigna/client_test.go
+++ /dev/null
@@ -1,48 +0,0 @@
-package cigna
-
-import (
- "context"
- mock_config "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config/mock"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/golang/mock/gomock"
- "github.com/sirupsen/logrus"
- "github.com/stretchr/testify/require"
- "io/ioutil"
- "os"
- "testing"
-)
-
-func TestCignaClient_SyncAll(t *testing.T) {
- t.Parallel()
- //setup
- mockCtrl := gomock.NewController(t)
- defer mockCtrl.Finish()
- fakeConfig := mock_config.NewMockInterface(mockCtrl)
-
- testDatabase, err := ioutil.TempFile("testdata", "fasten.db")
- require.NoError(t, err)
- defer os.Remove(testDatabase.Name())
- fakeConfig.EXPECT().GetString("web.database.location").AnyTimes().Return(testDatabase.Name())
- testLogger := logrus.WithFields(logrus.Fields{
- "type": "test",
- })
- httpClient := base.OAuthVcrSetup(t, false)
- client, _, err := NewClient(context.Background(), fakeConfig, testLogger, models.Source{
- SourceType: "cigna",
- PatientId: "A00000000000005",
- ApiEndpointBaseUrl: "https://p-hi2.digitaledge.cigna.com/PatientAccess/v1-devportal",
- ClientId: "e434426c-2aaf-413a-a39a-8f5f6130f287",
- }, httpClient)
-
- db, err := database.NewRepository(fakeConfig, testLogger)
- require.NoError(t, err)
-
- //test
- err = client.SyncAll(db)
- require.NoError(t, err)
-
- //assert
- require.NoError(t, err)
-}
diff --git a/backend/pkg/hub/internal/fhir/cigna/testdata/govcr-fixtures/TestCignaClient_SyncAll.cassette b/backend/pkg/hub/internal/fhir/cigna/testdata/govcr-fixtures/TestCignaClient_SyncAll.cassette
deleted file mode 100644
index c648c11d..00000000
--- a/backend/pkg/hub/internal/fhir/cigna/testdata/govcr-fixtures/TestCignaClient_SyncAll.cassette
+++ /dev/null
@@ -1,1101 +0,0 @@
-{
- "Name": "TestCignaClient_SyncAll",
- "Tracks": [
- {
- "Request": {
- "Method": "GET",
- "URL": {
- "Scheme": "https",
- "Opaque": "",
- "User": null,
- "Host": "p-hi2.digitaledge.cigna.com",
- "Path": "/PatientAccess/v1-devportal/Patient/A00000000000005/$everything",
- "RawPath": "",
- "ForceQuery": false,
- "RawQuery": "",
- "Fragment": "",
- "RawFragment": ""
- },
- "Header": {},
- "Body": ""
- },
- "Response": {
- "Status": "200 OK",
- "StatusCode": 200,
- "Proto": "HTTP/2.0",
- "ProtoMajor": 2,
- "ProtoMinor": 0,
- "Header": {
- "Access-Control-Allow-Origin": [
- "*"
- ],
- "Cache-Control": [
- "no-store, no-cache"
- ],
- "Content-Length": [
- "29617"
- ],
- "Content-Security-Policy": [
- "default-src 'self'"
- ],
- "Content-Type": [
- "application/json"
- ],
- "Date": [
- "Thu, 01 Sep 2022 22:28:33 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Referrer-Policy": [
- "no-referrer"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Amz-Apigw-Id": [
- "XzTCxFrJoAMFbTQ="
- ],
- "X-Amzn-Requestid": [
- "7b3d2796-acc0-4f28-885e-194076e64c7d"
- ],
- "X-Amzn-Trace-Id": [
- "Root=1-63113211-0fe0195607ec3be656b70f76;Sampled=0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-Frame-Options": [
- "DENY"
- ],
- "X-Request-Id": [
- "1ef80a22-daa0-4872-9a11-67a70f7ef8b9"
- ],
- "X-Xss-Protection": [
- "1; mode=block"
- ]
- },
- "Body": "eyJtZXRhIjogeyJzb3VyY2UiOiAiaHR0cHM6Ly9wLWhpMi5kaWdpdGFsZWRnZS5jaWduYS5jb20ifSwgImVudHJ5IjogW3siZnVsbFVybCI6ICJodHRwczovL3AtaGkyLmRpZ2l0YWxlZGdlLmNpZ25hLmNvbS9QYXRpZW50QWNjZXNzL3YxLWRldnBvcnRhbC9QYXRpZW50L2lmcC1BMDAwMDAwMDAwMDAwMDUiLCAicmVzb3VyY2UiOiB7ImlkIjogImlmcC1BMDAwMDAwMDAwMDAwMDUiLCAibWV0YSI6IHsibGFzdFVwZGF0ZWQiOiAiMjAyMi0wNi0yMFQxNTo0NToyMi4wNDMwMDArMDA6MDAiLCAicHJvZmlsZSI6IFsiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9TdHJ1Y3R1cmVEZWZpbml0aW9uL0M0QkItUGF0aWVudCJdLCAic291cmNlIjogIklGUCNDcVAwNkFSdkpvOVhTOUNsIiwgInZlcnNpb25JZCI6ICIxIn0sICJ0ZXh0IjogeyJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj48ZGl2IGNsYXNzPVwiaGFwaUhlYWRlclRleHRcIj5GZWxlY2l0YSA8Yj5NT05BSEFOIDwvYj48L2Rpdj48dGFibGUgY2xhc3M9XCJoYXBpUHJvcGVydHlUYWJsZVwiPjx0Ym9keT48dHI+PHRkPklkZW50aWZpZXI8L3RkPjx0ZD5BMDAwMDAwMDAwMDAwMDU8L3RkPjwvdHI+PHRyPjx0ZD5EYXRlIG9mIGJpcnRoPC90ZD48dGQ+PHNwYW4+MTIgSmFudWFyeSAyMDEzPC9zcGFuPjwvdGQ+PC90cj48L3Rib2R5PjwvdGFibGU+PC9kaXY+IiwgInN0YXR1cyI6ICJnZW5lcmF0ZWQifSwgImJpcnRoRGF0ZSI6ICIyMDEzLTAxLTEyIiwgImdlbmRlciI6ICJmZW1hbGUiLCAiaWRlbnRpZmllciI6IFt7InN5c3RlbSI6ICJodHRwczovL2RldmVsb3Blci5jaWduYS5jb20iLCAidHlwZSI6IHsiY29kaW5nIjogW3siY29kZSI6ICJ1bSIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0lkZW50aWZpZXJUeXBlQ1MifV19LCAidmFsdWUiOiAiQTAwMDAwMDAwMDAwMDA1In0sIHsic3lzdGVtIjogImh0dHBzOi8vZGV2ZWxvcGVyLmNpZ25hLmNvbSIsICJ0eXBlIjogeyJjb2RpbmciOiBbeyJjb2RlIjogIm1iIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vSWRlbnRpZmllclR5cGVDUyJ9XX0sICJ2YWx1ZSI6ICJ1bmtub3duIn1dLCAibWFyaXRhbFN0YXR1cyI6IHsiY29kaW5nIjogW3siY29kZSI6ICJVTksiLCAiZGlzcGxheSI6ICJ1bmtub3duIiwgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL3YzLU51bGxGbGF2b3IifV0sICJ0ZXh0IjogInVua25vd24ifSwgIm5hbWUiOiBbeyJmYW1pbHkiOiAiTW9uYWhhbiIsICJnaXZlbiI6IFsiRmVsZWNpdGEiXSwgInVzZSI6ICJvZmZpY2lhbCJ9XSwgInRlbGVjb20iOiBbeyJzeXN0ZW0iOiAicGhvbmUiLCAidXNlIjogIm1vYmlsZSIsICJ2YWx1ZSI6ICI5NDA0NTM1NDk2In1dLCAicmVzb3VyY2VUeXBlIjogIlBhdGllbnQifSwgInNlYXJjaCI6IHsibW9kZSI6ICJtYXRjaCJ9fSwgeyJmdWxsVXJsIjogImh0dHBzOi8vcC1oaTIuZGlnaXRhbGVkZ2UuY2lnbmEuY29tL1BhdGllbnRBY2Nlc3MvdjEtZGV2cG9ydGFsL0NvbmRpdGlvbi9pZnAtQTAwMDAwMDAwMDAwMDA1LUNTMDAwMDQ0OTUzNC1LNTcuOTIiLCAicmVzb3VyY2UiOiB7ImlkIjogImlmcC1BMDAwMDAwMDAwMDAwMDUtQ1MwMDAwNDQ5NTM0LUs1Ny45MiIsICJtZXRhIjogeyJsYXN0VXBkYXRlZCI6ICIyMDIyLTA2LTIwVDE1OjQ1OjIyLjQzMTAwMCswMDowMCIsICJwcm9maWxlIjogWyJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvU3RydWN0dXJlRGVmaW5pdGlvbi91cy1jb3JlLWNvbmRpdGlvbiJdLCAic291cmNlIjogIklGUCNCZlZEbWpjVkF4QWZyNUJlIiwgInZlcnNpb25JZCI6ICIxIn0sICJjYXRlZ29yeSI6IFt7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfV0sICJjbGluaWNhbFN0YXR1cyI6IHsiY29kaW5nIjogW3siY29kZSI6ICJhY3RpdmUiLCAiZGlzcGxheSI6ICJhY3RpdmUiLCAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vY29uZGl0aW9uLWNsaW5pY2FsIn1dLCAidGV4dCI6ICJhY3RpdmUifSwgImNvZGUiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiSzU3LjkyIiwgImRpc3BsYXkiOiAiRFZUUkNMSSBPRiBJTlRFU1QsIFBBUlQgVU5TUCwgVy9PIFBFUkYgT1IgQUJTQ0VTUyBXL08gQkxFRUQifV0sICJ0ZXh0IjogIk51bGwifSwgImlkZW50aWZpZXIiOiBbeyJ2YWx1ZSI6ICJBMDAwMDAwMDAwMDAwMDUtQ1MwMDAwNDQ5NTM0LUs1Ny45MiJ9XSwgInJlY29yZGVkRGF0ZSI6ICIyMDE5LTEwLTIyIiwgInN1YmplY3QiOiB7InJlZmVyZW5jZSI6ICJQYXRpZW50L2lmcC1BMDAwMDAwMDAwMDAwMDUifSwgInJlc291cmNlVHlwZSI6ICJDb25kaXRpb24ifSwgInNlYXJjaCI6IHsibW9kZSI6ICJtYXRjaCJ9fSwgeyJmdWxsVXJsIjogImh0dHBzOi8vcC1oaTIuZGlnaXRhbGVkZ2UuY2lnbmEuY29tL1BhdGllbnRBY2Nlc3MvdjEtZGV2cG9ydGFsL0VuY291bnRlci9pZnAtMUM5QTQ2RjA3QjNDQURFMzNFRkM3NUFCQTNEQzM3Q0YiLCAicmVzb3VyY2UiOiB7ImlkIjogImlmcC0xQzlBNDZGMDdCM0NBREUzM0VGQzc1QUJBM0RDMzdDRiIsICJtZXRhIjogeyJsYXN0VXBkYXRlZCI6ICIyMDIyLTA2LTIwVDE1OjQ1OjI5LjY4NTAwMCswMDowMCIsICJwcm9maWxlIjogWyJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NvcmUvU3RydWN0dXJlRGVmaW5pdGlvbi91cy1jb3JlLWVuY291bnRlciJdLCAic291cmNlIjogIklGUCNlN3prZUxDU21RRmdVWDBaIiwgInZlcnNpb25JZCI6ICIxIn0sICJjbGFzcyI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19LCAiZGlhZ25vc2lzIjogW3siY29uZGl0aW9uIjogeyJyZWZlcmVuY2UiOiAiQ29uZGl0aW9uL2lmcC1BMDAwMDAwMDAwMDAwMDUtT1AwNDQ3NTc1NDI2LUs1Ny44MC1ZLSJ9LCAidXNlIjogeyJjb2RpbmciOiBbeyJkaXNwbGF5IjogIkFkbWlzc2lvbiBkaWFnbm9zaXMifV19fV0sICJpZGVudGlmaWVyIjogW3sic3lzdGVtIjogImh0dHA6Ly9kZXYuY2lnbmEuY29tL3N5c3RlbS9UUkNSIiwgInZhbHVlIjogIlRSQ1ItT1AwNDQ3NTc1NDI2LTEifV0sICJsb2NhdGlvbiI6IFt7ImxvY2F0aW9uIjogeyJyZWZlcmVuY2UiOiAiTG9jYXRpb24vaWZwLTczMTI1MzIifX0sIHsibG9jYXRpb24iOiB7InJlZmVyZW5jZSI6ICJMb2NhdGlvbi9pZnAtMDU2NjI2NSJ9fV0sICJwYXJ0aWNpcGFudCI6IFt7ImluZGl2aWR1YWwiOiB7InJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvaWZwLTUwZWY0NTQyZWNiNWFlNWVkZGMwZGFjNzZhMTBhYWVkIn19LCB7ImluZGl2aWR1YWwiOiB7InJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvaWZwLTZhNGQzZDZmZTE2NWI2YTBhNzliNmE5NzZkMDQzYzJjIn19XSwgInBlcmlvZCI6IHsiZW5kIjogIjIwMTktMTItMzEiLCAic3RhcnQiOiAiMjAxOS0xMS0wNyJ9LCAicmVhc29uQ29kZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAiSzU3LjgwIiwgImRpc3BsYXkiOiAiRHZ0cmNsaSBvZiBpbnRlc3QsIHBhcnQgdW5zcCwgdyBwZXJmIGFuZCBhYnNjZXNzIHcvbyBibGVlZCJ9XX1dLCAicmVhc29uUmVmZXJlbmNlIjogW3sicmVmZXJlbmNlIjogIkNvbmRpdGlvbi9pZnAtQTAwMDAwMDAwMDAwMDA1LU9QMDQ0NzU3NTQyNi1LNTcuODAtWS0ifV0sICJzZXJ2aWNlUHJvdmlkZXIiOiB7InJlZmVyZW5jZSI6ICJPcmdhbml6YXRpb24vaWZwLTA1NjYyNjUifSwgInNlcnZpY2VUeXBlIjogeyJjb2RpbmciOiBbeyJjb2RlIjogIjMwMiIsICJkaXNwbGF5IjogIk1lZGljYWwgT3V0cGF0aWVudCJ9XX0sICJzdGF0dXMiOiAidW5rbm93biIsICJzdWJqZWN0IjogeyJyZWZlcmVuY2UiOiAiUGF0aWVudC9pZnAtQTAwMDAwMDAwMDAwMDA1In0sICJ0eXBlIjogW3siZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19XSwgInJlc291cmNlVHlwZSI6ICJFbmNvdW50ZXIifSwgInNlYXJjaCI6IHsibW9kZSI6ICJtYXRjaCJ9fSwgeyJmdWxsVXJsIjogImh0dHBzOi8vcC1oaTIuZGlnaXRhbGVkZ2UuY2lnbmEuY29tL1BhdGllbnRBY2Nlc3MvdjEtZGV2cG9ydGFsL0V4cGxhbmF0aW9uT2ZCZW5lZml0L2lmcC01NzdCOTM5ODQ0Mjg4RUMyNzAyRUE5MkE4QTJCRUFBMCIsICJyZXNvdXJjZSI6IHsiaWQiOiAiaWZwLTU3N0I5Mzk4NDQyODhFQzI3MDJFQTkyQThBMkJFQUEwIiwgIm1ldGEiOiB7Imxhc3RVcGRhdGVkIjogIjIwMjItMDYtMjBUMTU6NDU6MzQuMTc2MDAwKzAwOjAwIiwgInByb2ZpbGUiOiBbImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvU3RydWN0dXJlRGVmaW5pdGlvbi9DNEJCLUV4cGxhbmF0aW9uT2ZCZW5lZml0LUlucGF0aWVudC1JbnN0aXR1dGlvbmFsIl0sICJzb3VyY2UiOiAiSUZQIzhTZGt2a1JaNTFhbUM1c1kiLCAidmVyc2lvbklkIjogIjEifSwgImFjY2lkZW50IjogeyJ0eXBlIjogeyJjb2RpbmciOiBbeyJkaXNwbGF5IjogIlhYWFhYIn1dfX0sICJiaWxsYWJsZVBlcmlvZCI6IHsiZW5kIjogIjIwMTktMTEtMjIiLCAic3RhcnQiOiAiMjAxOS0xMS0wOCJ9LCAiY2FyZVRlYW0iOiBbeyJwcm92aWRlciI6IHsicmVmZXJlbmNlIjogIk9yZ2FuaXphdGlvbi9pZnAtMDU2NjI2NSJ9LCAicm9sZSI6IHsiY29kaW5nIjogW3siY29kZSI6ICJwZXJmb3JtaW5nIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltQ2FyZVRlYW1Sb2xlIn1dfSwgIl9zZXF1ZW5jZSI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19fV0sICJfY3JlYXRlZCI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19LCAiZGlhZ25vc2lzIjogW3siZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIks1NzIwIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJvbkFkbWlzc2lvbiI6IHsiY29kaW5nIjogW3siY29kZSI6ICJ5IiwgInN5c3RlbSI6ICJodHRwOi8vd3d3Lm51YmMub3JnL1ByZXNlbnRPbkFkbWlzc2lvbiJ9XX0sICJzZXF1ZW5jZSI6IDEsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJwcmluY2lwYWwiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJOMTg2IiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJvbkFkbWlzc2lvbiI6IHsiY29kaW5nIjogW3siY29kZSI6ICJ5IiwgInN5c3RlbSI6ICJodHRwOi8vd3d3Lm51YmMub3JnL1ByZXNlbnRPbkFkbWlzc2lvbiJ9XX0sICJzZXF1ZW5jZSI6IDIsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJvdGhlciIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX0sIHsiZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIks1NzIwIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJzZXF1ZW5jZSI6IDEsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJhZG1pdHRpbmciLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJaOTA1IiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJzZXF1ZW5jZSI6IDExLCAidHlwZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAib3RoZXIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJaODc0NDIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvc2lkL2ljZC0xMC1jbSIsICJ2ZXJzaW9uIjogIjEwIn1dfSwgInNlcXVlbmNlIjogMTIsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJvdGhlciIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX0sIHsiZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIlo5ODg5MCIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9zaWQvaWNkLTEwLWNtIiwgInZlcnNpb24iOiAiMTAifV19LCAic2VxdWVuY2UiOiAxNCwgInR5cGUiOiBbeyJjb2RpbmciOiBbeyJjb2RlIjogIm90aGVyIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltRGlhZ25vc2lzVHlwZSJ9XX1dfSwgeyJkaWFnbm9zaXNDb2RlYWJsZUNvbmNlcHQiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiRDY0OSIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9zaWQvaWNkLTEwLWNtIiwgInZlcnNpb24iOiAiMTAifV19LCAib25BZG1pc3Npb24iOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAieSIsICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5udWJjLm9yZy9QcmVzZW50T25BZG1pc3Npb24ifV19LCAic2VxdWVuY2UiOiA3LCAidHlwZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAib3RoZXIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJRNjEyIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJzZXF1ZW5jZSI6IDUsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJvdGhlciIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX0sIHsiZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIkU4NzYiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvc2lkL2ljZC0xMC1jbSIsICJ2ZXJzaW9uIjogIjEwIn1dfSwgIm9uQWRtaXNzaW9uIjogeyJjb2RpbmciOiBbeyJjb2RlIjogInkiLCAic3lzdGVtIjogImh0dHA6Ly93d3cubnViYy5vcmcvUHJlc2VudE9uQWRtaXNzaW9uIn1dfSwgInNlcXVlbmNlIjogOSwgInR5cGUiOiBbeyJjb2RpbmciOiBbeyJjb2RlIjogIm90aGVyIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltRGlhZ25vc2lzVHlwZSJ9XX1dfSwgeyJkaWFnbm9zaXNDb2RlYWJsZUNvbmNlcHQiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiWjc5ODIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvc2lkL2ljZC0xMC1jbSIsICJ2ZXJzaW9uIjogIjEwIn1dfSwgInNlcXVlbmNlIjogMTAsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJvdGhlciIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX0sIHsiZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIlo4MjQ5IiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJzZXF1ZW5jZSI6IDEzLCAidHlwZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAib3RoZXIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJFODcxIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJvbkFkbWlzc2lvbiI6IHsiY29kaW5nIjogW3siY29kZSI6ICJ5IiwgInN5c3RlbSI6ICJodHRwOi8vd3d3Lm51YmMub3JnL1ByZXNlbnRPbkFkbWlzc2lvbiJ9XX0sICJzZXF1ZW5jZSI6IDMsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJvdGhlciIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX0sIHsiZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIkkxMjAiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvc2lkL2ljZC0xMC1jbSIsICJ2ZXJzaW9uIjogIjEwIn1dfSwgIm9uQWRtaXNzaW9uIjogeyJjb2RpbmciOiBbeyJjb2RlIjogInkiLCAic3lzdGVtIjogImh0dHA6Ly93d3cubnViYy5vcmcvUHJlc2VudE9uQWRtaXNzaW9uIn1dfSwgInNlcXVlbmNlIjogNCwgInR5cGUiOiBbeyJjb2RpbmciOiBbeyJjb2RlIjogIm90aGVyIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltRGlhZ25vc2lzVHlwZSJ9XX1dfSwgeyJkaWFnbm9zaXNDb2RlYWJsZUNvbmNlcHQiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiWjk0MCIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9zaWQvaWNkLTEwLWNtIiwgInZlcnNpb24iOiAiMTAifV19LCAic2VxdWVuY2UiOiA2LCAidHlwZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAib3RoZXIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJFNzg1IiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJvbkFkbWlzc2lvbiI6IHsiY29kaW5nIjogW3siY29kZSI6ICJ5IiwgInN5c3RlbSI6ICJodHRwOi8vd3d3Lm51YmMub3JnL1ByZXNlbnRPbkFkbWlzc2lvbiJ9XX0sICJzZXF1ZW5jZSI6IDgsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJvdGhlciIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX1dLCAiaWRlbnRpZmllciI6IFt7InR5cGUiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfSwgInZhbHVlIjogIjE5MjUzODExMzEtOC1GQ1RTIn1dLCAiaW5zdXJhbmNlIjogW3siY292ZXJhZ2UiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfSwgIl9mb2NhbCI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19fV0sICJpbnN1cmVyIjogeyJkaXNwbGF5IjogIkNpZ25hIn0sICJvdXRjb21lIjogImNvbXBsZXRlIiwgInBhdGllbnQiOiB7InJlZmVyZW5jZSI6ICJQYXRpZW50L2lmcC1BMDAwMDAwMDAwMDAwMDUifSwgInBheWVlIjogeyJwYXJ0eSI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19LCAidHlwZSI6IHsiY29kaW5nIjogW3siY29kZSI6ICJvdGhlciIsICJkaXNwbGF5IjogIlByb3ZpZGVyIiwgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL3BheWVldHlwZSJ9XX19LCAicGF5bWVudCI6IHsiZGF0ZSI6ICIyMDIwLTAxLTAyIn0sICJwcm92aWRlciI6IHsicmVmZXJlbmNlIjogIk9yZ2FuaXphdGlvbi9pZnAtMDU2NjI2NSJ9LCAiX3N0YXR1cyI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19LCAidG90YWwiOiBbeyJhbW91bnQiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfSwgImNhdGVnb3J5IjogeyJjb2RpbmciOiBbeyJjb2RlIjogImlubmV0d29yayIsICJkaXNwbGF5IjogIkluIE5ldHdvcmsiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCUGF5ZXJBZGp1ZGljYXRpb25TdGF0dXMifV19fV0sICJ0eXBlIjogeyJjb2RpbmciOiBbeyJjb2RlIjogImluc3RpdHV0aW9uYWwiLCAiZGlzcGxheSI6ICJJbnN0aXR1dGlvbmFsIENsYWltIiwgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL2NsYWltLXR5cGUifV19LCAidXNlIjogImNsYWltIiwgInJlc291cmNlVHlwZSI6ICJFeHBsYW5hdGlvbk9mQmVuZWZpdCJ9LCAic2VhcmNoIjogeyJtb2RlIjogIm1hdGNoIn19LCB7ImZ1bGxVcmwiOiAiaHR0cHM6Ly9wLWhpMi5kaWdpdGFsZWRnZS5jaWduYS5jb20vUGF0aWVudEFjY2Vzcy92MS1kZXZwb3J0YWwvRXhwbGFuYXRpb25PZkJlbmVmaXQvaWZwLUI0MDI4QjVCOTVFM0U1NDBDRDFERkExOTY4RDVDMDhEIiwgInJlc291cmNlIjogeyJpZCI6ICJpZnAtQjQwMjhCNUI5NUUzRTU0MENEMURGQTE5NjhENUMwOEQiLCAibWV0YSI6IHsibGFzdFVwZGF0ZWQiOiAiMjAyMi0wNi0yMFQxNTo0NTozNC42OTkwMDArMDA6MDAiLCAicHJvZmlsZSI6IFsiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9TdHJ1Y3R1cmVEZWZpbml0aW9uL0M0QkItRXhwbGFuYXRpb25PZkJlbmVmaXQtUHJvZmVzc2lvbmFsLU5vbkNsaW5pY2lhbiJdLCAic291cmNlIjogIklGUCNCbVVmdjA1dDl3RGN5QXQwIiwgInZlcnNpb25JZCI6ICIxIn0sICJhY2NpZGVudCI6IHsidHlwZSI6IHsiY29kaW5nIjogW3siZGlzcGxheSI6ICJYWFhYWCJ9XX19LCAiYmlsbGFibGVQZXJpb2QiOiB7ImVuZCI6ICIyMDE5LTExLTIyIiwgInN0YXJ0IjogIjIwMTktMTEtMjIifSwgImNhcmVUZWFtIjogW3sicHJvdmlkZXIiOiB7InJlZmVyZW5jZSI6ICJPcmdhbml6YXRpb24vaWZwLTE0NjUxMjAifSwgInF1YWxpZmljYXRpb24iOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAidW5rbm93biIsICJkaXNwbGF5IjogIlBhdGhvbG9neSwgQW5hdG9taWMiLCAic3lzdGVtIjogImh0dHA6Ly9udWNjLm9yZy9wcm92aWRlci10YXhvbm9teSJ9XX0sICJyb2xlIjogeyJjb2RpbmciOiBbeyJjb2RlIjogInBlcmZvcm1pbmciLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1DYXJlVGVhbVJvbGUifV19LCAiX3NlcXVlbmNlIjogeyJleHRlbnNpb24iOiBbeyJ1cmwiOiAiaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uL2RhdGEtYWJzZW50LXJlYXNvbiIsICJ2YWx1ZUNvZGUiOiAidW5rbm93biJ9XX19XSwgIl9jcmVhdGVkIjogeyJleHRlbnNpb24iOiBbeyJ1cmwiOiAiaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uL2RhdGEtYWJzZW50LXJlYXNvbiIsICJ2YWx1ZUNvZGUiOiAidW5rbm93biJ9XX0sICJkaWFnbm9zaXMiOiBbeyJkaWFnbm9zaXNDb2RlYWJsZUNvbmNlcHQiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiTjE4NiIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9zaWQvaWNkLTEwLWNtIiwgInZlcnNpb24iOiAiMTAifV19LCAic2VxdWVuY2UiOiAyLCAidHlwZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAic2Vjb25kYXJ5IiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltRGlhZ25vc2lzVHlwZSJ9XX1dfSwgeyJkaWFnbm9zaXNDb2RlYWJsZUNvbmNlcHQiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiSzU3MjAiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvc2lkL2ljZC0xMC1jbSIsICJ2ZXJzaW9uIjogIjEwIn1dfSwgInNlcXVlbmNlIjogMSwgInR5cGUiOiBbeyJjb2RpbmciOiBbeyJjb2RlIjogInByaW5jaXBhbCIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX0sIHsiZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIkU4NzEiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvc2lkL2ljZC0xMC1jbSIsICJ2ZXJzaW9uIjogIjEwIn1dfSwgInNlcXVlbmNlIjogMywgInR5cGUiOiBbeyJjb2RpbmciOiBbeyJjb2RlIjogInNlY29uZGFyeSIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX0sIHsiZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIlE2MTIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvc2lkL2ljZC0xMC1jbSIsICJ2ZXJzaW9uIjogIjEwIn1dfSwgInNlcXVlbmNlIjogNCwgInR5cGUiOiBbeyJjb2RpbmciOiBbeyJjb2RlIjogInNlY29uZGFyeSIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX1dLCAiaWRlbnRpZmllciI6IFt7InR5cGUiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfSwgInZhbHVlIjogIjE5MjcyNDY3OTgtNi1GQ1RTIn1dLCAiaW5zdXJhbmNlIjogW3siY292ZXJhZ2UiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfSwgIl9mb2NhbCI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19fV0sICJpbnN1cmVyIjogeyJkaXNwbGF5IjogIkNpZ25hIn0sICJpdGVtIjogW3siYWRqdWRpY2F0aW9uIjogW3siY2F0ZWdvcnkiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiaW5uZXR3b3JrIiwgImRpc3BsYXkiOiAiSW4gTmV0d29yayIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJQYXllckFkanVkaWNhdGlvblN0YXR1cyJ9XX19XSwgIm5ldCI6IHsidmFsdWUiOiAyNX0sICJwcm9kdWN0T3JTZXJ2aWNlIjogeyJjb2RpbmciOiBbeyJjb2RlIjogIjgzNzM1IiwgImRpc3BsYXkiOiAiQVNTQVkgT0YgTUFHTkVTSVVNIiwgInN5c3RlbSI6ICJodHRwOi8vd3d3LmFtYS1hc3NuLm9yZy9nby9jcHQifV19LCAicXVhbnRpdHkiOiB7InVuaXQiOiAiaXRlbV9xdWFudGl0eV91bml0IiwgInZhbHVlIjogMX0sICJfc2VxdWVuY2UiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfSwgInNlcnZpY2VkUGVyaW9kIjogeyJlbmQiOiAiMjAxOS0xMS0yMiIsICJzdGFydCI6ICIyMDE5LTExLTIyIn19XSwgIm91dGNvbWUiOiAiY29tcGxldGUiLCAicGF0aWVudCI6IHsicmVmZXJlbmNlIjogIlBhdGllbnQvaWZwLUEwMDAwMDAwMDAwMDAwNSJ9LCAicGF5ZWUiOiB7InBhcnR5IjogeyJleHRlbnNpb24iOiBbeyJ1cmwiOiAiaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uL2RhdGEtYWJzZW50LXJlYXNvbiIsICJ2YWx1ZUNvZGUiOiAidW5rbm93biJ9XX0sICJ0eXBlIjogeyJjb2RpbmciOiBbeyJjb2RlIjogIm90aGVyIiwgImRpc3BsYXkiOiAiUHJvdmlkZXIiLCAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vcGF5ZWV0eXBlIn1dfX0sICJwYXltZW50IjogeyJkYXRlIjogIjIwMjAtMDEtMDkifSwgInByb3ZpZGVyIjogeyJyZWZlcmVuY2UiOiAiT3JnYW5pemF0aW9uL2lmcC0xNDY1MTIwIn0sICJfc3RhdHVzIjogeyJleHRlbnNpb24iOiBbeyJ1cmwiOiAiaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uL2RhdGEtYWJzZW50LXJlYXNvbiIsICJ2YWx1ZUNvZGUiOiAidW5rbm93biJ9XX0sICJ0eXBlIjogeyJjb2RpbmciOiBbeyJjb2RlIjogInByb2Zlc3Npb25hbCIsICJkaXNwbGF5IjogIlByb2Zlc3Npb25hbCBDbGFpbSIsICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jbGFpbS10eXBlIn1dfSwgInVzZSI6ICJjbGFpbSIsICJyZXNvdXJjZVR5cGUiOiAiRXhwbGFuYXRpb25PZkJlbmVmaXQifSwgInNlYXJjaCI6IHsibW9kZSI6ICJtYXRjaCJ9fSwgeyJmdWxsVXJsIjogImh0dHBzOi8vcC1oaTIuZGlnaXRhbGVkZ2UuY2lnbmEuY29tL1BhdGllbnRBY2Nlc3MvdjEtZGV2cG9ydGFsL0V4cGxhbmF0aW9uT2ZCZW5lZml0L2lmcC1CMjcyNDA5RTgwMUVERjQ0Q0REQUQ4NjI1OURCQUM1MCIsICJyZXNvdXJjZSI6IHsiaWQiOiAiaWZwLUIyNzI0MDlFODAxRURGNDRDRERBRDg2MjU5REJBQzUwIiwgIm1ldGEiOiB7Imxhc3RVcGRhdGVkIjogIjIwMjItMDYtMjBUMTU6NDU6MzUuMjE4MDAwKzAwOjAwIiwgInByb2ZpbGUiOiBbImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvU3RydWN0dXJlRGVmaW5pdGlvbi9DNEJCLUV4cGxhbmF0aW9uT2ZCZW5lZml0LUlucGF0aWVudC1JbnN0aXR1dGlvbmFsIl0sICJzb3VyY2UiOiAiSUZQIzZPQWtlRU9meXJnYm5PbjEiLCAidmVyc2lvbklkIjogIjEifSwgImFjY2lkZW50IjogeyJ0eXBlIjogeyJjb2RpbmciOiBbeyJkaXNwbGF5IjogIlhYWFhYIn1dfX0sICJiaWxsYWJsZVBlcmlvZCI6IHsiZW5kIjogIjIwMTktMTEtMjIiLCAic3RhcnQiOiAiMjAxOS0xMS0wOCJ9LCAiY2FyZVRlYW0iOiBbeyJwcm92aWRlciI6IHsicmVmZXJlbmNlIjogIk9yZ2FuaXphdGlvbi9pZnAtMDU2NjI2NSJ9LCAicm9sZSI6IHsiY29kaW5nIjogW3siY29kZSI6ICJwZXJmb3JtaW5nIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltQ2FyZVRlYW1Sb2xlIn1dfSwgIl9zZXF1ZW5jZSI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19fV0sICJfY3JlYXRlZCI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19LCAiZGlhZ25vc2lzIjogW3siZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIlo4NzQ0MiIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9zaWQvaWNkLTEwLWNtIiwgInZlcnNpb24iOiAiMTAifV19LCAic2VxdWVuY2UiOiAxMiwgInR5cGUiOiBbeyJjb2RpbmciOiBbeyJjb2RlIjogIm90aGVyIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltRGlhZ25vc2lzVHlwZSJ9XX1dfSwgeyJkaWFnbm9zaXNDb2RlYWJsZUNvbmNlcHQiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiWjk4ODkwIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJzZXF1ZW5jZSI6IDE0LCAidHlwZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAib3RoZXIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJaOTQwIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJzZXF1ZW5jZSI6IDYsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJvdGhlciIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX0sIHsiZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIks1NzIwIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJvbkFkbWlzc2lvbiI6IHsiY29kaW5nIjogW3siY29kZSI6ICJ5IiwgInN5c3RlbSI6ICJodHRwOi8vd3d3Lm51YmMub3JnL1ByZXNlbnRPbkFkbWlzc2lvbiJ9XX0sICJzZXF1ZW5jZSI6IDEsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJwcmluY2lwYWwiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJRNjEyIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJzZXF1ZW5jZSI6IDUsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJvdGhlciIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX0sIHsiZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIkU3ODUiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvc2lkL2ljZC0xMC1jbSIsICJ2ZXJzaW9uIjogIjEwIn1dfSwgIm9uQWRtaXNzaW9uIjogeyJjb2RpbmciOiBbeyJjb2RlIjogInkiLCAic3lzdGVtIjogImh0dHA6Ly93d3cubnViYy5vcmcvUHJlc2VudE9uQWRtaXNzaW9uIn1dfSwgInNlcXVlbmNlIjogOCwgInR5cGUiOiBbeyJjb2RpbmciOiBbeyJjb2RlIjogIm90aGVyIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltRGlhZ25vc2lzVHlwZSJ9XX1dfSwgeyJkaWFnbm9zaXNDb2RlYWJsZUNvbmNlcHQiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiRDY0OSIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9zaWQvaWNkLTEwLWNtIiwgInZlcnNpb24iOiAiMTAifV19LCAib25BZG1pc3Npb24iOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAieSIsICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5udWJjLm9yZy9QcmVzZW50T25BZG1pc3Npb24ifV19LCAic2VxdWVuY2UiOiA3LCAidHlwZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAib3RoZXIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJLNTcyMCIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9zaWQvaWNkLTEwLWNtIiwgInZlcnNpb24iOiAiMTAifV19LCAic2VxdWVuY2UiOiAxLCAidHlwZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAiYWRtaXR0aW5nIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltRGlhZ25vc2lzVHlwZSJ9XX1dfSwgeyJkaWFnbm9zaXNDb2RlYWJsZUNvbmNlcHQiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiRTg3MSIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9zaWQvaWNkLTEwLWNtIiwgInZlcnNpb24iOiAiMTAifV19LCAib25BZG1pc3Npb24iOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAieSIsICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5udWJjLm9yZy9QcmVzZW50T25BZG1pc3Npb24ifV19LCAic2VxdWVuY2UiOiAzLCAidHlwZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAib3RoZXIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJaOTA1IiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJzZXF1ZW5jZSI6IDExLCAidHlwZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAib3RoZXIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJaODI0OSIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9zaWQvaWNkLTEwLWNtIiwgInZlcnNpb24iOiAiMTAifV19LCAic2VxdWVuY2UiOiAxMywgInR5cGUiOiBbeyJjb2RpbmciOiBbeyJjb2RlIjogIm90aGVyIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltRGlhZ25vc2lzVHlwZSJ9XX1dfSwgeyJkaWFnbm9zaXNDb2RlYWJsZUNvbmNlcHQiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiWjc5ODIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvc2lkL2ljZC0xMC1jbSIsICJ2ZXJzaW9uIjogIjEwIn1dfSwgInNlcXVlbmNlIjogMTAsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJvdGhlciIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX0sIHsiZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIkU4NzYiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvc2lkL2ljZC0xMC1jbSIsICJ2ZXJzaW9uIjogIjEwIn1dfSwgIm9uQWRtaXNzaW9uIjogeyJjb2RpbmciOiBbeyJjb2RlIjogInkiLCAic3lzdGVtIjogImh0dHA6Ly93d3cubnViYy5vcmcvUHJlc2VudE9uQWRtaXNzaW9uIn1dfSwgInNlcXVlbmNlIjogOSwgInR5cGUiOiBbeyJjb2RpbmciOiBbeyJjb2RlIjogIm90aGVyIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltRGlhZ25vc2lzVHlwZSJ9XX1dfSwgeyJkaWFnbm9zaXNDb2RlYWJsZUNvbmNlcHQiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiSTEyMCIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9zaWQvaWNkLTEwLWNtIiwgInZlcnNpb24iOiAiMTAifV19LCAib25BZG1pc3Npb24iOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAieSIsICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5udWJjLm9yZy9QcmVzZW50T25BZG1pc3Npb24ifV19LCAic2VxdWVuY2UiOiA0LCAidHlwZSI6IFt7ImNvZGluZyI6IFt7ImNvZGUiOiAib3RoZXIiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJOMTg2IiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJvbkFkbWlzc2lvbiI6IHsiY29kaW5nIjogW3siY29kZSI6ICJ5IiwgInN5c3RlbSI6ICJodHRwOi8vd3d3Lm51YmMub3JnL1ByZXNlbnRPbkFkbWlzc2lvbiJ9XX0sICJzZXF1ZW5jZSI6IDIsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJvdGhlciIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci91cy9jYXJpbi1iYi9Db2RlU3lzdGVtL0M0QkJDbGFpbURpYWdub3Npc1R5cGUifV19XX1dLCAiaWRlbnRpZmllciI6IFt7InR5cGUiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfSwgInZhbHVlIjogIjE5MjUzODExMzEtMTYtRkNUUyJ9XSwgImluc3VyYW5jZSI6IFt7ImNvdmVyYWdlIjogeyJleHRlbnNpb24iOiBbeyJ1cmwiOiAiaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uL2RhdGEtYWJzZW50LXJlYXNvbiIsICJ2YWx1ZUNvZGUiOiAidW5rbm93biJ9XX0sICJfZm9jYWwiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfX1dLCAiaW5zdXJlciI6IHsiZGlzcGxheSI6ICJDaWduYSJ9LCAib3V0Y29tZSI6ICJjb21wbGV0ZSIsICJwYXRpZW50IjogeyJyZWZlcmVuY2UiOiAiUGF0aWVudC9pZnAtQTAwMDAwMDAwMDAwMDA1In0sICJwYXllZSI6IHsicGFydHkiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfSwgInR5cGUiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAib3RoZXIiLCAiZGlzcGxheSI6ICJQcm92aWRlciIsICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9wYXllZXR5cGUifV19fSwgInBheW1lbnQiOiB7ImRhdGUiOiAiMjAyMC0wMS0wMiJ9LCAicHJvdmlkZXIiOiB7InJlZmVyZW5jZSI6ICJPcmdhbml6YXRpb24vaWZwLTA1NjYyNjUifSwgIl9zdGF0dXMiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfSwgInRvdGFsIjogW3siYW1vdW50IjogeyJleHRlbnNpb24iOiBbeyJ1cmwiOiAiaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uL2RhdGEtYWJzZW50LXJlYXNvbiIsICJ2YWx1ZUNvZGUiOiAidW5rbm93biJ9XX0sICJjYXRlZ29yeSI6IHsiY29kaW5nIjogW3siY29kZSI6ICJpbm5ldHdvcmsiLCAiZGlzcGxheSI6ICJJbiBOZXR3b3JrIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQlBheWVyQWRqdWRpY2F0aW9uU3RhdHVzIn1dfX1dLCAidHlwZSI6IHsiY29kaW5nIjogW3siY29kZSI6ICJpbnN0aXR1dGlvbmFsIiwgImRpc3BsYXkiOiAiSW5zdGl0dXRpb25hbCBDbGFpbSIsICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jbGFpbS10eXBlIn1dfSwgInVzZSI6ICJjbGFpbSIsICJyZXNvdXJjZVR5cGUiOiAiRXhwbGFuYXRpb25PZkJlbmVmaXQifSwgInNlYXJjaCI6IHsibW9kZSI6ICJtYXRjaCJ9fSwgeyJmdWxsVXJsIjogImh0dHBzOi8vcC1oaTIuZGlnaXRhbGVkZ2UuY2lnbmEuY29tL1BhdGllbnRBY2Nlc3MvdjEtZGV2cG9ydGFsL0V4cGxhbmF0aW9uT2ZCZW5lZml0L2lmcC1DMEI1NEMzOEU3RkJCNEFBRUZFRjNCQjZFNzRGMzA4MSIsICJyZXNvdXJjZSI6IHsiaWQiOiAiaWZwLUMwQjU0QzM4RTdGQkI0QUFFRkVGM0JCNkU3NEYzMDgxIiwgIm1ldGEiOiB7Imxhc3RVcGRhdGVkIjogIjIwMjItMDYtMjBUMTU6NDU6NDkuMzEyMDAwKzAwOjAwIiwgInByb2ZpbGUiOiBbImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvU3RydWN0dXJlRGVmaW5pdGlvbi9DNEJCLUV4cGxhbmF0aW9uT2ZCZW5lZml0LVByb2Zlc3Npb25hbC1Ob25DbGluaWNpYW4iXSwgInNvdXJjZSI6ICJJRlAjYzNQNWtCd1V1Z00zRXZ3RyIsICJ2ZXJzaW9uSWQiOiAiMSJ9LCAiYWNjaWRlbnQiOiB7InR5cGUiOiB7ImNvZGluZyI6IFt7ImRpc3BsYXkiOiAiWFhYWFgifV19fSwgImJpbGxhYmxlUGVyaW9kIjogeyJlbmQiOiAiMjAxOS0xMC0xMCIsICJzdGFydCI6ICIyMDE5LTEwLTEwIn0sICJjYXJlVGVhbSI6IFt7InByb3ZpZGVyIjogeyJyZWZlcmVuY2UiOiAiT3JnYW5pemF0aW9uL2lmcC01MWZiMDZmMzdlNWVjOTczY2U2OTEzMmE5YTI1NzFmMyJ9LCAicXVhbGlmaWNhdGlvbiI6IHsiY29kaW5nIjogW3siY29kZSI6ICJ1bmtub3duIiwgImRpc3BsYXkiOiAiUmFkaW9sb2d5LCBEaWFnbm9zdGljIiwgInN5c3RlbSI6ICJodHRwOi8vbnVjYy5vcmcvcHJvdmlkZXItdGF4b25vbXkifV19LCAicm9sZSI6IHsiY29kaW5nIjogW3siY29kZSI6ICJwZXJmb3JtaW5nIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vQzRCQkNsYWltQ2FyZVRlYW1Sb2xlIn1dfSwgIl9zZXF1ZW5jZSI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19fV0sICJfY3JlYXRlZCI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19LCAiZGlhZ25vc2lzIjogW3siZGlhZ25vc2lzQ29kZWFibGVDb25jZXB0IjogeyJjb2RpbmciOiBbeyJjb2RlIjogIlo5OTExIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJzZXF1ZW5jZSI6IDMsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJzZWNvbmRhcnkiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJaNDUyIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJzZXF1ZW5jZSI6IDIsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJzZWNvbmRhcnkiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19LCB7ImRpYWdub3Npc0NvZGVhYmxlQ29uY2VwdCI6IHsiY29kaW5nIjogW3siY29kZSI6ICJEMzI5IiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC9pY2QtMTAtY20iLCAidmVyc2lvbiI6ICIxMCJ9XX0sICJzZXF1ZW5jZSI6IDEsICJ0eXBlIjogW3siY29kaW5nIjogW3siY29kZSI6ICJwcmluY2lwYWwiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCQ2xhaW1EaWFnbm9zaXNUeXBlIn1dfV19XSwgImlkZW50aWZpZXIiOiBbeyJ0eXBlIjogeyJleHRlbnNpb24iOiBbeyJ1cmwiOiAiaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uL2RhdGEtYWJzZW50LXJlYXNvbiIsICJ2YWx1ZUNvZGUiOiAidW5rbm93biJ9XX0sICJ2YWx1ZSI6ICIxOTIxNjY2NjAwLTEtRkNUUyJ9XSwgImluc3VyYW5jZSI6IFt7ImNvdmVyYWdlIjogeyJleHRlbnNpb24iOiBbeyJ1cmwiOiAiaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uL2RhdGEtYWJzZW50LXJlYXNvbiIsICJ2YWx1ZUNvZGUiOiAidW5rbm93biJ9XX0sICJfZm9jYWwiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfX1dLCAiaW5zdXJlciI6IHsiZGlzcGxheSI6ICJDaWduYSJ9LCAiaXRlbSI6IFt7ImFkanVkaWNhdGlvbiI6IFt7ImNhdGVnb3J5IjogeyJjb2RpbmciOiBbeyJjb2RlIjogImlubmV0d29yayIsICJkaXNwbGF5IjogIkluIE5ldHdvcmsiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9DNEJCUGF5ZXJBZGp1ZGljYXRpb25TdGF0dXMifV19fV0sICJuZXQiOiB7InZhbHVlIjogMTY1LjY2fSwgInByb2R1Y3RPclNlcnZpY2UiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAiNzA0NzAiLCAiZGlzcGxheSI6ICJDVCBIRUFEL0JSQUlOIFcvTyAmIFcvRFlFIiwgInN5c3RlbSI6ICJodHRwOi8vd3d3LmFtYS1hc3NuLm9yZy9nby9jcHQifV19LCAicXVhbnRpdHkiOiB7InVuaXQiOiAiaXRlbV9xdWFudGl0eV91bml0IiwgInZhbHVlIjogMX0sICJfc2VxdWVuY2UiOiB7ImV4dGVuc2lvbiI6IFt7InVybCI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vZGF0YS1hYnNlbnQtcmVhc29uIiwgInZhbHVlQ29kZSI6ICJ1bmtub3duIn1dfSwgInNlcnZpY2VkUGVyaW9kIjogeyJlbmQiOiAiMjAxOS0xMC0xMCIsICJzdGFydCI6ICIyMDE5LTEwLTEwIn19XSwgIm91dGNvbWUiOiAiY29tcGxldGUiLCAicGF0aWVudCI6IHsicmVmZXJlbmNlIjogIlBhdGllbnQvaWZwLUEwMDAwMDAwMDAwMDAwNSJ9LCAicGF5ZWUiOiB7InBhcnR5IjogeyJleHRlbnNpb24iOiBbeyJ1cmwiOiAiaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uL2RhdGEtYWJzZW50LXJlYXNvbiIsICJ2YWx1ZUNvZGUiOiAidW5rbm93biJ9XX0sICJ0eXBlIjogeyJjb2RpbmciOiBbeyJjb2RlIjogIm90aGVyIiwgImRpc3BsYXkiOiAiUHJvdmlkZXIiLCAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vcGF5ZWV0eXBlIn1dfX0sICJwYXltZW50IjogeyJkYXRlIjogIjIwMTktMTAtMTcifSwgInByb3ZpZGVyIjogeyJyZWZlcmVuY2UiOiAiT3JnYW5pemF0aW9uL2lmcC01MWZiMDZmMzdlNWVjOTczY2U2OTEzMmE5YTI1NzFmMyJ9LCAiX3N0YXR1cyI6IHsiZXh0ZW5zaW9uIjogW3sidXJsIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi9kYXRhLWFic2VudC1yZWFzb24iLCAidmFsdWVDb2RlIjogInVua25vd24ifV19LCAidHlwZSI6IHsiY29kaW5nIjogW3siY29kZSI6ICJwcm9mZXNzaW9uYWwiLCAiZGlzcGxheSI6ICJQcm9mZXNzaW9uYWwgQ2xhaW0iLCAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vY2xhaW0tdHlwZSJ9XX0sICJ1c2UiOiAiY2xhaW0iLCAicmVzb3VyY2VUeXBlIjogIkV4cGxhbmF0aW9uT2ZCZW5lZml0In0sICJzZWFyY2giOiB7Im1vZGUiOiAibWF0Y2gifX0sIHsiZnVsbFVybCI6ICJodHRwczovL3AtaGkyLmRpZ2l0YWxlZGdlLmNpZ25hLmNvbS9QYXRpZW50QWNjZXNzL3YxLWRldnBvcnRhbC9JbW11bml6YXRpb24vaWZwLTJmMjZjYWhiLTUzNmMtNGUwMS04NjcyLTcyYTZiNTQzZmE2NSIsICJyZXNvdXJjZSI6IHsiaWQiOiAiaWZwLTJmMjZjYWhiLTUzNmMtNGUwMS04NjcyLTcyYTZiNTQzZmE2NSIsICJtZXRhIjogeyJsYXN0VXBkYXRlZCI6ICIyMDIyLTA2LTIwVDE1OjQ1OjUxLjg4NTAwMCswMDowMCIsICJzb3VyY2UiOiAiSUZQI0FHM09ZeWVZd281SXQwSm8iLCAidmVyc2lvbklkIjogIjEifSwgImxvY2F0aW9uIjogeyJyZWZlcmVuY2UiOiAiTG9jYXRpb24vaWZwLTJmMjZjYWFiLTUzNmMtNGUwMC04NjcyLTcyYTZiNTQzZmE4OSJ9LCAib2NjdXJyZW5jZURhdGVUaW1lIjogIjIwMjEtMDItMjJUMTU6MjA6MTIrMDA6MDAiLCAicGF0aWVudCI6IHsicmVmZXJlbmNlIjogIlBhdGllbnQvaWZwLUEwMDAwMDAwMDAwMDAwNSJ9LCAicHJpbWFyeVNvdXJjZSI6IHRydWUsICJzdGF0dXMiOiAiY29tcGxldGVkIiwgInZhY2NpbmVDb2RlIjogeyJjb2RpbmciOiBbeyJjb2RlIjogIjIxMiIsICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9zaWQvY3Z4In1dfSwgInJlc291cmNlVHlwZSI6ICJJbW11bml6YXRpb24ifSwgInNlYXJjaCI6IHsibW9kZSI6ICJtYXRjaCJ9fSwgeyJmdWxsVXJsIjogImh0dHBzOi8vcC1oaTIuZGlnaXRhbGVkZ2UuY2lnbmEuY29tL1BhdGllbnRBY2Nlc3MvdjEtZGV2cG9ydGFsL0xvY2F0aW9uL2lmcC0yZjI2Y2FhYi01MzZjLTRlMDAtODY3Mi03MmE2YjU0M2ZhODkiLCAicmVzb3VyY2UiOiB7ImlkIjogImlmcC0yZjI2Y2FhYi01MzZjLTRlMDAtODY3Mi03MmE2YjU0M2ZhODkiLCAibWV0YSI6IHsibGFzdFVwZGF0ZWQiOiAiMjAyMi0wNi0yMFQxNTo0NTo1MC4zNDUwMDArMDA6MDAiLCAic291cmNlIjogIklGUCNZZ2xmNVUzNHpUdXE5amZXIiwgInZlcnNpb25JZCI6ICIxIn0sICJhZGRyZXNzIjogeyJjaXR5IjogIkJPSVNFIiwgImNvdW50cnkiOiAiVVMiLCAibGluZSI6IFsiNjUgTUFJTiBTVCJdLCAicG9zdGFsQ29kZSI6ICI4MzcwMSIsICJzdGF0ZSI6ICJJRCJ9LCAibmFtZSI6ICJUUklTVEFURSBIRUFMVEggU0VSVklDRSIsICJyZXNvdXJjZVR5cGUiOiAiTG9jYXRpb24ifSwgInNlYXJjaCI6IHsibW9kZSI6ICJtYXRjaCJ9fSwgeyJmdWxsVXJsIjogImh0dHBzOi8vcC1oaTIuZGlnaXRhbGVkZ2UuY2lnbmEuY29tL1BhdGllbnRBY2Nlc3MvdjEtZGV2cG9ydGFsL09yZ2FuaXphdGlvbi9pZnAtNTFmYjA2ZjM3ZTVlYzk3M2NlNjkxMzJhOWEyNTcxZjMiLCAicmVzb3VyY2UiOiB7ImlkIjogImlmcC01MWZiMDZmMzdlNWVjOTczY2U2OTEzMmE5YTI1NzFmMyIsICJtZXRhIjogeyJsYXN0VXBkYXRlZCI6ICIyMDIyLTA2LTIwVDE1OjQ1OjQ1LjE1NTAwMCswMDowMCIsICJwcm9maWxlIjogWyJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL1N0cnVjdHVyZURlZmluaXRpb24vQzRCQi1Pcmdhbml6YXRpb24iXSwgInNvdXJjZSI6ICJJRlAjMUhjN2xvM3VNQm1HTlAxeiIsICJ2ZXJzaW9uSWQiOiAiMSJ9LCAiYWN0aXZlIjogdHJ1ZSwgImFkZHJlc3MiOiBbeyJjaXR5IjogIlNVUlBSSVNFIiwgImxpbmUiOiBbIjEzOTkxIFcgR1JBTkQgQVZFIFNURSAxMDUiXSwgInBvc3RhbENvZGUiOiAiODUzNzQiLCAic3RhdGUiOiAiQVoiLCAidGV4dCI6ICIxMzk5MSBXIEdSQU5EIEFWRSBTVEUgMTA1IFNVUlBSSVNFIEFaIDg1Mzc0In1dLCAiaWRlbnRpZmllciI6IFt7InN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3NpZC91cy1ucGkiLCAidHlwZSI6IHsiY29kaW5nIjogW3siY29kZSI6ICJucGkiLCAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvdXMvY2FyaW4tYmIvQ29kZVN5c3RlbS9JZGVudGlmaWVyVHlwZUNTIn1dfSwgInZhbHVlIjogIjE2MDk4Njg2NzgifSwgeyJzeXN0ZW0iOiAiaHR0cHM6Ly9kZXZlbG9wZXIuY2lnbmEuY29tIiwgInR5cGUiOiB7ImNvZGluZyI6IFt7ImNvZGUiOiAicHJvdmlkIiwgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3VzL2NhcmluLWJiL0NvZGVTeXN0ZW0vSWRlbnRpZmllclR5cGVDUyJ9XX19LCB7InN5c3RlbSI6ICJ1cm46b2lkOjIuMTYuODQwLjEuMTEzODgzLjQuNCIsICJ0eXBlIjogeyJjb2RpbmciOiBbeyJjb2RlIjogIlRBWCIsICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS92Mi0wMjAzIn1dfX1dLCAibmFtZSI6ICJDSUdOQSBNRUQgR1JQIFBIQ1ktU1VOIENJVFkgV0UiLCAicmVzb3VyY2VUeXBlIjogIk9yZ2FuaXphdGlvbiJ9LCAic2VhcmNoIjogeyJtb2RlIjogIm1hdGNoIn19LCB7InJlc291cmNlIjogeyJpc3N1ZSI6IFt7ImNvZGUiOiAicHJvY2Vzc2luZyIsICJkaWFnbm9zdGljcyI6ICJFcnJvciBjb2RlIENMQ09NLTAwNjsgeC1yZXF1ZXN0LWlkOiA1MTM4MTMwZC02MmVkLTQ4YjEtYjdhYi05YTE4MzljNTViNTUiLCAic2V2ZXJpdHkiOiAiZmF0YWwifV0sICJyZXNvdXJjZVR5cGUiOiAiT3BlcmF0aW9uT3V0Y29tZSJ9fSwgeyJmdWxsVXJsIjogImh0dHBzOi8vcC1oaTIuZGlnaXRhbGVkZ2UuY2lnbmEuY29tL1BhdGllbnQvQTAwMDAwMDAwMDAwMDA1IiwgInJlc291cmNlIjogeyJpZCI6ICJBMDAwMDAwMDAwMDAwMDUiLCAibGluayI6IFt7Im90aGVyIjogeyJyZWZlcmVuY2UiOiAiUGF0aWVudC9pZnAtQTAwMDAwMDAwMDAwMDA1In0sICJ0eXBlIjogInNlZWFsc28ifSwgeyJvdGhlciI6IHsicmVmZXJlbmNlIjogIlBhdGllbnQvY29tLTQ0YTA0ZWJiLTdhYmEtNGU2Ni05OWM3LTEyYjk5NDA1ZjMwZCJ9LCAidHlwZSI6ICJzZWVhbHNvIn1dLCAicmVzb3VyY2VUeXBlIjogIlBhdGllbnQifX1dLCAibGluayI6IFt7InJlbGF0aW9uIjogInNlbGYiLCAidXJsIjogImh0dHBzOi8vcC1oaTIuZGlnaXRhbGVkZ2UuY2lnbmEuY29tL1BhdGllbnRBY2Nlc3MvdjEtZGV2cG9ydGFsL1BhdGllbnQvQTAwMDAwMDAwMDAwMDA1LyRldmVyeXRoaW5nIn1dLCAidG90YWwiOiAxMSwgInR5cGUiOiAic2VhcmNoc2V0IiwgInJlc291cmNlVHlwZSI6ICJCdW5kbGUifQ==",
- "ContentLength": 29617,
- "TransferEncoding": null,
- "Trailer": null,
- "TLS": {
- "Version": 771,
- "HandshakeComplete": true,
- "DidResume": false,
- "CipherSuite": 49199,
- "NegotiatedProtocol": "h2",
- "NegotiatedProtocolIsMutual": true,
- "ServerName": "p-hi2.digitaledge.cigna.com",
- "PeerCertificates": [
- {
- "Raw": "MIIGFjCCBP6gAwIBAgIQBFYMkK/A2/56qcNp/QjwZzANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjAeFw0yMjAyMDEwMDAwMDBaFw0yMzAzMDEyMzU5NTlaMCAxHjAcBgNVBAMTFWRpZ2l0YWxlZGdlLmNpZ25hLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK+YoeE7a7I5d4VIjge1aaXJ4ZBHrvsNLIEMIb90pQR+6crHHC/7XUZDsG1NgD8Kq3WoOVN1ujlj5r5RPpv1YYAEWZ+ydk+S0NTUO3gnOvGnkCL26pTH8blkQk39E9aaxCliQGiJ22igJ+W8udcpBo4QukIlZU/i8yV5ZjRWNrx7gZBMWYUjDhZDLkfqS7E/R93QxUpnI7+7XegtuzBL89FLWN/rouQIHPCm735WzXap81AHlmYQmH6PfSE4v9Ob4uLbiRkPAptU8RSGsLEQfuF1qZTekEtyNq/1cJWYsakru2djv7u1ghBzBvjwuKJ+MqWtemrHhqa2Mih8j869CyUCAwEAAaOCAyQwggMgMB8GA1UdIwQYMBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3QMB0GA1UdDgQWBBShX21ZtUJKIYg8oN05p4jy/73j5zBUBgNVHREETTBLghVkaWdpdGFsZWRnZS5jaWduYS5jb22CFyouZGlnaXRhbGVkZ2UuY2lnbmEuY29tghl3d3cuZGlnaXRhbGVkZ2UuY2lnbmEuY29tMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2NybC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWItMS5jcmwwEwYDVR0gBAwwCjAIBgZngQwBAgEwdQYIKwYBBQUHAQEEaTBnMC0GCCsGAQUFBzABhiFodHRwOi8vb2NzcC5zY2ExYi5hbWF6b250cnVzdC5jb20wNgYIKwYBBQUHMAKGKmh0dHA6Ly9jcnQuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLmNydDAMBgNVHRMBAf8EAjAAMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdgCt9776fP8QyIudPZwePhhqtGcpXc+xDCTKhYY069yCigAAAX60JKGaAAAEAwBHMEUCIHQuQDuE17u1aNHT8eXFYLxqfQR3BIJpSsLvraw9evpSAiEAnZDXi6SaB/ARQ5kztbyz7LmRFf0/EOlEVc55PfH865YAdwA1zxkbv7FsV78PrUxtQsu7ticgJlHqP+Eq76gDwzvWTAAAAX60JKGhAAAEAwBIMEYCIQDDOZxHCBrO6y+15FOt673LjRr8CUXcDiVu6VAg6HCxuAIhAPsvYKbh+ElmQuNR5vqWJ/6N2a+ZKVda37HjbrmStDXKAHUAs3N3B+GEUPhjhtYFqdwRCUp5LbFnDAuH3PADDnk2pZoAAAF+tCShugAABAMARjBEAiBhCs4TVne+f9Rp3lDjtd4ZShvkJy+EXVHlkj3V8o4FlgIgT3xKhAQth5I5S63KtY1FZxKECYFV/6HWKKQBlWuIFZowDQYJKoZIhvcNAQELBQADggEBACqcwP5S3v5mIQ88h8nHbLttMerxAZO/WCZVfKH3SCB1vyuouYqChN69c2b3xKgbqlZ1sIMwTLSvsWY+YILf1Kkfc/qdVv3ZT/em06UZBsf64VHS1Ltg+qtE7gkwN2AuNd2sXBHNMgMcieuAkx72eHpypIc8KOe67bRKehC0dIAuwwQDH3nABjKCOPI8WZKwArf2SLq3F+jWCxSWr4WAZD0QwrBG2ascr7YvG1k0i95leH6GQJFdmv0xe9sig1UdIkU7GWrQIQQxhbKF8spzdEcVm7GOjqYDwaPBncJp9dEJ0kDkcCsGBqQgLnQHTyh97nvAJ6p2oDvRlp+ckSwPDxw=",
- "RawTBSCertificate": "MIIE/qADAgECAhAEVgyQr8Db/nqpw2n9CPBnMA0GCSqGSIb3DQEBCwUAMEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9uMB4XDTIyMDIwMTAwMDAwMFoXDTIzMDMwMTIzNTk1OVowIDEeMBwGA1UEAxMVZGlnaXRhbGVkZ2UuY2lnbmEuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr5ih4Ttrsjl3hUiOB7VppcnhkEeu+w0sgQwhv3SlBH7pysccL/tdRkOwbU2APwqrdag5U3W6OWPmvlE+m/VhgARZn7J2T5LQ1NQ7eCc68aeQIvbqlMfxuWRCTf0T1prEKWJAaInbaKAn5by51ykGjhC6QiVlT+LzJXlmNFY2vHuBkExZhSMOFkMuR+pLsT9H3dDFSmcjv7td6C27MEvz0UtY3+ui5Agc8KbvflbNdqnzUAeWZhCYfo99ITi/05vi4tuJGQ8Cm1TxFIawsRB+4XWplN6QS3I2r/VwlZixqSu7Z2O/u7WCEHMG+PC4on4ypa16aseGprYyKHyPzr0LJQIDAQABo4IDJDCCAyAwHwYDVR0jBBgwFoAUWaRmBlKge5WSPKOUByeWdFv5PdAwHQYDVR0OBBYEFKFfbVm1QkohiDyg3TmniPL/vePnMFQGA1UdEQRNMEuCFWRpZ2l0YWxlZGdlLmNpZ25hLmNvbYIXKi5kaWdpdGFsZWRnZS5jaWduYS5jb22CGXd3dy5kaWdpdGFsZWRnZS5jaWduYS5jb20wDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA9BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3JsLnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi0xLmNybDATBgNVHSAEDDAKMAgGBmeBDAECATB1BggrBgEFBQcBAQRpMGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0MAwGA1UdEwEB/wQCMAAwggF+BgorBgEEAdZ5AgQCBIIBbgSCAWoBaAB2AK33vvp8/xDIi509nB4+GGq0Zyldz7EMJMqFhjTr3IKKAAABfrQkoZoAAAQDAEcwRQIgdC5AO4TXu7Vo0dPx5cVgvGp9BHcEgmlKwu+trD16+lICIQCdkNeLpJoH8BFDmTO1vLPsuZEV/T8Q6URVznk98fzrlgB3ADXPGRu/sWxXvw+tTG1Cy7u2JyAmUeo/4SrvqAPDO9ZMAAABfrQkoaEAAAQDAEgwRgIhAMM5nEcIGs7rL7XkU63rvcuNGvwJRdwOJW7pUCDocLG4AiEA+y9gpuH4SWZC41Hm+pYn/o3Zr5kpV1rfseNuuZK0NcoAdQCzc3cH4YRQ+GOG1gWp3BEJSnktsWcMC4fc8AMOeTalmgAAAX60JKG6AAAEAwBGMEQCIGEKzhNWd75/1GneUOO13hlKG+QnL4RdUeWSPdXyjgWWAiBPfEqEBC2HkjlLrcq1jUVnEoQJgVX/odYopAGVa4gVmg==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr5ih4Ttrsjl3hUiOB7VppcnhkEeu+w0sgQwhv3SlBH7pysccL/tdRkOwbU2APwqrdag5U3W6OWPmvlE+m/VhgARZn7J2T5LQ1NQ7eCc68aeQIvbqlMfxuWRCTf0T1prEKWJAaInbaKAn5by51ykGjhC6QiVlT+LzJXlmNFY2vHuBkExZhSMOFkMuR+pLsT9H3dDFSmcjv7td6C27MEvz0UtY3+ui5Agc8KbvflbNdqnzUAeWZhCYfo99ITi/05vi4tuJGQ8Cm1TxFIawsRB+4XWplN6QS3I2r/VwlZixqSu7Z2O/u7WCEHMG+PC4on4ypa16aseGprYyKHyPzr0LJQIDAQAB",
- "RawSubject": "MCAxHjAcBgNVBAMTFWRpZ2l0YWxlZGdlLmNpZ25hLmNvbQ==",
- "RawIssuer": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "Signature": "KpzA/lLe/mYhDzyHycdsu20x6vEBk79YJlV8ofdIIHW/K6i5ioKE3r1zZvfEqBuqVnWwgzBMtK+xZj5ggt/UqR9z+p1W/dlP96bTpRkGx/rhUdLUu2D6q0TuCTA3YC413axcEc0yAxyJ64CTHvZ4enKkhzwo57rttEp6ELR0gC7DBAMfecAGMoI48jxZkrACt/ZIurcX6NYLFJavhYBkPRDCsEbZqxyvti8bWTSL3mV4foZAkV2a/TF72yKDVR0iRTsZatAhBDGFsoXyynN0RxWbsY6OpgPBo8Gdwmn10QnSQORwKwYGpCAudAdPKH3ue8AnqnagO9GWn5yRLA8PHA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "22166969182598356385963476374493665596454538792795790631866824229967665083833770693178182776154501364704405753058817654199629527114658278918028939765605728373537511190525588045185917626177195780119603554998440945140628359102212389483816839395313927433584114192582224531579886054652469109136187472813021894264686603662371070321952728562881616446499465567798084682066692385230743029368958766096624324048248107335897172375894403433591048370297897685707172808718765317463336434508229311011148360809639365379591352691204117336692049651307709728326887373286852287067875643991043752744947691034693363571924571949087799970597",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 5763704365137333910451501369362280551,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": null,
- "Organization": null,
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "digitaledge.cigna.com",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "digitaledge.cigna.com"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2022-02-01T00:00:00Z",
- "NotAfter": "2023-03-01T23:59:59Z",
- "KeyUsage": 5,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3Q"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBShX21ZtUJKIYg8oN05p4jy/73j5w=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 17
- ],
- "Critical": false,
- "Value": "MEuCFWRpZ2l0YWxlZGdlLmNpZ25hLmNvbYIXKi5kaWdpdGFsZWRnZS5jaWduYS5jb22CGXd3dy5kaWdpdGFsZWRnZS5jaWduYS5jb20="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIFoA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 37
- ],
- "Critical": false,
- "Value": "MBQGCCsGAQUFBwMBBggrBgEFBQcDAg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAA="
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 4,
- 1,
- 11129,
- 2,
- 4,
- 2
- ],
- "Critical": false,
- "Value": "BIIBagFoAHYArfe++nz/EMiLnT2cHj4YarRnKV3PsQwkyoWGNOvcgooAAAF+tCShmgAABAMARzBFAiB0LkA7hNe7tWjR0/HlxWC8an0EdwSCaUrC762sPXr6UgIhAJ2Q14ukmgfwEUOZM7W8s+y5kRX9PxDpRFXOeT3x/OuWAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+tCShoQAABAMASDBGAiEAwzmcRwgazusvteRTreu9y40a/AlF3A4lbulQIOhwsbgCIQD7L2Cm4fhJZkLjUeb6lif+jdmvmSlXWt+x4265krQ1ygB1ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfrQkoboAAAQDAEYwRAIgYQrOE1Z3vn/Uad5Q47XeGUob5CcvhF1R5ZI91fKOBZYCIE98SoQELYeSOUutyrWNRWcShAmBVf+h1iikAZVriBWa"
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": [
- 1,
- 2
- ],
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": false,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "oV9tWbVCSiGIPKDdOaeI8v+94+c=",
- "AuthorityKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "OCSPServer": [
- "http://ocsp.sca1b.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.sca1b.amazontrust.com/sca1b.crt"
- ],
- "DNSNames": [
- "digitaledge.cigna.com",
- "*.digitaledge.cigna.com",
- "www.digitaledge.cigna.com"
- ],
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.sca1b.amazontrust.com/sca1b-1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIESTCCAzGgAwIBAgITBn+UV4WH6Kx33rJTMlu8mYtWDTANBgkqhkiG9w0BAQsFADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1MTAyMjAwMDAwMFoXDTI1MTAxOTAwMDAwMFowRjELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEVMBMGA1UECxMMU2VydmVyIENBIDFCMQ8wDQYDVQQDEwZBbWF6b24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCThZn3c68asg3Wuw6MLAd5tES6BIoSMzoKcG5blPVo+sDORrMd4f2AbnZcMzPa43j4wNxhplty6aUKk4T1qe9BOwKFjwK6zmxxLVYo7bHViXsPlJ6qOMpFge5blDP+18x+B26A0piiQOuPkfyDyeR4xQghfj66Yo19V+emU3nazfvpFA+ROz6WoVmB5x+F2pV8xeKNR7u6azDdU5YVX1TawprmxRC1+WsAYmz6qP+z8ArDITC2FMVy2fw0IjKOtEXc/VfmtTFch5+AfGYMGMqqvJ6LcXiAhqG5TI+Dr0RtM88k+8XUBCeQ8IGKuANaL7TiItKZYxK1MMuTJtV9IblAgMBAAGjggE7MIIBNzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUWaRmBlKge5WSPKOUByeWdFv5PdAwHwYDVR0jBBgwFoAUhBjMhTTsvAyUlC4IWZzHshBOCggwewYIKwYBBQUHAQEEbzBtMC8GCCsGAQUFBzABhiNodHRwOi8vb2NzcC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbTA6BggrBgEFBQcwAoYuaHR0cDovL2NydC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbS9yb290Y2ExLmNlcjA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMA0GCSqGSIb3DQEBCwUAA4IBAQCFkr41u3nPo4FCHOTjY3NTOVI159Gt/a6ZiqyJEi+752+a1U5y6iAwYfmXss2lJwJFqMp2PphKg5625kXg8kP2CN5t6G7bMQcT8C8xDZNtYTd7WPD8UZiRKAJPBXa30/AbwuZe0GaFEQ8ugcYQgSn+IGBI8/LwhBNTZTUVEWuCUUBVV18YtbAiPq3yXqMB48Oz+ctBWuZSkbvkNodPLamkB2g1upRyzQ7qDn1X8nn8N8V7YJ6y68AtkHcNSRAnpTitxBKjtKPISLMVCx7i4hncxHZSyLyKQXhw2W2Xs0qLeC1etA+jTGDK4UfLeC0SF7FSi8o5LL21L8IzApar2pR/",
- "RawTBSCertificate": "MIIDMaADAgECAhMGf5RXhYforHfeslMyW7yZi1YNMA0GCSqGSIb3DQEBCwUAMDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDEwHhcNMTUxMDIyMDAwMDAwWhcNMjUxMDE5MDAwMDAwWjBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJOFmfdzrxqyDda7DowsB3m0RLoEihIzOgpwbluU9Wj6wM5Gsx3h/YBudlwzM9rjePjA3GGmW3LppQqThPWp70E7AoWPArrObHEtVijtsdWJew+Unqo4ykWB7luUM/7XzH4HboDSmKJA64+R/IPJ5HjFCCF+PrpijX1X56ZTedrN++kUD5E7PpahWYHnH4XalXzF4o1Hu7prMN1TlhVfVNrCmubFELX5awBibPqo/7PwCsMhMLYUxXLZ/DQiMo60Rdz9V+a1MVyHn4B8ZgwYyqq8notxeICGoblMj4OvRG0zzyT7xdQEJ5DwgYq4A1ovtOIi0pljErUwy5Mm1X0huUCAwEAAaOCATswggE3MBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBRZpGYGUqB7lZI8o5QHJ5Z0W/k90DAfBgNVHSMEGDAWgBSEGMyFNOy8DJSULghZnMeyEE4KCDB7BggrBgEFBQcBAQRvMG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2VyMD8GA1UdHwQ4MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmwwEwYDVR0gBAwwCjAIBgZngQwBAgE=",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwk4WZ93OvGrIN1rsOjCwHebREugSKEjM6CnBuW5T1aPrAzkazHeH9gG52XDMz2uN4+MDcYaZbcumlCpOE9anvQTsChY8Cus5scS1WKO2x1Yl7D5SeqjjKRYHuW5Qz/tfMfgdugNKYokDrj5H8g8nkeMUIIX4+umKNfVfnplN52s376RQPkTs+lqFZgecfhdqVfMXijUe7umsw3VOWFV9U2sKa5sUQtflrAGJs+qj/s/AKwyEwthTFctn8NCIyjrRF3P1X5rUxXIefgHxmDBjKqryei3F4gIahuUyPg69EbTPPJPvF1AQnkPCBirgDWi+04iLSmWMStTDLkybVfSG5QIDAQAB",
- "RawSubject": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "RawIssuer": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "Signature": "hZK+Nbt5z6OBQhzk42NzUzlSNefRrf2umYqsiRIvu+dvmtVOcuogMGH5l7LNpScCRajKdj6YSoOetuZF4PJD9gjebehu2zEHE/AvMQ2TbWE3e1jw/FGYkSgCTwV2t9PwG8LmXtBmhREPLoHGEIEp/iBgSPPy8IQTU2U1FRFrglFAVVdfGLWwIj6t8l6jAePDs/nLQVrmUpG75DaHTy2ppAdoNbqUcs0O6g59V/J5/DfFe2CesuvALZB3DUkQJ6U4rcQSo7SjyEizFQse4uIZ3MR2Usi8ikF4cNltl7NKi3gtXrQPo0xgyuFHy3gtEhexUovKOSy9tS/CMwKWq9qUfw==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "24528737555851895213919827617064808536856788789868126310716752303420041319710819680867697306230985630039655096548324364189962675576756038921107965025585889330528490649228935527969954506874750514159926943451238689552458142167021149788529783891257271028002485075630471793111207960868638365698705018555597520367289025831586046483446904825820575805338475813865444295353094097022678376192149453480223428943386514159000527368947588174705227657134217583008630047462959260157651883088072156905420231950318110240318878613016990846576820326568049365612395397183597930457965295993595011597251067348997341253617591444999389873893",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918209630989264145272943054026349679957517,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-10-22T00:00:00Z",
- "NotAfter": "2025-10-19T00:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAYBAf8CAQA="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBRZpGYGUqB7lZI8o5QHJ5Z0W/k90A=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFIQYzIU07LwMlJQuCFmcx7IQTgoI"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmw="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": 0,
- "MaxPathLenZero": true,
- "SubjectKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "AuthorityKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "OCSPServer": [
- "http://ocsp.rootca1.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootca1.amazontrust.com/rootca1.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootca1.amazontrust.com/rootca1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIEkjCCA3qgAwIBAgITBn+USionzfP6wq4rAfkI7rnExjANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE1MDUyNTEyMDAwMFoXDTM3MTIzMTAxMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaOCATEwggEtMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSEGMyFNOy8DJSULghZnMeyEE4KCDAfBgNVHSMEGDAWgBScXwDfqgHXMCs4iKK4bUqc8hGRgzB4BggrBgEFBQcBAQRsMGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2VyMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3JsMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAYjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "RawTBSCertificate": "MIIDeqADAgECAhMGf5RKKifN8/rCrisB+QjuucTGMA0GCSqGSIb3DQEBCwUAMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwHhcNMTUwNTI1MTIwMDAwWhcNMzcxMjMxMDEwMDAwWjA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQABo4IBMTCCAS0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMB8GA1UdIwQYMBaAFJxfAN+qAdcwKziIorhtSpzyEZGDMHgGCCsGAQUFBwEBBGwwajAuBggrBgEFBQcwAYYiaHR0cDovL29jc3Aucm9vdGcyLmFtYXpvbnRydXN0LmNvbTA4BggrBgEFBQcwAoYsaHR0cDovL2NydC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jZXIwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2NybC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jcmwwEQYDVR0gBAowCDAGBgRVHSAA",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQAB",
- "RawSubject": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "RawIssuer": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "Signature": "YjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "22529839904807742196558773392430766620630713202204326167346456925862066285712069978308045976033918808540171076811098215136401323342247576789054764683787147408289170989302937775178809187827657352584557953877946352196797789035355954596527030584944622221752357105572088106020206921431118198373122638305846252087992561841631797199384157902018140720267433956687491591657652730221337591680012205319549572614035105482287002884850178224609018864719685310905426619874727796905080238179726224664042154200651710137931048812546957419686875805576245376866031854569863410951649630469236463991472642618512857920826701027482532358669",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918191876577076464031512351042010504348870,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-05-25T12:00:00Z",
- "NotAfter": "2037-12-31T01:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBSEGMyFNOy8DJSULghZnMeyEE4KCA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFJxfAN+qAdcwKziIorhtSpzyEZGD"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "AuthorityKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "OCSPServer": [
- "http://ocsp.rootg2.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootg2.amazontrust.com/rootg2.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootg2.amazontrust.com/rootg2.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- },
- {
- "Raw": "MIIEdTCCA12gAwIBAgIJAKcOSkw0grd/MA0GCSqGSIb3DQEBCwUAMGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wOTA5MDIwMDAwMDBaFw0zNDA2MjgxNzM5MTZaMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDDrEKvlO4vW+GZdfjohTsR8/y8+fIBNtKTrID30892t2OGPZNmCom15cAICyL1l/9of5JUOG52kbUpqQ4XHj2C0NTm/2yEnZtvMaVq4rtnQU68/7JuMauh2WLmo7WJSJR1b/JaCTcFOD2oR0FMNnngRoOt+OQFodSk7PQ5E751bWAHDLUu57fa4657wx+UX2wmDPE1kCK4DMNEffud6QZW0CzyyRpqbn3oUYSXxmTqM6bam17jQuug0DuDPfR+uxa40l2ZvOgdFFRjKWcIfeAg5JQ4W2bHO7ZOphQazJ1FTfhy/HIrImzJ9ZVGif/L4qL8RVHHVAYBeFAlU5i38FAgMBAAGjgfAwge0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMB8GA1UdIwQYMBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjnME8GCCsGAQUFBwEBBEMwQTAcBggrBgEFBQcwAYYQaHR0cDovL28uc3MyLnVzLzAhBggrBgEFBQcwAoYVaHR0cDovL3guc3MyLnVzL3guY2VyMCYGA1UdHwQfMB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQELBQADggEBACMd44pXyn3pF3lM8R5V/cxTbj5HD9/GVfKyBDbtgB9TxF00KGu+x1X8Z+rLP3+QsjPNG1gQggL4+C/1E2DUBc7xgQjB3ad1l08YuW3e95ORCLp+QCztweq7dp4zBncdDQh/U90bZKuCJ/Fp1U1ervShw3WnWEQt8jxwmKy6abaVd38PMV4s/KCHOkdp8Hlf9BRUpJVeEXgSYCfOn8J3/yNTd126/+pZ59vPr5KW7ySaNRB6nJHGDn2Z9j8Z3/VyVOEVqQdZe4O/Ui5GjLIAZHYcSNPYeehuVsyuLAOQ1xk4meTKCRlb/weWsKh/NEnfVqn3sF/tM+2MR7cwA130A4w=",
- "RawTBSCertificate": "MIIDXaADAgECAgkApw5KTDSCt38wDQYJKoZIhvcNAQELBQAwaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA5MDkwMjAwMDAwMFoXDTM0MDYyODE3MzkxNlowgZgxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaOB8DCB7TAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUnF8A36oB1zArOIiiuG1KnPIRkYMwHwYDVR0jBBgwFoAUv1+30c7dH4b0W1Ws3NcQwg6piOcwTwYIKwYBBQUHAQEEQzBBMBwGCCsGAQUFBzABhhBodHRwOi8vby5zczIudXMvMCEGCCsGAQUFBzAChhVodHRwOi8veC5zczIudXMveC5jZXIwJgYDVR0fBB8wHTAboBmgF4YVaHR0cDovL3Muc3MyLnVzL3IuY3JsMBEGA1UdIAQKMAgwBgYEVR0gAA==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Qw6xCr5TuL1vhmXX46IU7EfP8vPnyATbSk6yA99PPdrdjhj2TZgqJteXACAsi9Zf/aH+SVDhudpG1KakOFx49gtDU5v9shJ2bbzGlauK7Z0FOvP+ybjGrodli5qO1iUiUdW/yWgk3BTg9qEdBTDZ54EaDrfjkBaHUpOz0ORO+dW1gBwy1Lue32uOue8MflF9sJgzxNZAiuAzDRH37nekGVtAs8skaam596FGEl8Zk6jOm2pte40LroNA7gz30frsWuNJdmbzoHRRUYylnCH3gIOSUOFtmxzu2TqYUGsydRU34cvxyKyJsyfWVRon/y+Ki/EVRx1QGAXhQJVOYt/BQIDAQAB",
- "RawSubject": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "RawIssuer": "MGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==",
- "Signature": "Ix3jilfKfekXeUzxHlX9zFNuPkcP38ZV8rIENu2AH1PEXTQoa77HVfxn6ss/f5CyM80bWBCCAvj4L/UTYNQFzvGBCMHdp3WXTxi5bd73k5EIun5ALO3B6rt2njMGdx0NCH9T3Rtkq4In8WnVTV6u9KHDdadYRC3yPHCYrLpptpV3fw8xXiz8oIc6R2nweV/0FFSklV4ReBJgJ86fwnf/I1N3Xbr/6lnn28+vkpbvJJo1EHqckcYOfZn2Pxnf9XJU4RWpB1l7g79SLkaMsgBkdhxI09h56G5WzK4sA5DXGTiZ5MoJGVv/B5awqH80Sd9WqfewX+0z7YxHtzADXfQDjA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26894789576491863019171445242018370132029525033879210664513024255165308689836081694724912552986436241602345929261854187816625921774943728567119070351838976265193901442169339571326613928339955106648223197498035701437846440970934704192382084561469274550003268570741310868032789070264835003681318445644941362885752628282968349509706358865971392279088395067847314610178969555804359319567178098112935181143559364150874524817692694181296058297355335204675211145990489303168553611700020424738364579606192390834705213026692659672388567853246354560726855054573503174641583891075106464210711468427779853334564691648681991700229",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 12037640545166866303,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": [
- "Starfield Class 2 Certification Authority"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Starfield Class 2 Certification Authority"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2009-09-02T00:00:00Z",
- "NotAfter": "2034-06-28T17:39:16Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBScXwDfqgHXMCs4iKK4bUqc8hGRgw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjn"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MEEwHAYIKwYBBQUHMAGGEGh0dHA6Ly9vLnNzMi51cy8wIQYIKwYBBQUHMAKGFWh0dHA6Ly94LnNzMi51cy94LmNlcg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "AuthorityKeyId": "v1+30c7dH4b0W1Ws3NcQwg6piOc=",
- "OCSPServer": [
- "http://o.ss2.us/"
- ],
- "IssuingCertificateURL": [
- "http://x.ss2.us/x.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://s.ss2.us/r.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- }
- ],
- "VerifiedChains": null,
- "SignedCertificateTimestamps": null,
- "OCSPResponse": null,
- "TLSUnique": "uRDxMw0NqFZwym3Y"
- }
- },
- "ErrType": "",
- "ErrMsg": ""
- }
- ]
-}
\ No newline at end of file
diff --git a/backend/pkg/hub/internal/fhir/epic/client.go b/backend/pkg/hub/internal/fhir/epic/client.go
deleted file mode 100644
index 5a41e0e1..00000000
--- a/backend/pkg/hub/internal/fhir/epic/client.go
+++ /dev/null
@@ -1,54 +0,0 @@
-package epic
-
-import (
- "context"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/sirupsen/logrus"
- "net/http"
-)
-
-type EpicClient struct {
- *base.FHIR401Client
-}
-
-func NewClient(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (base.Client, *models.Source, error) {
- baseClient, updatedSource, err := base.NewFHIR401Client(ctx, appConfig, globalLogger, source, testHttpClient...)
- baseClient.Headers["Accept"] = "application/json+fhir"
-
- return EpicClient{
- baseClient,
- }, updatedSource, err
-}
-
-func (c EpicClient) SyncAll(db database.DatabaseRepository) error {
-
- supportedResources := []string{
- "AllergyIntolerance",
- "CarePlan",
- "CareTeam",
- "Condition",
- "Consent",
- "Device",
- "Encounter",
- "FamilyMemberHistory",
- "Goal",
- "Immunization",
- "InsurancePlan",
- "MedicationRequest",
- "NutritionOrder",
- "Observation",
- "Person",
- "Procedure",
- "Provenance",
- "Questionnaire",
- "QuestionnaireResponse",
- "RelatedPerson",
- "Schedule",
- "ServiceRequest",
- "Slot",
- }
- return c.SyncAllByResourceName(db, supportedResources)
-}
diff --git a/backend/pkg/hub/internal/fhir/healthit/client.go b/backend/pkg/hub/internal/fhir/healthit/client.go
deleted file mode 100644
index e5c5ced8..00000000
--- a/backend/pkg/hub/internal/fhir/healthit/client.go
+++ /dev/null
@@ -1,54 +0,0 @@
-package healthit
-
-import (
- "context"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/sirupsen/logrus"
- "net/http"
-)
-
-type HealthItClient struct {
- *base.FHIR401Client
-}
-
-func NewClient(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (base.Client, *models.Source, error) {
- baseClient, updatedSource, err := base.NewFHIR401Client(ctx, appConfig, globalLogger, source, testHttpClient...)
- baseClient.Headers["Accept"] = "application/json+fhir"
-
- return HealthItClient{
- baseClient,
- }, updatedSource, err
-}
-
-func (c HealthItClient) SyncAll(db database.DatabaseRepository) error {
-
- supportedResources := []string{
- "AllergyIntolerance",
- "CarePlan",
- "CareTeam",
- "Condition",
- "Consent",
- "Device",
- "Encounter",
- "FamilyMemberHistory",
- "Goal",
- "Immunization",
- "InsurancePlan",
- "MedicationRequest",
- "NutritionOrder",
- "Observation",
- "Person",
- "Procedure",
- "Provenance",
- "Questionnaire",
- "QuestionnaireResponse",
- "RelatedPerson",
- "Schedule",
- "ServiceRequest",
- "Slot",
- }
- return c.SyncAllByResourceName(db, supportedResources)
-}
diff --git a/backend/pkg/hub/internal/fhir/logica/client.go b/backend/pkg/hub/internal/fhir/logica/client.go
deleted file mode 100644
index e58d81af..00000000
--- a/backend/pkg/hub/internal/fhir/logica/client.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package logica
-
-import (
- "context"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/sirupsen/logrus"
- "net/http"
-)
-
-type LogicaClient struct {
- *base.FHIR401Client
-}
-
-func NewClient(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (base.Client, *models.Source, error) {
- baseClient, updatedSource, err := base.NewFHIR401Client(ctx, appConfig, globalLogger, source, testHttpClient...)
- return LogicaClient{
- baseClient,
- }, updatedSource, err
-}
diff --git a/backend/pkg/hub/internal/fhir/logica/client_test.go b/backend/pkg/hub/internal/fhir/logica/client_test.go
deleted file mode 100644
index 0dd84af3..00000000
--- a/backend/pkg/hub/internal/fhir/logica/client_test.go
+++ /dev/null
@@ -1,49 +0,0 @@
-package logica
-
-import (
- "context"
- mock_config "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config/mock"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/golang/mock/gomock"
- "github.com/sirupsen/logrus"
- "github.com/stretchr/testify/require"
- "io/ioutil"
- "os"
- "testing"
-)
-
-func TestLogicaClient_SyncAll(t *testing.T) {
- t.Parallel()
- //setup
- mockCtrl := gomock.NewController(t)
- defer mockCtrl.Finish()
- fakeConfig := mock_config.NewMockInterface(mockCtrl)
-
- testDatabase, err := ioutil.TempFile("", "fasten.db")
- require.NoError(t, err)
- defer os.Remove(testDatabase.Name())
- fakeConfig.EXPECT().GetString("web.database.location").AnyTimes().Return(testDatabase.Name())
- testLogger := logrus.WithFields(logrus.Fields{
- "type": "test",
- })
- httpClient := base.OAuthVcrSetup(t, false)
- client, _, err := NewClient(context.Background(), fakeConfig, testLogger, models.Source{
- SourceType: "logica",
- PatientId: "smart-1288992",
- ApiEndpointBaseUrl: "https://api.logicahealth.org/fastenhealth/data",
- ClientId: "12b14c49-a4da-42f7-9e6f-2f19db622962",
- }, httpClient)
- require.NoError(t, err)
-
- db, err := database.NewRepository(fakeConfig, testLogger)
- require.NoError(t, err)
-
- //test
- err = client.SyncAll(db)
- require.NoError(t, err)
-
- //assert
- require.NoError(t, err)
-}
diff --git a/backend/pkg/hub/internal/fhir/logica/testdata/govcr-fixtures/TestLogicaClient_SyncAll.cassette b/backend/pkg/hub/internal/fhir/logica/testdata/govcr-fixtures/TestLogicaClient_SyncAll.cassette
deleted file mode 100644
index 360cc2b3..00000000
--- a/backend/pkg/hub/internal/fhir/logica/testdata/govcr-fixtures/TestLogicaClient_SyncAll.cassette
+++ /dev/null
@@ -1,6617 +0,0 @@
-{
- "Name": "TestLogicaClient_SyncAll",
- "Tracks": [
- {
- "Request": {
- "Method": "GET",
- "URL": {
- "Scheme": "https",
- "Opaque": "",
- "User": null,
- "Host": "api.logicahealth.org",
- "Path": "/fastenhealth/data/Patient/smart-1288992/$everything",
- "RawPath": "",
- "ForceQuery": false,
- "RawQuery": "",
- "Fragment": "",
- "RawFragment": ""
- },
- "Header": {},
- "Body": ""
- },
- "Response": {
- "Status": "200 OK",
- "StatusCode": 200,
- "Proto": "HTTP/2.0",
- "ProtoMajor": 2,
- "ProtoMinor": 0,
- "Header": {
- "Access-Control-Allow-Headers": [
- "X-FHIR-Starter,authorization,Prefer,Origin,Accept,X-Requested-With,Content-Type,Access-Control-Request-Method,Access-Control-Request-Headers"
- ],
- "Access-Control-Allow-Methods": [
- "POST, PUT, GET, OPTIONS, DELETE"
- ],
- "Access-Control-Allow-Origin": [
- "*"
- ],
- "Access-Control-Expose-Headers": [
- "Location, Content-Location"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
- ],
- "Content-Length": [
- "79622"
- ],
- "Content-Location": [
- "https://api.logicahealth.org/fastenhealth/data/Bundle/2b87e9ea-0af9-429f-abf2-0a72b2e33ad1"
- ],
- "Content-Type": [
- "application/fhir+json;charset=UTF-8"
- ],
- "Date": [
- "Tue, 27 Sep 2022 03:13:28 GMT"
- ],
- "Expires": [
- "0"
- ],
- "Last-Modified": [
- "Tue, 27 Sep 2022 03:12:39 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-Frame-Options": [
- "DENY"
- ],
- "X-Powered-By": [
- "HAPI FHIR 5.2.0 REST Server (FHIR Server; FHIR 4.0.1/R4)"
- ],
- "X-Request-Id": [
- "GCkMg6g1WEZdqJQr"
- ],
- "X-Xss-Protection": [
- "1; mode=block"
- ]
- },
- "Body": "ewogICJyZXNvdXJjZVR5cGUiOiAiQnVuZGxlIiwKICAiaWQiOiAiMmI4N2U5ZWEtMGFmOS00MjlmLWFiZjItMGE3MmIyZTMzYWQxIiwKICAibWV0YSI6IHsKICAgICJsYXN0VXBkYXRlZCI6ICIyMDIyLTA5LTI3VDAzOjEyOjM5Ljg3MCswMDowMCIKICB9LAogICJ0eXBlIjogInNlYXJjaHNldCIsCiAgImxpbmsiOiBbIHsKICAgICJyZWxhdGlvbiI6ICJzZWxmIiwKICAgICJ1cmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9QYXRpZW50L3NtYXJ0LTEyODg5OTIvJGV2ZXJ5dGhpbmciCiAgfSwgewogICAgInJlbGF0aW9uIjogIm5leHQiLAogICAgInVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhP19nZXRwYWdlcz0yYjg3ZTllYS0wYWY5LTQyOWYtYWJmMi0wYTcyYjJlMzNhZDEmX2dldHBhZ2Vzb2Zmc2V0PTUwJl9jb3VudD01MCZfcHJldHR5PXRydWUmX2J1bmRsZXR5cGU9c2VhcmNoc2V0IgogIH0gXSwKICAiZW50cnkiOiBbIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvUGF0aWVudC9zbWFydC0xMjg4OTkyIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJQYXRpZW50IiwKICAgICAgImlkIjogInNtYXJ0LTEyODg5OTIiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj5EYW5pZWwgQWRhbXM8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInR5cGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS92Mi0wMjAzIiwKICAgICAgICAgICAgImNvZGUiOiAiTVIiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJNZWRpY2FsIFJlY29yZCBOdW1iZXIiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJNZWRpY2FsIFJlY29yZCBOdW1iZXIiCiAgICAgICAgfSwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9ob3NwaXRhbC5zbWFydGhlYWx0aGl0Lm9yZyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTEyODg5OTIiCiAgICAgIH0gXSwKICAgICAgImFjdGl2ZSI6IHRydWUsCiAgICAgICJuYW1lIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgImZhbWlseSI6ICJBZGFtcyIsCiAgICAgICAgImdpdmVuIjogWyAiRGFuaWVsIiwgIlgiIF0KICAgICAgfSBdLAogICAgICAidGVsZWNvbSI6IFsgewogICAgICAgICJzeXN0ZW0iOiAiZW1haWwiLAogICAgICAgICJ2YWx1ZSI6ICJkYW5pZWwuYWRhbXNAZXhhbXBsZS5jb20iCiAgICAgIH0gXSwKICAgICAgImdlbmRlciI6ICJtYWxlIiwKICAgICAgImJpcnRoRGF0ZSI6ICIxOTI1LTEyLTIzIiwKICAgICAgImFkZHJlc3MiOiBbIHsKICAgICAgICAidXNlIjogImhvbWUiLAogICAgICAgICJsaW5lIjogWyAiMSBIaWxsIEF2ZSIgXSwKICAgICAgICAiY2l0eSI6ICJUdWxzYSIsCiAgICAgICAgInN0YXRlIjogIk9LIiwKICAgICAgICAicG9zdGFsQ29kZSI6ICI3NDExNyIsCiAgICAgICAgImNvdW50cnkiOiAiVVNBIgogICAgICB9IF0sCiAgICAgICJnZW5lcmFsUHJhY3RpdGlvbmVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvc21hcnQtUHJhY3RpdGlvbmVyLTcxNjE0NTAyIgogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE3OS10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTc5LXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5OS0xMi0yMTogdGVtcGVyYXR1cmUgPSAzNy4wIENlbDwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTc5LXRlbXBlcmF0dXJlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMTAtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJ0ZW1wZXJhdHVyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAidGVtcGVyYXR1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5OS0xMi0yMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDM3LjAsCiAgICAgICAgInVuaXQiOiAiQ2VsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIkNlbCIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTk3LWhlaWdodCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTk3LWhlaWdodCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMDEtMjU6IGhlaWdodCA9IDE2NS44NjIgY208L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE5Ny1oZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODMwMi0yIiwKICAgICAgICAgICJkaXNwbGF5IjogImhlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiaGVpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMDEtMjUiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxNjUuODYyLAogICAgICAgICJ1bml0IjogImNtIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImNtIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xODAtd2VpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xODAtd2VpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5OS0xMi0yMTogd2VpZ2h0ID0gOTYuMzQzMDIga2c8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE4MC13ZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzE0MS05IiwKICAgICAgICAgICJkaXNwbGF5IjogIndlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAid2VpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTktMTItMjEiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA5Ni4zNDMwMiwKICAgICAgICAidW5pdCI6ICJrZyIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZyIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTYzLWhlYXJ0cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTYzLWhlYXJ0cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTctMDUtMDc6IGhlYXJ0X3JhdGUgPSA0My4wIHtiZWF0c30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xNjMtaGVhcnRyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjg4NjctNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWFydF9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWFydF9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTctMDUtMDciLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA0My4wLAogICAgICAgICJ1bml0IjogIntiZWF0c30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIntiZWF0c30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNDctaGVhcnRyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNDctaGVhcnRyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0yMzogaGVhcnRfcmF0ZSA9IDM1LjAge2JlYXRzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI0Ny1oZWFydHJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODg2Ny00IiwKICAgICAgICAgICJkaXNwbGF5IjogImhlYXJ0X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlYXJ0X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0yMyIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDM1LjAsCiAgICAgICAgInVuaXQiOiAie2JlYXRzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JlYXRzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI3OC13ZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI3OC13ZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTA4OiB3ZWlnaHQgPSA4OS4zMTIzNCBrZzwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjc4LXdlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzMTQxLTkiLAogICAgICAgICAgImRpc3BsYXkiOiAid2VpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ3ZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0wOCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDg5LjMxMjM0LAogICAgICAgICJ1bml0IjogImtnIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNTItb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjUyLW94eWdlbnNhdHVyYXRpb24iLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTIzOiBveHlnZW5fc2F0dXJhdGlvbiA9IDEwMC4wICV7SGVtb2dsb2JpblNhdHVyYXRpb259PC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNTItb3h5Z2Vuc2F0dXJhdGlvbiIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIyNzEwLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMjMiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxMDAuMCwKICAgICAgICAidW5pdCI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTcwLWhlYXJ0cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTcwLWhlYXJ0cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTktMTItMjA6IGhlYXJ0X3JhdGUgPSA1My4wIHtiZWF0c30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xNzAtaGVhcnRyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjg4NjctNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWFydF9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWFydF9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTktMTItMjAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA1My4wLAogICAgICAgICJ1bml0IjogIntiZWF0c30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIntiZWF0c30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMDEtd2VpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yMDEtd2VpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0wMS0yNTogd2VpZ2h0ID0gOTQuMjU2NDkga2c8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTIwMS13ZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzE0MS05IiwKICAgICAgICAgICJkaXNwbGF5IjogIndlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAid2VpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMDEtMjUiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA5NC4yNTY0OSwKICAgICAgICAidW5pdCI6ICJrZyIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZyIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjUzLWhlaWdodCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjUzLWhlaWdodCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDUtMDItMjQ6IGhlaWdodCA9IDE2Ni42MjQgY208L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI1My1oZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODMwMi0yIiwKICAgICAgICAgICJkaXNwbGF5IjogImhlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiaGVpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMjQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxNjYuNjI0LAogICAgICAgICJ1bml0IjogImNtIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImNtIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04NTIiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTg1MiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMTAtMjk6IEJsb29kIHByZXNzdXJlIDEyMC83MiBtbUhnPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmFsIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiNTUyODQtNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0xMC0yOSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9zbWFydC1QcmFjdGl0aW9uZXItNzE2MTQ1MDIiCiAgICAgIH0gXSwKICAgICAgImNvbXBvbmVudCI6IFsgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDgwLTYiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiAxMjAsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9LCB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0NjItNCIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogNzIsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTg1MSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtODUxIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0wNC0yODogQmxvb2QgcHJlc3N1cmUgMTMyLzc5IG1tSGc8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluYWwiLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI1NTI4NC00IiwKICAgICAgICAgICJkaXNwbGF5IjogIkJsb29kIHByZXNzdXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTI4IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL3NtYXJ0LVByYWN0aXRpb25lci03MTYxNDUwMiIKICAgICAgfSBdLAogICAgICAiY29tcG9uZW50IjogWyB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0ODAtNiIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDEzMiwKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0sIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ2Mi00IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiA3OSwKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0gXQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjgxLWhlaWdodCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjgxLWhlaWdodCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMTQ6IGhlaWdodCA9IDE2My4zMjIgY208L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI4MS1oZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODMwMi0yIiwKICAgICAgICAgICJkaXNwbGF5IjogImhlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiaGVpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMTQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxNjMuMzIyLAogICAgICAgICJ1bml0IjogImNtIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImNtIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04NTAiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTg1MCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMjc6IEJsb29kIHByZXNzdXJlIDcxLzQzIG1tSGc8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluYWwiLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI1NTI4NC00IiwKICAgICAgICAgICJkaXNwbGF5IjogIkJsb29kIHByZXNzdXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTI3IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL3NtYXJ0LVByYWN0aXRpb25lci03MTYxNDUwMiIKICAgICAgfSBdLAogICAgICAiY29tcG9uZW50IjogWyB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0ODAtNiIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDcxLAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDQzLAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNTYtaGVhcnRyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNTYtaGVhcnRyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5Ny0wNS0wMTogaGVhcnRfcmF0ZSA9IDY3LjAge2JlYXRzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE1Ni1oZWFydHJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODg2Ny00IiwKICAgICAgICAgICJkaXNwbGF5IjogImhlYXJ0X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlYXJ0X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5Ny0wNS0wMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDY3LjAsCiAgICAgICAgInVuaXQiOiAie2JlYXRzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JlYXRzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIyMy1ibWkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIyMy1ibWkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTExLTAyOiBibWkgPSAzNC40IGtnL20yPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMjMtYm1pIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjM5MTU2LTUiLAogICAgICAgICAgImRpc3BsYXkiOiAiYm1pIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJibWkiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0xMS0wMiIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDM0LjQsCiAgICAgICAgInVuaXQiOiAia2cvbTIiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2cvbTIiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI0Ni1oZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI0Ni1oZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTIzOiBoZWlnaHQgPSAxNjYuNjI0IGNtPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNDYtaGVpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMDItMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA1LTAyLTIzIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTY2LjYyNCwKICAgICAgICAidW5pdCI6ICJjbSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJjbSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODU0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04NTQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTEyLTAxOiBCbG9vZCBwcmVzc3VyZSAxMDAvNjAgbW1IZzwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5hbCIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjU1Mjg0LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkJsb29kIHByZXNzdXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMTItMDEiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvc21hcnQtUHJhY3RpdGlvbmVyLTcxNjE0NTAyIgogICAgICB9IF0sCiAgICAgICJjb21wb25lbnQiOiBbIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ4MC02IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogMTAwLAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDYwLAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04NTMiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTg1MyIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMTAtMzA6IEJsb29kIHByZXNzdXJlIDQwLzI1IG1tSGc8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluYWwiLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI1NTI4NC00IiwKICAgICAgICAgICJkaXNwbGF5IjogIkJsb29kIHByZXNzdXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTEwLTMwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL3NtYXJ0LVByYWN0aXRpb25lci03MTYxNDUwMiIKICAgICAgfSBdLAogICAgICAiY29tcG9uZW50IjogWyB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0ODAtNiIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDQwLAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDI1LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNDEtcmVzcGlyYXRvcnlyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNDEtcmVzcGlyYXRvcnlyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0xMDogcmVzcGlyYXRvcnlfcmF0ZSA9IDIyLjAge2JyZWF0aHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjQxLXJlc3BpcmF0b3J5cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI5Mjc5LTEiLAogICAgICAgICAgImRpc3BsYXkiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA1LTAyLTEwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMjIuMCwKICAgICAgICAidW5pdCI6ICJ7YnJlYXRoc30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogInticmVhdGhzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI4Ny1veHlnZW5zYXR1cmF0aW9uIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yODctb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMTQ6IG94eWdlbl9zYXR1cmF0aW9uID0gMTAwLjAgJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn08L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI4Ny1veHlnZW5zYXR1cmF0aW9uIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjI3MTAtMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0xNCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDEwMC4wLAogICAgICAgICJ1bml0IjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yOTEtdGVtcGVyYXR1cmUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI5MS10ZW1wZXJhdHVyZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMjM6IHRlbXBlcmF0dXJlID0gMzYuODg4ODkgQ2VsPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yOTEtdGVtcGVyYXR1cmUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODMxMC01IiwKICAgICAgICAgICJkaXNwbGF5IjogInRlbXBlcmF0dXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ0ZW1wZXJhdHVyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTIzIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzYuODg4ODksCiAgICAgICAgInVuaXQiOiAiQ2VsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIkNlbCIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTYxLW94eWdlbnNhdHVyYXRpb24iLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE2MS1veHlnZW5zYXR1cmF0aW9uIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5Ny0wNS0wMTogb3h5Z2VuX3NhdHVyYXRpb24gPSAxMDAuMCAle0hlbW9nbG9iaW5TYXR1cmF0aW9ufTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTYxLW94eWdlbnNhdHVyYXRpb24iCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMjcxMC0yIiwKICAgICAgICAgICJkaXNwbGF5IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIxOTk3LTA1LTAxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTAwLjAsCiAgICAgICAgInVuaXQiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE3Mi10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTcyLXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5OS0xMi0yMDogdGVtcGVyYXR1cmUgPSAzNy4wNTU1NiBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE3Mi10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTktMTItMjAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNy4wNTU1NiwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNTMtYm1pIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNTMtYm1pIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5Ny0wNC0zMDogYm1pID0gMzUuOCBrZy9tMjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTUzLWJtaSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzOTE1Ni01IiwKICAgICAgICAgICJkaXNwbGF5IjogImJtaSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiYm1pIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTctMDQtMzAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNS44LAogICAgICAgICJ1bml0IjogImtnL20yIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnL20yIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xODgtYm1pIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xODgtYm1pIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0wMS0xOTogYm1pID0gMzQuNiBrZy9tMjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTg4LWJtaSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzOTE1Ni01IiwKICAgICAgICAgICJkaXNwbGF5IjogImJtaSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiYm1pIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMDEtMTkiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNC42LAogICAgICAgICJ1bml0IjogImtnL20yIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnL20yIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMjAtcmVzcGlyYXRvcnlyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yMjAtcmVzcGlyYXRvcnlyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMS0wMjogcmVzcGlyYXRvcnlfcmF0ZSA9IDIwLjAge2JyZWF0aHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjIwLXJlc3BpcmF0b3J5cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI5Mjc5LTEiLAogICAgICAgICAgImRpc3BsYXkiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTExLTAyIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMjAuMCwKICAgICAgICAidW5pdCI6ICJ7YnJlYXRoc30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogInticmVhdGhzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI3My1veHlnZW5zYXR1cmF0aW9uIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNzMtb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMDc6IG94eWdlbl9zYXR1cmF0aW9uID0gMTAwLjAgJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn08L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI3My1veHlnZW5zYXR1cmF0aW9uIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjI3MTAtMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0wNyIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDEwMC4wLAogICAgICAgICJ1bml0IjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yODYtYm1pIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yODYtYm1pIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0wNC0xNDogYm1pID0gMzQuNyBrZy9tMjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjg2LWJtaSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzOTE1Ni01IiwKICAgICAgICAgICJkaXNwbGF5IjogImJtaSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiYm1pIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMTQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNC43LAogICAgICAgICJ1bml0IjogImtnL20yIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnL20yIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNTItd2VpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNTItd2VpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5Ny0wNC0zMDogd2VpZ2h0ID0gOTcuNTIyMzYga2c8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE1Mi13ZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzE0MS05IiwKICAgICAgICAgICJkaXNwbGF5IjogIndlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAid2VpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTctMDQtMzAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA5Ny41MjIzNiwKICAgICAgICAidW5pdCI6ICJrZyIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZyIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjUxLWJtaSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjUxLWJtaSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDUtMDItMjM6IGJtaSA9IDMzLjgga2cvbTI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI1MS1ibWkiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzkxNTYtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJibWkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImJtaSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA1LTAyLTIzIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzMuOCwKICAgICAgICAidW5pdCI6ICJrZy9tMiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZy9tMiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTUwLXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTUwLXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTctMDQtMzA6IHJlc3BpcmF0b3J5X3JhdGUgPSAyMC4wIHticmVhdGhzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE1MC1yZXNwaXJhdG9yeXJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiOTI3OS0xIiwKICAgICAgICAgICJkaXNwbGF5IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5Ny0wNC0zMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDIwLjAsCiAgICAgICAgInVuaXQiOiAie2JyZWF0aHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YnJlYXRoc30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMTQtdGVtcGVyYXR1cmUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIxNC10ZW1wZXJhdHVyZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTEtMDE6IHRlbXBlcmF0dXJlID0gMzcuMDU1NTYgQ2VsPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMTQtdGVtcGVyYXR1cmUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODMxMC01IiwKICAgICAgICAgICJkaXNwbGF5IjogInRlbXBlcmF0dXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ0ZW1wZXJhdHVyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTExLTAxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzcuMDU1NTYsCiAgICAgICAgInVuaXQiOiAiQ2VsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIkNlbCIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjc3LXRlbXBlcmF0dXJlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNzctdGVtcGVyYXR1cmUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTA4OiB0ZW1wZXJhdHVyZSA9IDM2Ljk0NDQ0IENlbDwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjc3LXRlbXBlcmF0dXJlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMTAtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJ0ZW1wZXJhdHVyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAidGVtcGVyYXR1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0wOCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDM2Ljk0NDQ0LAogICAgICAgICJ1bml0IjogIkNlbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJDZWwiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE1NC1veHlnZW5zYXR1cmF0aW9uIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNTQtb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTctMDQtMzA6IG94eWdlbl9zYXR1cmF0aW9uID0gMTAwLjAgJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn08L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE1NC1veHlnZW5zYXR1cmF0aW9uIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjI3MTAtMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5Ny0wNC0zMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDEwMC4wLAogICAgICAgICJ1bml0IjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMzAtYm1pIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yMzAtYm1pIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMS0wNTogYm1pID0gMzQuMiBrZy9tMjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjMwLWJtaSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzOTE1Ni01IiwKICAgICAgICAgICJkaXNwbGF5IjogImJtaSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiYm1pIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMTEtMDUiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNC4yLAogICAgICAgICJ1bml0IjogImtnL20yIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnL20yIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNTgtYm1pIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNTgtYm1pIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0yNDogYm1pID0gMzMuMCBrZy9tMjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjU4LWJtaSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzOTE1Ni01IiwKICAgICAgICAgICJkaXNwbGF5IjogImJtaSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiYm1pIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMjQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzMy4wLAogICAgICAgICJ1bml0IjogImtnL20yIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnL20yIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNDgtcmVzcGlyYXRvcnlyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNDgtcmVzcGlyYXRvcnlyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0yMzogcmVzcGlyYXRvcnlfcmF0ZSA9IDIyLjAge2JyZWF0aHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjQ4LXJlc3BpcmF0b3J5cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI5Mjc5LTEiLAogICAgICAgICAgImRpc3BsYXkiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA1LTAyLTIzIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMjIuMCwKICAgICAgICAidW5pdCI6ICJ7YnJlYXRoc30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogInticmVhdGhzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIyNS1oZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIyNS1oZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTExLTA1OiBoZWlnaHQgPSAxNjUuODYyIGNtPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMjUtaGVpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMDItMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTExLTA1IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTY1Ljg2MiwKICAgICAgICAidW5pdCI6ICJjbSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJjbSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjMxLW94eWdlbnNhdHVyYXRpb24iLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIzMS1veHlnZW5zYXR1cmF0aW9uIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMS0wNTogb3h5Z2VuX3NhdHVyYXRpb24gPSAxMDAuMCAle0hlbW9nbG9iaW5TYXR1cmF0aW9ufTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjMxLW94eWdlbnNhdHVyYXRpb24iCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMjcxMC0yIiwKICAgICAgICAgICJkaXNwbGF5IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTExLTA1IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTAwLjAsCiAgICAgICAgInVuaXQiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE4MS1ibWkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE4MS1ibWkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk5LTEyLTIxOiBibWkgPSAzNS4yIGtnL20yPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xODEtYm1pIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjM5MTU2LTUiLAogICAgICAgICAgImRpc3BsYXkiOiAiYm1pIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJibWkiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5OS0xMi0yMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDM1LjIsCiAgICAgICAgInVuaXQiOiAia2cvbTIiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2cvbTIiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIxOC1oZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIxOC1oZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTExLTAyOiBoZWlnaHQgPSAxNjUuODYyIGNtPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMTgtaGVpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMDItMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTExLTAyIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTY1Ljg2MiwKICAgICAgICAidW5pdCI6ICJjbSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJjbSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjg5LWhlYXJ0cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjg5LWhlYXJ0cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMjM6IGhlYXJ0X3JhdGUgPSAzOC4wIHtiZWF0c30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yODktaGVhcnRyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjg4NjctNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWFydF9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWFydF9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMjMiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzOC4wLAogICAgICAgICJ1bml0IjogIntiZWF0c30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIntiZWF0c30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMTItaGVhcnRyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yMTItaGVhcnRyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMS0wMTogaGVhcnRfcmF0ZSA9IDg1LjAge2JlYXRzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTIxMi1oZWFydHJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODg2Ny00IiwKICAgICAgICAgICJkaXNwbGF5IjogImhlYXJ0X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlYXJ0X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0xMS0wMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDg1LjAsCiAgICAgICAgInVuaXQiOiAie2JlYXRzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JlYXRzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI2OS1yZXNwaXJhdG9yeXJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI2OS1yZXNwaXJhdG9yeXJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTA3OiByZXNwaXJhdG9yeV9yYXRlID0gMjAuMCB7YnJlYXRoc30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNjktcmVzcGlyYXRvcnlyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjkyNzktMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMDciLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyMC4wLAogICAgICAgICJ1bml0IjogInticmVhdGhzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JyZWF0aHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTk2LW94eWdlbnNhdHVyYXRpb24iLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE5Ni1veHlnZW5zYXR1cmF0aW9uIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0wMS0yNDogb3h5Z2VuX3NhdHVyYXRpb24gPSAxMDAuMCAle0hlbW9nbG9iaW5TYXR1cmF0aW9ufTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTk2LW94eWdlbnNhdHVyYXRpb24iCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMjcxMC0yIiwKICAgICAgICAgICJkaXNwbGF5IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTAxLTI0IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTAwLjAsCiAgICAgICAgInVuaXQiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE2Ni13ZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE2Ni13ZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk3LTA1LTA3OiB3ZWlnaHQgPSA5OS4wMTkyMSBrZzwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTY2LXdlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzMTQxLTkiLAogICAgICAgICAgImRpc3BsYXkiOiAid2VpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ3ZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5Ny0wNS0wNyIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDk5LjAxOTIxLAogICAgICAgICJ1bml0IjogImtnIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9FbmNvdW50ZXIvc21hcnQtODUzIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJFbmNvdW50ZXIiLAogICAgICAiaWQiOiAic21hcnQtODUzIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0xMC0zMDogYW1idWxhdG9yeSBlbmNvdW50ZXI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluaXNoZWQiLAogICAgICAiY2xhc3MiOiB7CiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL3YzLUFjdENvZGUiLAogICAgICAgICJjb2RlIjogIkFNQiIKICAgICAgfSwKICAgICAgInR5cGUiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9zbm9tZWQuaW5mbyIsCiAgICAgICAgICAiY29kZSI6ICIyNzA0MjcwMDMiLAogICAgICAgICAgImRpc3BsYXkiOiAiUGF0aWVudC1pbml0aWF0ZWQgZW5jb3VudGVyIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJQYXRpZW50LWluaXRpYXRlZCBhbWJ1bGF0b3J5IGVuY291bnRlciIKICAgICAgfSBdLAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgInBlcmlvZCI6IHsKICAgICAgICAic3RhcnQiOiAiMjAwOS0xMC0zMCIsCiAgICAgICAgImVuZCI6ICIyMDA5LTEwLTMwIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9FbmNvdW50ZXIvc21hcnQtODUyIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJFbmNvdW50ZXIiLAogICAgICAiaWQiOiAic21hcnQtODUyIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0xMC0yOTogYW1idWxhdG9yeSBlbmNvdW50ZXI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluaXNoZWQiLAogICAgICAiY2xhc3MiOiB7CiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL3YzLUFjdENvZGUiLAogICAgICAgICJjb2RlIjogIkFNQiIKICAgICAgfSwKICAgICAgInR5cGUiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9zbm9tZWQuaW5mbyIsCiAgICAgICAgICAiY29kZSI6ICIyNzA0MjcwMDMiLAogICAgICAgICAgImRpc3BsYXkiOiAiUGF0aWVudC1pbml0aWF0ZWQgZW5jb3VudGVyIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJQYXRpZW50LWluaXRpYXRlZCBhbWJ1bGF0b3J5IGVuY291bnRlciIKICAgICAgfSBdLAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgInBlcmlvZCI6IHsKICAgICAgICAic3RhcnQiOiAiMjAwOS0xMC0yOSIsCiAgICAgICAgImVuZCI6ICIyMDA5LTEwLTI5IgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSBdCn0=",
- "ContentLength": 79622,
- "TransferEncoding": null,
- "Trailer": null,
- "TLS": {
- "Version": 771,
- "HandshakeComplete": true,
- "DidResume": false,
- "CipherSuite": 49199,
- "NegotiatedProtocol": "h2",
- "NegotiatedProtocolIsMutual": true,
- "ServerName": "api.logicahealth.org",
- "PeerCertificates": [
- {
- "Raw": "MIIF3TCCBMWgAwIBAgIQD90iwZZx8t2e0HbfCXZv5jANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjAeFw0yMjAyMTYwMDAwMDBaFw0yMzAzMTcyMzU5NTlaMB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUQI/Eqh9TNDSw9Qjjdpb8Y0XCyFLrvuLe8oE20fV4z9ID+4slqhoQq5ZTddi72a0WCX1JYnAZvwJfSiKlauY6RhrcAlgx8Isspn9exNtEC1PVEcR6PEU+ecEuJM8nMI5HMqUbNNl7KaX66ts1kxDOz/CXropzJrlBMeqmW8Ab9oS0RfMYW4PFiuJxMMa0bTwvPEEsjdK/3P7Oq+kDhRW4mmlWXE5WSqbd4A2z8+qvaiTDT2cn6SRtJCSO21ev8AabXDUHC/cIfmZsi49DkA1Pu3aiLUvpEZoyTbEkYzgszH1e3NgS4Zlo0xAocqJ9A8KamotUcT9gsa330Zj92pwcCAwEAAaOCAu4wggLqMB8GA1UdIwQYMBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3QMB0GA1UdDgQWBBTNnWeVzTbuvsgtvy9p2Fxb8aDBXzAdBgNVHREEFjAUghIqLmxvZ2ljYWhlYWx0aC5vcmcwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA9BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3JsLnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi0xLmNybDATBgNVHSAEDDAKMAgGBmeBDAECATB1BggrBgEFBQcBAQRpMGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0MAwGA1UdEwEB/wQCMAAwggF/BgorBgEEAdZ5AgQCBIIBbwSCAWsBaQB2AOg+0No+9QY1MudXKLyJa8kD08vREWvs62nhd31tBr1uAAABfv/msJMAAAQDAEcwRQIhAME/PPk1wgtTuE+mVrtXkTR3HI1fUU5d9CA/U9ygbJeCAiBRSP9TPOdOijsVVXIxqbXuEkIbs59mK9zu2NbG35QmrwB3ADXPGRu/sWxXvw+tTG1Cy7u2JyAmUeo/4SrvqAPDO9ZMAAABfv/msLYAAAQDAEgwRgIhAN+ehH4lwA0ugf5mR1X1hQpx+7qDlK9h6Lh8jjP+dvkFAiEAmqb2KD4vu9nClgYLX8IOOox0nju77FlviBSR6jir7Y8AdgCzc3cH4YRQ+GOG1gWp3BEJSnktsWcMC4fc8AMOeTalmgAAAX7/5rDRAAAEAwBHMEUCIB+OPU0KICNfeKdgtAqFJRXPFo5Qh0i0eP8GxZZ1xGvBAiEA5tu5bGBk3dpr03FUZkBEt+UmB1j3HFTtE+4q9sbMaOQwDQYJKoZIhvcNAQELBQADggEBABhO7rjaOlTqqQFzLI0PvIvNbFQMKdwXOIxzW+QtCY0pJmmzNFouY9WpyVtjUVu4PxN2MOmqcturyTfn3I5lct+gdZF5ZN5xz1mOwP6Y/QwBd4612Rp55arRHZmOySN6sozY6lUfKRqGWsEOSauBs6msawicHSBaDeWwLFkvFNq9KU2gxAIAZvCINN9jxuS9tod/xYDWXtoqsxKJT5R9WA5jjLxCfg6hT2phcaH4NFMuuLIvVohfcRE0J3EzF01G+A8w2h/vmHBJcng7rV4x9zJDEXzy7FStGyYrPHshfw8Y5ZUtsXabvITKTvNcDTtig+FePUc8hZIQ25JtIB1utTw=",
- "RawTBSCertificate": "MIIExaADAgECAhAP3SLBlnHy3Z7Qdt8Jdm/mMA0GCSqGSIb3DQEBCwUAMEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9uMB4XDTIyMDIxNjAwMDAwMFoXDTIzMDMxNzIzNTk1OVowHTEbMBkGA1UEAwwSKi5sb2dpY2FoZWFsdGgub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQABo4IC7jCCAuowHwYDVR0jBBgwFoAUWaRmBlKge5WSPKOUByeWdFv5PdAwHQYDVR0OBBYEFM2dZ5XNNu6+yC2/L2nYXFvxoMFfMB0GA1UdEQQWMBSCEioubG9naWNhaGVhbHRoLm9yZzAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMHUGCCsGAQUFBwEBBGkwZzAtBggrBgEFBQcwAYYhaHR0cDovL29jc3Auc2NhMWIuYW1hem9udHJ1c3QuY29tMDYGCCsGAQUFBzAChipodHRwOi8vY3J0LnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi5jcnQwDAYDVR0TAQH/BAIwADCCAX8GCisGAQQB1nkCBAIEggFvBIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQAB",
- "RawSubject": "MB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZw==",
- "RawIssuer": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "Signature": "GE7uuNo6VOqpAXMsjQ+8i81sVAwp3Bc4jHNb5C0JjSkmabM0Wi5j1anJW2NRW7g/E3Yw6apy26vJN+fcjmVy36B1kXlk3nHPWY7A/pj9DAF3jrXZGnnlqtEdmY7JI3qyjNjqVR8pGoZawQ5Jq4GzqaxrCJwdIFoN5bAsWS8U2r0pTaDEAgBm8Ig032PG5L22h3/FgNZe2iqzEolPlH1YDmOMvEJ+DqFPamFxofg0Uy64si9WiF9xETQncTMXTUb4DzDaH++YcElyeDutXjH3MkMRfPLsVK0bJis8eyF/DxjllS2xdpu8hMpO81wNO2KD4V49RzyFkhDbkm0gHW61PA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26896718084987105712424649359497857781939776872717468683978155637746257215499021470349970988339566575676760846885076831729531027507529066970870403310324380393417735893022072179494775167564421874325236796705165007524050504302380060458697401950754660880328298733571850499514448029271466007480105805347771100750817823875907895773106342710116763756368148402141779264674889033245108376215416210306416743606177394777918692206509394288953263325831505326093688372090049902223282179991822050258371230607553730263316519439064647844893197691900489801227745237518700641825406379579419156372088488971079841452780233494646796756743",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 21086622482032331400955200856357498854,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": null,
- "Organization": null,
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "*.logicahealth.org",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "*.logicahealth.org"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2022-02-16T00:00:00Z",
- "NotAfter": "2023-03-17T23:59:59Z",
- "KeyUsage": 5,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3Q"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBTNnWeVzTbuvsgtvy9p2Fxb8aDBXw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 17
- ],
- "Critical": false,
- "Value": "MBSCEioubG9naWNhaGVhbHRoLm9yZw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIFoA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 37
- ],
- "Critical": false,
- "Value": "MBQGCCsGAQUFBwMBBggrBgEFBQcDAg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAA="
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 4,
- 1,
- 11129,
- 2,
- 4,
- 2
- ],
- "Critical": false,
- "Value": "BIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": [
- 1,
- 2
- ],
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": false,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "zZ1nlc027r7ILb8vadhcW/GgwV8=",
- "AuthorityKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "OCSPServer": [
- "http://ocsp.sca1b.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.sca1b.amazontrust.com/sca1b.crt"
- ],
- "DNSNames": [
- "*.logicahealth.org"
- ],
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.sca1b.amazontrust.com/sca1b-1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIESTCCAzGgAwIBAgITBn+UV4WH6Kx33rJTMlu8mYtWDTANBgkqhkiG9w0BAQsFADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1MTAyMjAwMDAwMFoXDTI1MTAxOTAwMDAwMFowRjELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEVMBMGA1UECxMMU2VydmVyIENBIDFCMQ8wDQYDVQQDEwZBbWF6b24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCThZn3c68asg3Wuw6MLAd5tES6BIoSMzoKcG5blPVo+sDORrMd4f2AbnZcMzPa43j4wNxhplty6aUKk4T1qe9BOwKFjwK6zmxxLVYo7bHViXsPlJ6qOMpFge5blDP+18x+B26A0piiQOuPkfyDyeR4xQghfj66Yo19V+emU3nazfvpFA+ROz6WoVmB5x+F2pV8xeKNR7u6azDdU5YVX1TawprmxRC1+WsAYmz6qP+z8ArDITC2FMVy2fw0IjKOtEXc/VfmtTFch5+AfGYMGMqqvJ6LcXiAhqG5TI+Dr0RtM88k+8XUBCeQ8IGKuANaL7TiItKZYxK1MMuTJtV9IblAgMBAAGjggE7MIIBNzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUWaRmBlKge5WSPKOUByeWdFv5PdAwHwYDVR0jBBgwFoAUhBjMhTTsvAyUlC4IWZzHshBOCggwewYIKwYBBQUHAQEEbzBtMC8GCCsGAQUFBzABhiNodHRwOi8vb2NzcC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbTA6BggrBgEFBQcwAoYuaHR0cDovL2NydC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbS9yb290Y2ExLmNlcjA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMA0GCSqGSIb3DQEBCwUAA4IBAQCFkr41u3nPo4FCHOTjY3NTOVI159Gt/a6ZiqyJEi+752+a1U5y6iAwYfmXss2lJwJFqMp2PphKg5625kXg8kP2CN5t6G7bMQcT8C8xDZNtYTd7WPD8UZiRKAJPBXa30/AbwuZe0GaFEQ8ugcYQgSn+IGBI8/LwhBNTZTUVEWuCUUBVV18YtbAiPq3yXqMB48Oz+ctBWuZSkbvkNodPLamkB2g1upRyzQ7qDn1X8nn8N8V7YJ6y68AtkHcNSRAnpTitxBKjtKPISLMVCx7i4hncxHZSyLyKQXhw2W2Xs0qLeC1etA+jTGDK4UfLeC0SF7FSi8o5LL21L8IzApar2pR/",
- "RawTBSCertificate": "MIIDMaADAgECAhMGf5RXhYforHfeslMyW7yZi1YNMA0GCSqGSIb3DQEBCwUAMDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDEwHhcNMTUxMDIyMDAwMDAwWhcNMjUxMDE5MDAwMDAwWjBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJOFmfdzrxqyDda7DowsB3m0RLoEihIzOgpwbluU9Wj6wM5Gsx3h/YBudlwzM9rjePjA3GGmW3LppQqThPWp70E7AoWPArrObHEtVijtsdWJew+Unqo4ykWB7luUM/7XzH4HboDSmKJA64+R/IPJ5HjFCCF+PrpijX1X56ZTedrN++kUD5E7PpahWYHnH4XalXzF4o1Hu7prMN1TlhVfVNrCmubFELX5awBibPqo/7PwCsMhMLYUxXLZ/DQiMo60Rdz9V+a1MVyHn4B8ZgwYyqq8notxeICGoblMj4OvRG0zzyT7xdQEJ5DwgYq4A1ovtOIi0pljErUwy5Mm1X0huUCAwEAAaOCATswggE3MBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBRZpGYGUqB7lZI8o5QHJ5Z0W/k90DAfBgNVHSMEGDAWgBSEGMyFNOy8DJSULghZnMeyEE4KCDB7BggrBgEFBQcBAQRvMG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2VyMD8GA1UdHwQ4MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmwwEwYDVR0gBAwwCjAIBgZngQwBAgE=",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwk4WZ93OvGrIN1rsOjCwHebREugSKEjM6CnBuW5T1aPrAzkazHeH9gG52XDMz2uN4+MDcYaZbcumlCpOE9anvQTsChY8Cus5scS1WKO2x1Yl7D5SeqjjKRYHuW5Qz/tfMfgdugNKYokDrj5H8g8nkeMUIIX4+umKNfVfnplN52s376RQPkTs+lqFZgecfhdqVfMXijUe7umsw3VOWFV9U2sKa5sUQtflrAGJs+qj/s/AKwyEwthTFctn8NCIyjrRF3P1X5rUxXIefgHxmDBjKqryei3F4gIahuUyPg69EbTPPJPvF1AQnkPCBirgDWi+04iLSmWMStTDLkybVfSG5QIDAQAB",
- "RawSubject": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "RawIssuer": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "Signature": "hZK+Nbt5z6OBQhzk42NzUzlSNefRrf2umYqsiRIvu+dvmtVOcuogMGH5l7LNpScCRajKdj6YSoOetuZF4PJD9gjebehu2zEHE/AvMQ2TbWE3e1jw/FGYkSgCTwV2t9PwG8LmXtBmhREPLoHGEIEp/iBgSPPy8IQTU2U1FRFrglFAVVdfGLWwIj6t8l6jAePDs/nLQVrmUpG75DaHTy2ppAdoNbqUcs0O6g59V/J5/DfFe2CesuvALZB3DUkQJ6U4rcQSo7SjyEizFQse4uIZ3MR2Usi8ikF4cNltl7NKi3gtXrQPo0xgyuFHy3gtEhexUovKOSy9tS/CMwKWq9qUfw==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "24528737555851895213919827617064808536856788789868126310716752303420041319710819680867697306230985630039655096548324364189962675576756038921107965025585889330528490649228935527969954506874750514159926943451238689552458142167021149788529783891257271028002485075630471793111207960868638365698705018555597520367289025831586046483446904825820575805338475813865444295353094097022678376192149453480223428943386514159000527368947588174705227657134217583008630047462959260157651883088072156905420231950318110240318878613016990846576820326568049365612395397183597930457965295993595011597251067348997341253617591444999389873893",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918209630989264145272943054026349679957517,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-10-22T00:00:00Z",
- "NotAfter": "2025-10-19T00:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAYBAf8CAQA="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBRZpGYGUqB7lZI8o5QHJ5Z0W/k90A=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFIQYzIU07LwMlJQuCFmcx7IQTgoI"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmw="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": 0,
- "MaxPathLenZero": true,
- "SubjectKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "AuthorityKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "OCSPServer": [
- "http://ocsp.rootca1.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootca1.amazontrust.com/rootca1.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootca1.amazontrust.com/rootca1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIEkjCCA3qgAwIBAgITBn+USionzfP6wq4rAfkI7rnExjANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE1MDUyNTEyMDAwMFoXDTM3MTIzMTAxMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaOCATEwggEtMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSEGMyFNOy8DJSULghZnMeyEE4KCDAfBgNVHSMEGDAWgBScXwDfqgHXMCs4iKK4bUqc8hGRgzB4BggrBgEFBQcBAQRsMGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2VyMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3JsMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAYjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "RawTBSCertificate": "MIIDeqADAgECAhMGf5RKKifN8/rCrisB+QjuucTGMA0GCSqGSIb3DQEBCwUAMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwHhcNMTUwNTI1MTIwMDAwWhcNMzcxMjMxMDEwMDAwWjA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQABo4IBMTCCAS0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMB8GA1UdIwQYMBaAFJxfAN+qAdcwKziIorhtSpzyEZGDMHgGCCsGAQUFBwEBBGwwajAuBggrBgEFBQcwAYYiaHR0cDovL29jc3Aucm9vdGcyLmFtYXpvbnRydXN0LmNvbTA4BggrBgEFBQcwAoYsaHR0cDovL2NydC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jZXIwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2NybC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jcmwwEQYDVR0gBAowCDAGBgRVHSAA",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQAB",
- "RawSubject": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "RawIssuer": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "Signature": "YjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "22529839904807742196558773392430766620630713202204326167346456925862066285712069978308045976033918808540171076811098215136401323342247576789054764683787147408289170989302937775178809187827657352584557953877946352196797789035355954596527030584944622221752357105572088106020206921431118198373122638305846252087992561841631797199384157902018140720267433956687491591657652730221337591680012205319549572614035105482287002884850178224609018864719685310905426619874727796905080238179726224664042154200651710137931048812546957419686875805576245376866031854569863410951649630469236463991472642618512857920826701027482532358669",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918191876577076464031512351042010504348870,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-05-25T12:00:00Z",
- "NotAfter": "2037-12-31T01:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBSEGMyFNOy8DJSULghZnMeyEE4KCA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFJxfAN+qAdcwKziIorhtSpzyEZGD"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "AuthorityKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "OCSPServer": [
- "http://ocsp.rootg2.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootg2.amazontrust.com/rootg2.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootg2.amazontrust.com/rootg2.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- },
- {
- "Raw": "MIIEdTCCA12gAwIBAgIJAKcOSkw0grd/MA0GCSqGSIb3DQEBCwUAMGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wOTA5MDIwMDAwMDBaFw0zNDA2MjgxNzM5MTZaMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDDrEKvlO4vW+GZdfjohTsR8/y8+fIBNtKTrID30892t2OGPZNmCom15cAICyL1l/9of5JUOG52kbUpqQ4XHj2C0NTm/2yEnZtvMaVq4rtnQU68/7JuMauh2WLmo7WJSJR1b/JaCTcFOD2oR0FMNnngRoOt+OQFodSk7PQ5E751bWAHDLUu57fa4657wx+UX2wmDPE1kCK4DMNEffud6QZW0CzyyRpqbn3oUYSXxmTqM6bam17jQuug0DuDPfR+uxa40l2ZvOgdFFRjKWcIfeAg5JQ4W2bHO7ZOphQazJ1FTfhy/HIrImzJ9ZVGif/L4qL8RVHHVAYBeFAlU5i38FAgMBAAGjgfAwge0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMB8GA1UdIwQYMBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjnME8GCCsGAQUFBwEBBEMwQTAcBggrBgEFBQcwAYYQaHR0cDovL28uc3MyLnVzLzAhBggrBgEFBQcwAoYVaHR0cDovL3guc3MyLnVzL3guY2VyMCYGA1UdHwQfMB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQELBQADggEBACMd44pXyn3pF3lM8R5V/cxTbj5HD9/GVfKyBDbtgB9TxF00KGu+x1X8Z+rLP3+QsjPNG1gQggL4+C/1E2DUBc7xgQjB3ad1l08YuW3e95ORCLp+QCztweq7dp4zBncdDQh/U90bZKuCJ/Fp1U1ervShw3WnWEQt8jxwmKy6abaVd38PMV4s/KCHOkdp8Hlf9BRUpJVeEXgSYCfOn8J3/yNTd126/+pZ59vPr5KW7ySaNRB6nJHGDn2Z9j8Z3/VyVOEVqQdZe4O/Ui5GjLIAZHYcSNPYeehuVsyuLAOQ1xk4meTKCRlb/weWsKh/NEnfVqn3sF/tM+2MR7cwA130A4w=",
- "RawTBSCertificate": "MIIDXaADAgECAgkApw5KTDSCt38wDQYJKoZIhvcNAQELBQAwaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA5MDkwMjAwMDAwMFoXDTM0MDYyODE3MzkxNlowgZgxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaOB8DCB7TAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUnF8A36oB1zArOIiiuG1KnPIRkYMwHwYDVR0jBBgwFoAUv1+30c7dH4b0W1Ws3NcQwg6piOcwTwYIKwYBBQUHAQEEQzBBMBwGCCsGAQUFBzABhhBodHRwOi8vby5zczIudXMvMCEGCCsGAQUFBzAChhVodHRwOi8veC5zczIudXMveC5jZXIwJgYDVR0fBB8wHTAboBmgF4YVaHR0cDovL3Muc3MyLnVzL3IuY3JsMBEGA1UdIAQKMAgwBgYEVR0gAA==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Qw6xCr5TuL1vhmXX46IU7EfP8vPnyATbSk6yA99PPdrdjhj2TZgqJteXACAsi9Zf/aH+SVDhudpG1KakOFx49gtDU5v9shJ2bbzGlauK7Z0FOvP+ybjGrodli5qO1iUiUdW/yWgk3BTg9qEdBTDZ54EaDrfjkBaHUpOz0ORO+dW1gBwy1Lue32uOue8MflF9sJgzxNZAiuAzDRH37nekGVtAs8skaam596FGEl8Zk6jOm2pte40LroNA7gz30frsWuNJdmbzoHRRUYylnCH3gIOSUOFtmxzu2TqYUGsydRU34cvxyKyJsyfWVRon/y+Ki/EVRx1QGAXhQJVOYt/BQIDAQAB",
- "RawSubject": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "RawIssuer": "MGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==",
- "Signature": "Ix3jilfKfekXeUzxHlX9zFNuPkcP38ZV8rIENu2AH1PEXTQoa77HVfxn6ss/f5CyM80bWBCCAvj4L/UTYNQFzvGBCMHdp3WXTxi5bd73k5EIun5ALO3B6rt2njMGdx0NCH9T3Rtkq4In8WnVTV6u9KHDdadYRC3yPHCYrLpptpV3fw8xXiz8oIc6R2nweV/0FFSklV4ReBJgJ86fwnf/I1N3Xbr/6lnn28+vkpbvJJo1EHqckcYOfZn2Pxnf9XJU4RWpB1l7g79SLkaMsgBkdhxI09h56G5WzK4sA5DXGTiZ5MoJGVv/B5awqH80Sd9WqfewX+0z7YxHtzADXfQDjA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26894789576491863019171445242018370132029525033879210664513024255165308689836081694724912552986436241602345929261854187816625921774943728567119070351838976265193901442169339571326613928339955106648223197498035701437846440970934704192382084561469274550003268570741310868032789070264835003681318445644941362885752628282968349509706358865971392279088395067847314610178969555804359319567178098112935181143559364150874524817692694181296058297355335204675211145990489303168553611700020424738364579606192390834705213026692659672388567853246354560726855054573503174641583891075106464210711468427779853334564691648681991700229",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 12037640545166866303,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": [
- "Starfield Class 2 Certification Authority"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Starfield Class 2 Certification Authority"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2009-09-02T00:00:00Z",
- "NotAfter": "2034-06-28T17:39:16Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBScXwDfqgHXMCs4iKK4bUqc8hGRgw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjn"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MEEwHAYIKwYBBQUHMAGGEGh0dHA6Ly9vLnNzMi51cy8wIQYIKwYBBQUHMAKGFWh0dHA6Ly94LnNzMi51cy94LmNlcg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "AuthorityKeyId": "v1+30c7dH4b0W1Ws3NcQwg6piOc=",
- "OCSPServer": [
- "http://o.ss2.us/"
- ],
- "IssuingCertificateURL": [
- "http://x.ss2.us/x.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://s.ss2.us/r.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- }
- ],
- "VerifiedChains": null,
- "SignedCertificateTimestamps": null,
- "OCSPResponse": null,
- "TLSUnique": "KGYau2ehxG6kGY5o"
- }
- },
- "ErrType": "",
- "ErrMsg": ""
- },
- {
- "Request": {
- "Method": "GET",
- "URL": {
- "Scheme": "https",
- "Opaque": "",
- "User": null,
- "Host": "api.logicahealth.org",
- "Path": "/fastenhealth/data",
- "RawPath": "",
- "ForceQuery": false,
- "RawQuery": "_getpages=2b87e9ea-0af9-429f-abf2-0a72b2e33ad1\u0026_getpagesoffset=50\u0026_count=50\u0026_pretty=true\u0026_bundletype=searchset",
- "Fragment": "",
- "RawFragment": ""
- },
- "Header": {},
- "Body": ""
- },
- "Response": {
- "Status": "200 OK",
- "StatusCode": 200,
- "Proto": "HTTP/2.0",
- "ProtoMajor": 2,
- "ProtoMinor": 0,
- "Header": {
- "Access-Control-Allow-Headers": [
- "X-FHIR-Starter,authorization,Prefer,Origin,Accept,X-Requested-With,Content-Type,Access-Control-Request-Method,Access-Control-Request-Headers"
- ],
- "Access-Control-Allow-Methods": [
- "POST, PUT, GET, OPTIONS, DELETE"
- ],
- "Access-Control-Allow-Origin": [
- "*"
- ],
- "Access-Control-Expose-Headers": [
- "Location, Content-Location"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
- ],
- "Content-Length": [
- "72243"
- ],
- "Content-Location": [
- "https://api.logicahealth.org/fastenhealth/data/Bundle/2b87e9ea-0af9-429f-abf2-0a72b2e33ad1"
- ],
- "Content-Type": [
- "application/fhir+json;charset=UTF-8"
- ],
- "Date": [
- "Tue, 27 Sep 2022 03:13:29 GMT"
- ],
- "Expires": [
- "0"
- ],
- "Last-Modified": [
- "Tue, 27 Sep 2022 03:12:40 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-Frame-Options": [
- "DENY"
- ],
- "X-Powered-By": [
- "HAPI FHIR 5.2.0 REST Server (FHIR Server; FHIR 4.0.1/R4)"
- ],
- "X-Request-Id": [
- "6n7UA4lNYMFNrMf7"
- ],
- "X-Xss-Protection": [
- "1; mode=block"
- ]
- },
- "Body": "ewogICJyZXNvdXJjZVR5cGUiOiAiQnVuZGxlIiwKICAiaWQiOiAiMmI4N2U5ZWEtMGFmOS00MjlmLWFiZjItMGE3MmIyZTMzYWQxIiwKICAibWV0YSI6IHsKICAgICJsYXN0VXBkYXRlZCI6ICIyMDIyLTA5LTI3VDAzOjEyOjQwLjAwMCswMDowMCIKICB9LAogICJ0eXBlIjogInNlYXJjaHNldCIsCiAgImxpbmsiOiBbIHsKICAgICJyZWxhdGlvbiI6ICJzZWxmIiwKICAgICJ1cmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YT9fZ2V0cGFnZXM9MmI4N2U5ZWEtMGFmOS00MjlmLWFiZjItMGE3MmIyZTMzYWQxJl9nZXRwYWdlc29mZnNldD01MCZfY291bnQ9NTAmX3ByZXR0eT10cnVlJl9idW5kbGV0eXBlPXNlYXJjaHNldCIKICB9LCB7CiAgICAicmVsYXRpb24iOiAibmV4dCIsCiAgICAidXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGE/X2dldHBhZ2VzPTJiODdlOWVhLTBhZjktNDI5Zi1hYmYyLTBhNzJiMmUzM2FkMSZfZ2V0cGFnZXNvZmZzZXQ9MTAwJl9jb3VudD01MCZfcHJldHR5PXRydWUmX2J1bmRsZXR5cGU9c2VhcmNoc2V0IgogIH0sIHsKICAgICJyZWxhdGlvbiI6ICJwcmV2aW91cyIsCiAgICAidXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGE/X2dldHBhZ2VzPTJiODdlOWVhLTBhZjktNDI5Zi1hYmYyLTBhNzJiMmUzM2FkMSZfZ2V0cGFnZXNvZmZzZXQ9MCZfY291bnQ9NTAmX3ByZXR0eT10cnVlJl9idW5kbGV0eXBlPXNlYXJjaHNldCIKICB9IF0sCiAgImVudHJ5IjogWyB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04NTEiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04NTEiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTI4OiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIyMDA5LTA0LTI4IiwKICAgICAgICAiZW5kIjogIjIwMDktMDQtMjgiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04NTAiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04NTAiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTI3OiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIyMDA5LTA0LTI3IiwKICAgICAgICAiZW5kIjogIjIwMDktMDQtMjciCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI4Mi1oZWFydHJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI4Mi1oZWFydHJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTE0OiBoZWFydF9yYXRlID0gNzUuMCB7YmVhdHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjgyLWhlYXJ0cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4ODY3LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVhcnRfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiaGVhcnRfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTE0IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogNzUuMCwKICAgICAgICAidW5pdCI6ICJ7YmVhdHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YmVhdHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjcwLXRlbXBlcmF0dXJlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNzAtdGVtcGVyYXR1cmUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTA3OiB0ZW1wZXJhdHVyZSA9IDM2Ljk0NDQ0IENlbDwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjcwLXRlbXBlcmF0dXJlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMTAtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJ0ZW1wZXJhdHVyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAidGVtcGVyYXR1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0wNyIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDM2Ljk0NDQ0LAogICAgICAgICJ1bml0IjogIkNlbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJDZWwiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI3Ni1yZXNwaXJhdG9yeXJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI3Ni1yZXNwaXJhdG9yeXJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTA4OiByZXNwaXJhdG9yeV9yYXRlID0gMjAuMCB7YnJlYXRoc30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNzYtcmVzcGlyYXRvcnlyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjkyNzktMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMDgiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyMC4wLAogICAgICAgICJ1bml0IjogInticmVhdGhzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JyZWF0aHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvRW5jb3VudGVyL3NtYXJ0LTg1NCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiRW5jb3VudGVyIiwKICAgICAgImlkIjogInNtYXJ0LTg1NCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMTItMDE6IGFtYnVsYXRvcnkgZW5jb3VudGVyPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmlzaGVkIiwKICAgICAgImNsYXNzIjogewogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS92My1BY3RDb2RlIiwKICAgICAgICAiY29kZSI6ICJBTUIiCiAgICAgIH0sCiAgICAgICJ0eXBlIjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vc25vbWVkLmluZm8iLAogICAgICAgICAgImNvZGUiOiAiMjcwNDI3MDAzIiwKICAgICAgICAgICJkaXNwbGF5IjogIlBhdGllbnQtaW5pdGlhdGVkIGVuY291bnRlciIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiUGF0aWVudC1pbml0aWF0ZWQgYW1idWxhdG9yeSBlbmNvdW50ZXIiCiAgICAgIH0gXSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJwZXJpb2QiOiB7CiAgICAgICAgInN0YXJ0IjogIjIwMDktMTItMDEiLAogICAgICAgICJlbmQiOiAiMjAwOS0xMi0wMSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTg5LW94eWdlbnNhdHVyYXRpb24iLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE4OS1veHlnZW5zYXR1cmF0aW9uIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0wMS0xOTogb3h5Z2VuX3NhdHVyYXRpb24gPSAxMDAuMCAle0hlbW9nbG9iaW5TYXR1cmF0aW9ufTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTg5LW94eWdlbnNhdHVyYXRpb24iCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMjcxMC0yIiwKICAgICAgICAgICJkaXNwbGF5IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTAxLTE5IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTAwLjAsCiAgICAgICAgInVuaXQiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI5Mi13ZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI5Mi13ZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTIzOiB3ZWlnaHQgPSA4Ni41MDAwNiBrZzwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjkyLXdlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzMTQxLTkiLAogICAgICAgICAgImRpc3BsYXkiOiAid2VpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ3ZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0yMyIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDg2LjUwMDA2LAogICAgICAgICJ1bml0IjogImtnIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xOTktcmVzcGlyYXRvcnlyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xOTktcmVzcGlyYXRvcnlyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0wMS0yNTogcmVzcGlyYXRvcnlfcmF0ZSA9IDIwLjAge2JyZWF0aHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTk5LXJlc3BpcmF0b3J5cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI5Mjc5LTEiLAogICAgICAgICAgImRpc3BsYXkiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTAxLTI1IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMjAuMCwKICAgICAgICAidW5pdCI6ICJ7YnJlYXRoc30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogInticmVhdGhzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIzNy1ibWkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIzNy1ibWkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTA5OiBibWkgPSAzMi42IGtnL20yPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMzctYm1pIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjM5MTU2LTUiLAogICAgICAgICAgImRpc3BsYXkiOiAiYm1pIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJibWkiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0wOSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDMyLjYsCiAgICAgICAgInVuaXQiOiAia2cvbTIiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2cvbTIiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIwNS1oZWFydHJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIwNS1oZWFydHJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTEwLTMxOiBoZWFydF9yYXRlID0gODIuMCB7YmVhdHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjA1LWhlYXJ0cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4ODY3LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVhcnRfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiaGVhcnRfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTEwLTMxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogODIuMCwKICAgICAgICAidW5pdCI6ICJ7YmVhdHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YmVhdHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjc0LWhlaWdodCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjc0LWhlaWdodCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMDg6IGhlaWdodCA9IDE2My4zMjIgY208L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI3NC1oZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODMwMi0yIiwKICAgICAgICAgICJkaXNwbGF5IjogImhlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiaGVpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMDgiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxNjMuMzIyLAogICAgICAgICJ1bml0IjogImNtIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImNtIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNDUtb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjQ1LW94eWdlbnNhdHVyYXRpb24iLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTEwOiBveHlnZW5fc2F0dXJhdGlvbiA9IDEwMC4wICV7SGVtb2dsb2JpblNhdHVyYXRpb259PC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNDUtb3h5Z2Vuc2F0dXJhdGlvbiIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIyNzEwLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMTAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxMDAuMCwKICAgICAgICAidW5pdCI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjY0LXdlaWdodCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjY0LXdlaWdodCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDUtMDItMjU6IHdlaWdodCA9IDkyLjM5Njc3IGtnPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNjQtd2VpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjMxNDEtOSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJ3ZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIndlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA1LTAyLTI1IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogOTIuMzk2NzcsCiAgICAgICAgInVuaXQiOiAia2ciLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2ciCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIxNS13ZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIxNS13ZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTExLTAxOiB3ZWlnaHQgPSA5OS43OTAzMiBrZzwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjE1LXdlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzMTQxLTkiLAogICAgICAgICAgImRpc3BsYXkiOiAid2VpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ3ZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0xMS0wMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDk5Ljc5MDMyLAogICAgICAgICJ1bml0IjogImtnIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNzUtaGVhcnRyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNzUtaGVhcnRyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0wNC0wODogaGVhcnRfcmF0ZSA9IDcyLjAge2JlYXRzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI3NS1oZWFydHJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODg2Ny00IiwKICAgICAgICAgICJkaXNwbGF5IjogImhlYXJ0X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlYXJ0X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0wOCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDcyLjAsCiAgICAgICAgInVuaXQiOiAie2JlYXRzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JlYXRzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI2NS1ibWkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI2NS1ibWkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTI1OiBibWkgPSAzMy4zIGtnL20yPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNjUtYm1pIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjM5MTU2LTUiLAogICAgICAgICAgImRpc3BsYXkiOiAiYm1pIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJibWkiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0yNSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDMzLjMsCiAgICAgICAgInVuaXQiOiAia2cvbTIiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2cvbTIiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE5My10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTkzLXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0wMS0yNDogdGVtcGVyYXR1cmUgPSAzNy4wNTU1NiBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE5My10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMDEtMjQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNy4wNTU1NiwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNTEtdGVtcGVyYXR1cmUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE1MS10ZW1wZXJhdHVyZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTctMDQtMzA6IHRlbXBlcmF0dXJlID0gMzcuMCBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE1MS10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTctMDQtMzAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNy4wLAogICAgICAgICJ1bml0IjogIkNlbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJDZWwiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE3Ni1oZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE3Ni1oZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk5LTEyLTIxOiBoZWlnaHQgPSAxNjUuNjA4IGNtPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xNzYtaGVpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMDItMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIxOTk5LTEyLTIxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTY1LjYwOCwKICAgICAgICAidW5pdCI6ICJjbSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJjbSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTY1LXRlbXBlcmF0dXJlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNjUtdGVtcGVyYXR1cmUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk3LTA1LTA3OiB0ZW1wZXJhdHVyZSA9IDM3LjAgQ2VsPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xNjUtdGVtcGVyYXR1cmUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODMxMC01IiwKICAgICAgICAgICJkaXNwbGF5IjogInRlbXBlcmF0dXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ0ZW1wZXJhdHVyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIxOTk3LTA1LTA3IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzcuMCwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNjEtaGVhcnRyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNjEtaGVhcnRyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0yNTogaGVhcnRfcmF0ZSA9IDY2LjAge2JlYXRzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI2MS1oZWFydHJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODg2Ny00IiwKICAgICAgICAgICJkaXNwbGF5IjogImhlYXJ0X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlYXJ0X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0yNSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDY2LjAsCiAgICAgICAgInVuaXQiOiAie2JlYXRzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JlYXRzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIxOS1oZWFydHJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIxOS1oZWFydHJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTExLTAyOiBoZWFydF9yYXRlID0gNTQuMCB7YmVhdHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjE5LWhlYXJ0cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4ODY3LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVhcnRfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiaGVhcnRfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTExLTAyIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogNTQuMCwKICAgICAgICAidW5pdCI6ICJ7YmVhdHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YmVhdHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTg2LXRlbXBlcmF0dXJlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xODYtdGVtcGVyYXR1cmUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTAxLTE5OiB0ZW1wZXJhdHVyZSA9IDM3LjA1NTU2IENlbDwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTg2LXRlbXBlcmF0dXJlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMTAtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJ0ZW1wZXJhdHVyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAidGVtcGVyYXR1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0wMS0xOSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDM3LjA1NTU2LAogICAgICAgICJ1bml0IjogIkNlbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJDZWwiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04MzEiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04MzEiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk5LTEyLTIwOiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIxOTk5LTEyLTIwIiwKICAgICAgICAiZW5kIjogIjE5OTktMTItMjAiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04MzAiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04MzAiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk3LTA1LTA3OiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIxOTk3LTA1LTA3IiwKICAgICAgICAiZW5kIjogIjE5OTctMDUtMDciCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE0OC1oZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE0OC1oZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk3LTA0LTMwOiBoZWlnaHQgPSAxNjUuMSBjbTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTQ4LWhlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzAyLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5Ny0wNC0zMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDE2NS4xLAogICAgICAgICJ1bml0IjogImNtIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImNtIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNDktaGVhcnRyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNDktaGVhcnRyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5Ny0wNC0zMDogaGVhcnRfcmF0ZSA9IDc1LjAge2JlYXRzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE0OS1oZWFydHJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODg2Ny00IiwKICAgICAgICAgICJkaXNwbGF5IjogImhlYXJ0X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlYXJ0X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5Ny0wNC0zMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDc1LjAsCiAgICAgICAgInVuaXQiOiAie2JlYXRzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JlYXRzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04MzUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04MzUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTAxLTI1OiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIyMDAxLTAxLTI1IiwKICAgICAgICAiZW5kIjogIjIwMDEtMDEtMjUiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04MzQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04MzQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTAxLTI0OiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIyMDAxLTAxLTI0IiwKICAgICAgICAiZW5kIjogIjIwMDEtMDEtMjQiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04MzMiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04MzMiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTAxLTE5OiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIyMDAxLTAxLTE5IiwKICAgICAgICAiZW5kIjogIjIwMDEtMDEtMTkiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE5NC13ZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE5NC13ZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTAxLTI0OiB3ZWlnaHQgPSA5MS42NzEwMiBrZzwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTk0LXdlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzMTQxLTkiLAogICAgICAgICAgImRpc3BsYXkiOiAid2VpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ3ZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0wMS0yNCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDkxLjY3MTAyLAogICAgICAgICJ1bml0IjogImtnIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9FbmNvdW50ZXIvc21hcnQtODMyIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJFbmNvdW50ZXIiLAogICAgICAiaWQiOiAic21hcnQtODMyIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5OS0xMi0yMTogYW1idWxhdG9yeSBlbmNvdW50ZXI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluaXNoZWQiLAogICAgICAiY2xhc3MiOiB7CiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL3YzLUFjdENvZGUiLAogICAgICAgICJjb2RlIjogIkFNQiIKICAgICAgfSwKICAgICAgInR5cGUiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9zbm9tZWQuaW5mbyIsCiAgICAgICAgICAiY29kZSI6ICIyNzA0MjcwMDMiLAogICAgICAgICAgImRpc3BsYXkiOiAiUGF0aWVudC1pbml0aWF0ZWQgZW5jb3VudGVyIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJQYXRpZW50LWluaXRpYXRlZCBhbWJ1bGF0b3J5IGVuY291bnRlciIKICAgICAgfSBdLAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgInBlcmlvZCI6IHsKICAgICAgICAic3RhcnQiOiAiMTk5OS0xMi0yMSIsCiAgICAgICAgImVuZCI6ICIxOTk5LTEyLTIxIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yODAtb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjgwLW94eWdlbnNhdHVyYXRpb24iLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTA4OiBveHlnZW5fc2F0dXJhdGlvbiA9IDEwMC4wICV7SGVtb2dsb2JpblNhdHVyYXRpb259PC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yODAtb3h5Z2Vuc2F0dXJhdGlvbiIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIyNzEwLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMDgiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxMDAuMCwKICAgICAgICAidW5pdCI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvRW5jb3VudGVyL3NtYXJ0LTgzOSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiRW5jb3VudGVyIiwKICAgICAgImlkIjogInNtYXJ0LTgzOSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTEtMDU6IGFtYnVsYXRvcnkgZW5jb3VudGVyPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmlzaGVkIiwKICAgICAgImNsYXNzIjogewogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS92My1BY3RDb2RlIiwKICAgICAgICAiY29kZSI6ICJBTUIiCiAgICAgIH0sCiAgICAgICJ0eXBlIjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vc25vbWVkLmluZm8iLAogICAgICAgICAgImNvZGUiOiAiMjcwNDI3MDAzIiwKICAgICAgICAgICJkaXNwbGF5IjogIlBhdGllbnQtaW5pdGlhdGVkIGVuY291bnRlciIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiUGF0aWVudC1pbml0aWF0ZWQgYW1idWxhdG9yeSBlbmNvdW50ZXIiCiAgICAgIH0gXSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJwZXJpb2QiOiB7CiAgICAgICAgInN0YXJ0IjogIjIwMDEtMTEtMDUiLAogICAgICAgICJlbmQiOiAiMjAwMS0xMS0wNSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvRW5jb3VudGVyL3NtYXJ0LTgzOCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiRW5jb3VudGVyIiwKICAgICAgImlkIjogInNtYXJ0LTgzOCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTEtMDI6IGFtYnVsYXRvcnkgZW5jb3VudGVyPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmlzaGVkIiwKICAgICAgImNsYXNzIjogewogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS92My1BY3RDb2RlIiwKICAgICAgICAiY29kZSI6ICJBTUIiCiAgICAgIH0sCiAgICAgICJ0eXBlIjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vc25vbWVkLmluZm8iLAogICAgICAgICAgImNvZGUiOiAiMjcwNDI3MDAzIiwKICAgICAgICAgICJkaXNwbGF5IjogIlBhdGllbnQtaW5pdGlhdGVkIGVuY291bnRlciIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiUGF0aWVudC1pbml0aWF0ZWQgYW1idWxhdG9yeSBlbmNvdW50ZXIiCiAgICAgIH0gXSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJwZXJpb2QiOiB7CiAgICAgICAgInN0YXJ0IjogIjIwMDEtMTEtMDIiLAogICAgICAgICJlbmQiOiAiMjAwMS0xMS0wMiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvRW5jb3VudGVyL3NtYXJ0LTgzNyIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiRW5jb3VudGVyIiwKICAgICAgImlkIjogInNtYXJ0LTgzNyIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTEtMDE6IGFtYnVsYXRvcnkgZW5jb3VudGVyPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmlzaGVkIiwKICAgICAgImNsYXNzIjogewogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS92My1BY3RDb2RlIiwKICAgICAgICAiY29kZSI6ICJBTUIiCiAgICAgIH0sCiAgICAgICJ0eXBlIjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vc25vbWVkLmluZm8iLAogICAgICAgICAgImNvZGUiOiAiMjcwNDI3MDAzIiwKICAgICAgICAgICJkaXNwbGF5IjogIlBhdGllbnQtaW5pdGlhdGVkIGVuY291bnRlciIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiUGF0aWVudC1pbml0aWF0ZWQgYW1idWxhdG9yeSBlbmNvdW50ZXIiCiAgICAgIH0gXSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJwZXJpb2QiOiB7CiAgICAgICAgInN0YXJ0IjogIjIwMDEtMTEtMDEiLAogICAgICAgICJlbmQiOiAiMjAwMS0xMS0wMSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvRW5jb3VudGVyL3NtYXJ0LTgzNiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiRW5jb3VudGVyIiwKICAgICAgImlkIjogInNtYXJ0LTgzNiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTAtMzE6IGFtYnVsYXRvcnkgZW5jb3VudGVyPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmlzaGVkIiwKICAgICAgImNsYXNzIjogewogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS92My1BY3RDb2RlIiwKICAgICAgICAiY29kZSI6ICJBTUIiCiAgICAgIH0sCiAgICAgICJ0eXBlIjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vc25vbWVkLmluZm8iLAogICAgICAgICAgImNvZGUiOiAiMjcwNDI3MDAzIiwKICAgICAgICAgICJkaXNwbGF5IjogIlBhdGllbnQtaW5pdGlhdGVkIGVuY291bnRlciIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiUGF0aWVudC1pbml0aWF0ZWQgYW1idWxhdG9yeSBlbmNvdW50ZXIiCiAgICAgIH0gXSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJwZXJpb2QiOiB7CiAgICAgICAgInN0YXJ0IjogIjIwMDEtMTAtMzEiLAogICAgICAgICJlbmQiOiAiMjAwMS0xMC0zMSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjI2LWhlYXJ0cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjI2LWhlYXJ0cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTEtMDU6IGhlYXJ0X3JhdGUgPSA4Mi4wIHtiZWF0c30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMjYtaGVhcnRyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjg4NjctNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWFydF9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWFydF9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMTEtMDUiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA4Mi4wLAogICAgICAgICJ1bml0IjogIntiZWF0c30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIntiZWF0c30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMDAtdGVtcGVyYXR1cmUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIwMC10ZW1wZXJhdHVyZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMDEtMjU6IHRlbXBlcmF0dXJlID0gMzcuMDU1NTYgQ2VsPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMDAtdGVtcGVyYXR1cmUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODMxMC01IiwKICAgICAgICAgICJkaXNwbGF5IjogInRlbXBlcmF0dXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ0ZW1wZXJhdHVyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTAxLTI1IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzcuMDU1NTYsCiAgICAgICAgInVuaXQiOiAiQ2VsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIkNlbCIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjE2LWJtaSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjE2LWJtaSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTEtMDE6IGJtaSA9IDM2LjMga2cvbTI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTIxNi1ibWkiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzkxNTYtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJibWkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImJtaSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTExLTAxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzYuMywKICAgICAgICAidW5pdCI6ICJrZy9tMiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZy9tMiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjIxLXRlbXBlcmF0dXJlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yMjEtdGVtcGVyYXR1cmUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTExLTAyOiB0ZW1wZXJhdHVyZSA9IDM3LjA1NTU2IENlbDwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjIxLXRlbXBlcmF0dXJlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMTAtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJ0ZW1wZXJhdHVyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAidGVtcGVyYXR1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0xMS0wMiIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDM3LjA1NTU2LAogICAgICAgICJ1bml0IjogIkNlbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJDZWwiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI4NC10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjg0LXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0wNC0xNDogdGVtcGVyYXR1cmUgPSAzNi44ODg4OSBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI4NC10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMTQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNi44ODg4OSwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xOTgtaGVhcnRyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xOTgtaGVhcnRyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0wMS0yNTogaGVhcnRfcmF0ZSA9IDgwLjAge2JlYXRzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE5OC1oZWFydHJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODg2Ny00IiwKICAgICAgICAgICJkaXNwbGF5IjogImhlYXJ0X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlYXJ0X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0wMS0yNSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDgwLjAsCiAgICAgICAgInVuaXQiOiAie2JlYXRzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JlYXRzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI0Mi10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjQyLXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0xMDogdGVtcGVyYXR1cmUgPSAzNi45NDQ0NCBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI0Mi10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMTAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNi45NDQ0NCwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNjAtaGVpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNjAtaGVpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0yNTogaGVpZ2h0ID0gMTY2LjYyNCBjbTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjYwLWhlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzAyLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0yNSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDE2Ni42MjQsCiAgICAgICAgInVuaXQiOiAiY20iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiY20iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI2My10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjYzLXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0yNTogdGVtcGVyYXR1cmUgPSAzNi45NDQ0NCBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI2My10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMjUiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNi45NDQ0NCwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNTktb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjU5LW94eWdlbnNhdHVyYXRpb24iLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTI0OiBveHlnZW5fc2F0dXJhdGlvbiA9IDEwMC4wICV7SGVtb2dsb2JpblNhdHVyYXRpb259PC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNTktb3h5Z2Vuc2F0dXJhdGlvbiIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIyNzEwLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMjQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxMDAuMCwKICAgICAgICAidW5pdCI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTc4LXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTc4LXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTktMTItMjE6IHJlc3BpcmF0b3J5X3JhdGUgPSAxOS4wIHticmVhdGhzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE3OC1yZXNwaXJhdG9yeXJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiOTI3OS0xIiwKICAgICAgICAgICJkaXNwbGF5IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5OS0xMi0yMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDE5LjAsCiAgICAgICAgInVuaXQiOiAie2JyZWF0aHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YnJlYXRoc30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNzUtb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTc1LW94eWdlbnNhdHVyYXRpb24iLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk5LTEyLTIwOiBveHlnZW5fc2F0dXJhdGlvbiA9IDEwMC4wICV7SGVtb2dsb2JpblNhdHVyYXRpb259PC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xNzUtb3h5Z2Vuc2F0dXJhdGlvbiIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIyNzEwLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTktMTItMjAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxMDAuMCwKICAgICAgICAidW5pdCI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0gXQp9",
- "ContentLength": 72243,
- "TransferEncoding": null,
- "Trailer": null,
- "TLS": {
- "Version": 771,
- "HandshakeComplete": true,
- "DidResume": false,
- "CipherSuite": 49199,
- "NegotiatedProtocol": "h2",
- "NegotiatedProtocolIsMutual": true,
- "ServerName": "api.logicahealth.org",
- "PeerCertificates": [
- {
- "Raw": "MIIF3TCCBMWgAwIBAgIQD90iwZZx8t2e0HbfCXZv5jANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjAeFw0yMjAyMTYwMDAwMDBaFw0yMzAzMTcyMzU5NTlaMB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUQI/Eqh9TNDSw9Qjjdpb8Y0XCyFLrvuLe8oE20fV4z9ID+4slqhoQq5ZTddi72a0WCX1JYnAZvwJfSiKlauY6RhrcAlgx8Isspn9exNtEC1PVEcR6PEU+ecEuJM8nMI5HMqUbNNl7KaX66ts1kxDOz/CXropzJrlBMeqmW8Ab9oS0RfMYW4PFiuJxMMa0bTwvPEEsjdK/3P7Oq+kDhRW4mmlWXE5WSqbd4A2z8+qvaiTDT2cn6SRtJCSO21ev8AabXDUHC/cIfmZsi49DkA1Pu3aiLUvpEZoyTbEkYzgszH1e3NgS4Zlo0xAocqJ9A8KamotUcT9gsa330Zj92pwcCAwEAAaOCAu4wggLqMB8GA1UdIwQYMBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3QMB0GA1UdDgQWBBTNnWeVzTbuvsgtvy9p2Fxb8aDBXzAdBgNVHREEFjAUghIqLmxvZ2ljYWhlYWx0aC5vcmcwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA9BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3JsLnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi0xLmNybDATBgNVHSAEDDAKMAgGBmeBDAECATB1BggrBgEFBQcBAQRpMGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0MAwGA1UdEwEB/wQCMAAwggF/BgorBgEEAdZ5AgQCBIIBbwSCAWsBaQB2AOg+0No+9QY1MudXKLyJa8kD08vREWvs62nhd31tBr1uAAABfv/msJMAAAQDAEcwRQIhAME/PPk1wgtTuE+mVrtXkTR3HI1fUU5d9CA/U9ygbJeCAiBRSP9TPOdOijsVVXIxqbXuEkIbs59mK9zu2NbG35QmrwB3ADXPGRu/sWxXvw+tTG1Cy7u2JyAmUeo/4SrvqAPDO9ZMAAABfv/msLYAAAQDAEgwRgIhAN+ehH4lwA0ugf5mR1X1hQpx+7qDlK9h6Lh8jjP+dvkFAiEAmqb2KD4vu9nClgYLX8IOOox0nju77FlviBSR6jir7Y8AdgCzc3cH4YRQ+GOG1gWp3BEJSnktsWcMC4fc8AMOeTalmgAAAX7/5rDRAAAEAwBHMEUCIB+OPU0KICNfeKdgtAqFJRXPFo5Qh0i0eP8GxZZ1xGvBAiEA5tu5bGBk3dpr03FUZkBEt+UmB1j3HFTtE+4q9sbMaOQwDQYJKoZIhvcNAQELBQADggEBABhO7rjaOlTqqQFzLI0PvIvNbFQMKdwXOIxzW+QtCY0pJmmzNFouY9WpyVtjUVu4PxN2MOmqcturyTfn3I5lct+gdZF5ZN5xz1mOwP6Y/QwBd4612Rp55arRHZmOySN6sozY6lUfKRqGWsEOSauBs6msawicHSBaDeWwLFkvFNq9KU2gxAIAZvCINN9jxuS9tod/xYDWXtoqsxKJT5R9WA5jjLxCfg6hT2phcaH4NFMuuLIvVohfcRE0J3EzF01G+A8w2h/vmHBJcng7rV4x9zJDEXzy7FStGyYrPHshfw8Y5ZUtsXabvITKTvNcDTtig+FePUc8hZIQ25JtIB1utTw=",
- "RawTBSCertificate": "MIIExaADAgECAhAP3SLBlnHy3Z7Qdt8Jdm/mMA0GCSqGSIb3DQEBCwUAMEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9uMB4XDTIyMDIxNjAwMDAwMFoXDTIzMDMxNzIzNTk1OVowHTEbMBkGA1UEAwwSKi5sb2dpY2FoZWFsdGgub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQABo4IC7jCCAuowHwYDVR0jBBgwFoAUWaRmBlKge5WSPKOUByeWdFv5PdAwHQYDVR0OBBYEFM2dZ5XNNu6+yC2/L2nYXFvxoMFfMB0GA1UdEQQWMBSCEioubG9naWNhaGVhbHRoLm9yZzAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMHUGCCsGAQUFBwEBBGkwZzAtBggrBgEFBQcwAYYhaHR0cDovL29jc3Auc2NhMWIuYW1hem9udHJ1c3QuY29tMDYGCCsGAQUFBzAChipodHRwOi8vY3J0LnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi5jcnQwDAYDVR0TAQH/BAIwADCCAX8GCisGAQQB1nkCBAIEggFvBIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQAB",
- "RawSubject": "MB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZw==",
- "RawIssuer": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "Signature": "GE7uuNo6VOqpAXMsjQ+8i81sVAwp3Bc4jHNb5C0JjSkmabM0Wi5j1anJW2NRW7g/E3Yw6apy26vJN+fcjmVy36B1kXlk3nHPWY7A/pj9DAF3jrXZGnnlqtEdmY7JI3qyjNjqVR8pGoZawQ5Jq4GzqaxrCJwdIFoN5bAsWS8U2r0pTaDEAgBm8Ig032PG5L22h3/FgNZe2iqzEolPlH1YDmOMvEJ+DqFPamFxofg0Uy64si9WiF9xETQncTMXTUb4DzDaH++YcElyeDutXjH3MkMRfPLsVK0bJis8eyF/DxjllS2xdpu8hMpO81wNO2KD4V49RzyFkhDbkm0gHW61PA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26896718084987105712424649359497857781939776872717468683978155637746257215499021470349970988339566575676760846885076831729531027507529066970870403310324380393417735893022072179494775167564421874325236796705165007524050504302380060458697401950754660880328298733571850499514448029271466007480105805347771100750817823875907895773106342710116763756368148402141779264674889033245108376215416210306416743606177394777918692206509394288953263325831505326093688372090049902223282179991822050258371230607553730263316519439064647844893197691900489801227745237518700641825406379579419156372088488971079841452780233494646796756743",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 21086622482032331400955200856357498854,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": null,
- "Organization": null,
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "*.logicahealth.org",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "*.logicahealth.org"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2022-02-16T00:00:00Z",
- "NotAfter": "2023-03-17T23:59:59Z",
- "KeyUsage": 5,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3Q"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBTNnWeVzTbuvsgtvy9p2Fxb8aDBXw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 17
- ],
- "Critical": false,
- "Value": "MBSCEioubG9naWNhaGVhbHRoLm9yZw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIFoA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 37
- ],
- "Critical": false,
- "Value": "MBQGCCsGAQUFBwMBBggrBgEFBQcDAg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAA="
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 4,
- 1,
- 11129,
- 2,
- 4,
- 2
- ],
- "Critical": false,
- "Value": "BIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": [
- 1,
- 2
- ],
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": false,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "zZ1nlc027r7ILb8vadhcW/GgwV8=",
- "AuthorityKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "OCSPServer": [
- "http://ocsp.sca1b.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.sca1b.amazontrust.com/sca1b.crt"
- ],
- "DNSNames": [
- "*.logicahealth.org"
- ],
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.sca1b.amazontrust.com/sca1b-1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIESTCCAzGgAwIBAgITBn+UV4WH6Kx33rJTMlu8mYtWDTANBgkqhkiG9w0BAQsFADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1MTAyMjAwMDAwMFoXDTI1MTAxOTAwMDAwMFowRjELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEVMBMGA1UECxMMU2VydmVyIENBIDFCMQ8wDQYDVQQDEwZBbWF6b24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCThZn3c68asg3Wuw6MLAd5tES6BIoSMzoKcG5blPVo+sDORrMd4f2AbnZcMzPa43j4wNxhplty6aUKk4T1qe9BOwKFjwK6zmxxLVYo7bHViXsPlJ6qOMpFge5blDP+18x+B26A0piiQOuPkfyDyeR4xQghfj66Yo19V+emU3nazfvpFA+ROz6WoVmB5x+F2pV8xeKNR7u6azDdU5YVX1TawprmxRC1+WsAYmz6qP+z8ArDITC2FMVy2fw0IjKOtEXc/VfmtTFch5+AfGYMGMqqvJ6LcXiAhqG5TI+Dr0RtM88k+8XUBCeQ8IGKuANaL7TiItKZYxK1MMuTJtV9IblAgMBAAGjggE7MIIBNzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUWaRmBlKge5WSPKOUByeWdFv5PdAwHwYDVR0jBBgwFoAUhBjMhTTsvAyUlC4IWZzHshBOCggwewYIKwYBBQUHAQEEbzBtMC8GCCsGAQUFBzABhiNodHRwOi8vb2NzcC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbTA6BggrBgEFBQcwAoYuaHR0cDovL2NydC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbS9yb290Y2ExLmNlcjA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMA0GCSqGSIb3DQEBCwUAA4IBAQCFkr41u3nPo4FCHOTjY3NTOVI159Gt/a6ZiqyJEi+752+a1U5y6iAwYfmXss2lJwJFqMp2PphKg5625kXg8kP2CN5t6G7bMQcT8C8xDZNtYTd7WPD8UZiRKAJPBXa30/AbwuZe0GaFEQ8ugcYQgSn+IGBI8/LwhBNTZTUVEWuCUUBVV18YtbAiPq3yXqMB48Oz+ctBWuZSkbvkNodPLamkB2g1upRyzQ7qDn1X8nn8N8V7YJ6y68AtkHcNSRAnpTitxBKjtKPISLMVCx7i4hncxHZSyLyKQXhw2W2Xs0qLeC1etA+jTGDK4UfLeC0SF7FSi8o5LL21L8IzApar2pR/",
- "RawTBSCertificate": "MIIDMaADAgECAhMGf5RXhYforHfeslMyW7yZi1YNMA0GCSqGSIb3DQEBCwUAMDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDEwHhcNMTUxMDIyMDAwMDAwWhcNMjUxMDE5MDAwMDAwWjBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJOFmfdzrxqyDda7DowsB3m0RLoEihIzOgpwbluU9Wj6wM5Gsx3h/YBudlwzM9rjePjA3GGmW3LppQqThPWp70E7AoWPArrObHEtVijtsdWJew+Unqo4ykWB7luUM/7XzH4HboDSmKJA64+R/IPJ5HjFCCF+PrpijX1X56ZTedrN++kUD5E7PpahWYHnH4XalXzF4o1Hu7prMN1TlhVfVNrCmubFELX5awBibPqo/7PwCsMhMLYUxXLZ/DQiMo60Rdz9V+a1MVyHn4B8ZgwYyqq8notxeICGoblMj4OvRG0zzyT7xdQEJ5DwgYq4A1ovtOIi0pljErUwy5Mm1X0huUCAwEAAaOCATswggE3MBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBRZpGYGUqB7lZI8o5QHJ5Z0W/k90DAfBgNVHSMEGDAWgBSEGMyFNOy8DJSULghZnMeyEE4KCDB7BggrBgEFBQcBAQRvMG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2VyMD8GA1UdHwQ4MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmwwEwYDVR0gBAwwCjAIBgZngQwBAgE=",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwk4WZ93OvGrIN1rsOjCwHebREugSKEjM6CnBuW5T1aPrAzkazHeH9gG52XDMz2uN4+MDcYaZbcumlCpOE9anvQTsChY8Cus5scS1WKO2x1Yl7D5SeqjjKRYHuW5Qz/tfMfgdugNKYokDrj5H8g8nkeMUIIX4+umKNfVfnplN52s376RQPkTs+lqFZgecfhdqVfMXijUe7umsw3VOWFV9U2sKa5sUQtflrAGJs+qj/s/AKwyEwthTFctn8NCIyjrRF3P1X5rUxXIefgHxmDBjKqryei3F4gIahuUyPg69EbTPPJPvF1AQnkPCBirgDWi+04iLSmWMStTDLkybVfSG5QIDAQAB",
- "RawSubject": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "RawIssuer": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "Signature": "hZK+Nbt5z6OBQhzk42NzUzlSNefRrf2umYqsiRIvu+dvmtVOcuogMGH5l7LNpScCRajKdj6YSoOetuZF4PJD9gjebehu2zEHE/AvMQ2TbWE3e1jw/FGYkSgCTwV2t9PwG8LmXtBmhREPLoHGEIEp/iBgSPPy8IQTU2U1FRFrglFAVVdfGLWwIj6t8l6jAePDs/nLQVrmUpG75DaHTy2ppAdoNbqUcs0O6g59V/J5/DfFe2CesuvALZB3DUkQJ6U4rcQSo7SjyEizFQse4uIZ3MR2Usi8ikF4cNltl7NKi3gtXrQPo0xgyuFHy3gtEhexUovKOSy9tS/CMwKWq9qUfw==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "24528737555851895213919827617064808536856788789868126310716752303420041319710819680867697306230985630039655096548324364189962675576756038921107965025585889330528490649228935527969954506874750514159926943451238689552458142167021149788529783891257271028002485075630471793111207960868638365698705018555597520367289025831586046483446904825820575805338475813865444295353094097022678376192149453480223428943386514159000527368947588174705227657134217583008630047462959260157651883088072156905420231950318110240318878613016990846576820326568049365612395397183597930457965295993595011597251067348997341253617591444999389873893",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918209630989264145272943054026349679957517,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-10-22T00:00:00Z",
- "NotAfter": "2025-10-19T00:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAYBAf8CAQA="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBRZpGYGUqB7lZI8o5QHJ5Z0W/k90A=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFIQYzIU07LwMlJQuCFmcx7IQTgoI"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmw="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": 0,
- "MaxPathLenZero": true,
- "SubjectKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "AuthorityKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "OCSPServer": [
- "http://ocsp.rootca1.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootca1.amazontrust.com/rootca1.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootca1.amazontrust.com/rootca1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIEkjCCA3qgAwIBAgITBn+USionzfP6wq4rAfkI7rnExjANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE1MDUyNTEyMDAwMFoXDTM3MTIzMTAxMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaOCATEwggEtMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSEGMyFNOy8DJSULghZnMeyEE4KCDAfBgNVHSMEGDAWgBScXwDfqgHXMCs4iKK4bUqc8hGRgzB4BggrBgEFBQcBAQRsMGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2VyMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3JsMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAYjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "RawTBSCertificate": "MIIDeqADAgECAhMGf5RKKifN8/rCrisB+QjuucTGMA0GCSqGSIb3DQEBCwUAMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwHhcNMTUwNTI1MTIwMDAwWhcNMzcxMjMxMDEwMDAwWjA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQABo4IBMTCCAS0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMB8GA1UdIwQYMBaAFJxfAN+qAdcwKziIorhtSpzyEZGDMHgGCCsGAQUFBwEBBGwwajAuBggrBgEFBQcwAYYiaHR0cDovL29jc3Aucm9vdGcyLmFtYXpvbnRydXN0LmNvbTA4BggrBgEFBQcwAoYsaHR0cDovL2NydC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jZXIwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2NybC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jcmwwEQYDVR0gBAowCDAGBgRVHSAA",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQAB",
- "RawSubject": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "RawIssuer": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "Signature": "YjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "22529839904807742196558773392430766620630713202204326167346456925862066285712069978308045976033918808540171076811098215136401323342247576789054764683787147408289170989302937775178809187827657352584557953877946352196797789035355954596527030584944622221752357105572088106020206921431118198373122638305846252087992561841631797199384157902018140720267433956687491591657652730221337591680012205319549572614035105482287002884850178224609018864719685310905426619874727796905080238179726224664042154200651710137931048812546957419686875805576245376866031854569863410951649630469236463991472642618512857920826701027482532358669",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918191876577076464031512351042010504348870,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-05-25T12:00:00Z",
- "NotAfter": "2037-12-31T01:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBSEGMyFNOy8DJSULghZnMeyEE4KCA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFJxfAN+qAdcwKziIorhtSpzyEZGD"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "AuthorityKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "OCSPServer": [
- "http://ocsp.rootg2.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootg2.amazontrust.com/rootg2.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootg2.amazontrust.com/rootg2.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- },
- {
- "Raw": "MIIEdTCCA12gAwIBAgIJAKcOSkw0grd/MA0GCSqGSIb3DQEBCwUAMGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wOTA5MDIwMDAwMDBaFw0zNDA2MjgxNzM5MTZaMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDDrEKvlO4vW+GZdfjohTsR8/y8+fIBNtKTrID30892t2OGPZNmCom15cAICyL1l/9of5JUOG52kbUpqQ4XHj2C0NTm/2yEnZtvMaVq4rtnQU68/7JuMauh2WLmo7WJSJR1b/JaCTcFOD2oR0FMNnngRoOt+OQFodSk7PQ5E751bWAHDLUu57fa4657wx+UX2wmDPE1kCK4DMNEffud6QZW0CzyyRpqbn3oUYSXxmTqM6bam17jQuug0DuDPfR+uxa40l2ZvOgdFFRjKWcIfeAg5JQ4W2bHO7ZOphQazJ1FTfhy/HIrImzJ9ZVGif/L4qL8RVHHVAYBeFAlU5i38FAgMBAAGjgfAwge0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMB8GA1UdIwQYMBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjnME8GCCsGAQUFBwEBBEMwQTAcBggrBgEFBQcwAYYQaHR0cDovL28uc3MyLnVzLzAhBggrBgEFBQcwAoYVaHR0cDovL3guc3MyLnVzL3guY2VyMCYGA1UdHwQfMB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQELBQADggEBACMd44pXyn3pF3lM8R5V/cxTbj5HD9/GVfKyBDbtgB9TxF00KGu+x1X8Z+rLP3+QsjPNG1gQggL4+C/1E2DUBc7xgQjB3ad1l08YuW3e95ORCLp+QCztweq7dp4zBncdDQh/U90bZKuCJ/Fp1U1ervShw3WnWEQt8jxwmKy6abaVd38PMV4s/KCHOkdp8Hlf9BRUpJVeEXgSYCfOn8J3/yNTd126/+pZ59vPr5KW7ySaNRB6nJHGDn2Z9j8Z3/VyVOEVqQdZe4O/Ui5GjLIAZHYcSNPYeehuVsyuLAOQ1xk4meTKCRlb/weWsKh/NEnfVqn3sF/tM+2MR7cwA130A4w=",
- "RawTBSCertificate": "MIIDXaADAgECAgkApw5KTDSCt38wDQYJKoZIhvcNAQELBQAwaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA5MDkwMjAwMDAwMFoXDTM0MDYyODE3MzkxNlowgZgxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaOB8DCB7TAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUnF8A36oB1zArOIiiuG1KnPIRkYMwHwYDVR0jBBgwFoAUv1+30c7dH4b0W1Ws3NcQwg6piOcwTwYIKwYBBQUHAQEEQzBBMBwGCCsGAQUFBzABhhBodHRwOi8vby5zczIudXMvMCEGCCsGAQUFBzAChhVodHRwOi8veC5zczIudXMveC5jZXIwJgYDVR0fBB8wHTAboBmgF4YVaHR0cDovL3Muc3MyLnVzL3IuY3JsMBEGA1UdIAQKMAgwBgYEVR0gAA==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Qw6xCr5TuL1vhmXX46IU7EfP8vPnyATbSk6yA99PPdrdjhj2TZgqJteXACAsi9Zf/aH+SVDhudpG1KakOFx49gtDU5v9shJ2bbzGlauK7Z0FOvP+ybjGrodli5qO1iUiUdW/yWgk3BTg9qEdBTDZ54EaDrfjkBaHUpOz0ORO+dW1gBwy1Lue32uOue8MflF9sJgzxNZAiuAzDRH37nekGVtAs8skaam596FGEl8Zk6jOm2pte40LroNA7gz30frsWuNJdmbzoHRRUYylnCH3gIOSUOFtmxzu2TqYUGsydRU34cvxyKyJsyfWVRon/y+Ki/EVRx1QGAXhQJVOYt/BQIDAQAB",
- "RawSubject": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "RawIssuer": "MGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==",
- "Signature": "Ix3jilfKfekXeUzxHlX9zFNuPkcP38ZV8rIENu2AH1PEXTQoa77HVfxn6ss/f5CyM80bWBCCAvj4L/UTYNQFzvGBCMHdp3WXTxi5bd73k5EIun5ALO3B6rt2njMGdx0NCH9T3Rtkq4In8WnVTV6u9KHDdadYRC3yPHCYrLpptpV3fw8xXiz8oIc6R2nweV/0FFSklV4ReBJgJ86fwnf/I1N3Xbr/6lnn28+vkpbvJJo1EHqckcYOfZn2Pxnf9XJU4RWpB1l7g79SLkaMsgBkdhxI09h56G5WzK4sA5DXGTiZ5MoJGVv/B5awqH80Sd9WqfewX+0z7YxHtzADXfQDjA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26894789576491863019171445242018370132029525033879210664513024255165308689836081694724912552986436241602345929261854187816625921774943728567119070351838976265193901442169339571326613928339955106648223197498035701437846440970934704192382084561469274550003268570741310868032789070264835003681318445644941362885752628282968349509706358865971392279088395067847314610178969555804359319567178098112935181143559364150874524817692694181296058297355335204675211145990489303168553611700020424738364579606192390834705213026692659672388567853246354560726855054573503174641583891075106464210711468427779853334564691648681991700229",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 12037640545166866303,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": [
- "Starfield Class 2 Certification Authority"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Starfield Class 2 Certification Authority"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2009-09-02T00:00:00Z",
- "NotAfter": "2034-06-28T17:39:16Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBScXwDfqgHXMCs4iKK4bUqc8hGRgw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjn"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MEEwHAYIKwYBBQUHMAGGEGh0dHA6Ly9vLnNzMi51cy8wIQYIKwYBBQUHMAKGFWh0dHA6Ly94LnNzMi51cy94LmNlcg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "AuthorityKeyId": "v1+30c7dH4b0W1Ws3NcQwg6piOc=",
- "OCSPServer": [
- "http://o.ss2.us/"
- ],
- "IssuingCertificateURL": [
- "http://x.ss2.us/x.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://s.ss2.us/r.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- }
- ],
- "VerifiedChains": null,
- "SignedCertificateTimestamps": null,
- "OCSPResponse": null,
- "TLSUnique": "KGYau2ehxG6kGY5o"
- }
- },
- "ErrType": "",
- "ErrMsg": ""
- },
- {
- "Request": {
- "Method": "GET",
- "URL": {
- "Scheme": "https",
- "Opaque": "",
- "User": null,
- "Host": "api.logicahealth.org",
- "Path": "/fastenhealth/data",
- "RawPath": "",
- "ForceQuery": false,
- "RawQuery": "_getpages=2b87e9ea-0af9-429f-abf2-0a72b2e33ad1\u0026_getpagesoffset=100\u0026_count=50\u0026_pretty=true\u0026_bundletype=searchset",
- "Fragment": "",
- "RawFragment": ""
- },
- "Header": {},
- "Body": ""
- },
- "Response": {
- "Status": "200 OK",
- "StatusCode": 200,
- "Proto": "HTTP/2.0",
- "ProtoMajor": 2,
- "ProtoMinor": 0,
- "Header": {
- "Access-Control-Allow-Headers": [
- "X-FHIR-Starter,authorization,Prefer,Origin,Accept,X-Requested-With,Content-Type,Access-Control-Request-Method,Access-Control-Request-Headers"
- ],
- "Access-Control-Allow-Methods": [
- "POST, PUT, GET, OPTIONS, DELETE"
- ],
- "Access-Control-Allow-Origin": [
- "*"
- ],
- "Access-Control-Expose-Headers": [
- "Location, Content-Location"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
- ],
- "Content-Length": [
- "72774"
- ],
- "Content-Location": [
- "https://api.logicahealth.org/fastenhealth/data/Bundle/2b87e9ea-0af9-429f-abf2-0a72b2e33ad1"
- ],
- "Content-Type": [
- "application/fhir+json;charset=UTF-8"
- ],
- "Date": [
- "Tue, 27 Sep 2022 03:13:29 GMT"
- ],
- "Expires": [
- "0"
- ],
- "Last-Modified": [
- "Tue, 27 Sep 2022 03:12:40 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-Frame-Options": [
- "DENY"
- ],
- "X-Powered-By": [
- "HAPI FHIR 5.2.0 REST Server (FHIR Server; FHIR 4.0.1/R4)"
- ],
- "X-Request-Id": [
- "VtMHOm58vjiS6Q58"
- ],
- "X-Xss-Protection": [
- "1; mode=block"
- ]
- },
- "Body": "ewogICJyZXNvdXJjZVR5cGUiOiAiQnVuZGxlIiwKICAiaWQiOiAiMmI4N2U5ZWEtMGFmOS00MjlmLWFiZjItMGE3MmIyZTMzYWQxIiwKICAibWV0YSI6IHsKICAgICJsYXN0VXBkYXRlZCI6ICIyMDIyLTA5LTI3VDAzOjEyOjQwLjAwMCswMDowMCIKICB9LAogICJ0eXBlIjogInNlYXJjaHNldCIsCiAgImxpbmsiOiBbIHsKICAgICJyZWxhdGlvbiI6ICJzZWxmIiwKICAgICJ1cmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YT9fZ2V0cGFnZXM9MmI4N2U5ZWEtMGFmOS00MjlmLWFiZjItMGE3MmIyZTMzYWQxJl9nZXRwYWdlc29mZnNldD0xMDAmX2NvdW50PTUwJl9wcmV0dHk9dHJ1ZSZfYnVuZGxldHlwZT1zZWFyY2hzZXQiCiAgfSwgewogICAgInJlbGF0aW9uIjogIm5leHQiLAogICAgInVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhP19nZXRwYWdlcz0yYjg3ZTllYS0wYWY5LTQyOWYtYWJmMi0wYTcyYjJlMzNhZDEmX2dldHBhZ2Vzb2Zmc2V0PTE1MCZfY291bnQ9NTAmX3ByZXR0eT10cnVlJl9idW5kbGV0eXBlPXNlYXJjaHNldCIKICB9LCB7CiAgICAicmVsYXRpb24iOiAicHJldmlvdXMiLAogICAgInVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhP19nZXRwYWdlcz0yYjg3ZTllYS0wYWY5LTQyOWYtYWJmMi0wYTcyYjJlMzNhZDEmX2dldHBhZ2Vzb2Zmc2V0PTUwJl9jb3VudD01MCZfcHJldHR5PXRydWUmX2J1bmRsZXR5cGU9c2VhcmNoc2V0IgogIH0gXSwKICAiZW50cnkiOiBbIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvRW5jb3VudGVyL3NtYXJ0LTg0MiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiRW5jb3VudGVyIiwKICAgICAgImlkIjogInNtYXJ0LTg0MiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDUtMDItMjM6IGFtYnVsYXRvcnkgZW5jb3VudGVyPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmlzaGVkIiwKICAgICAgImNsYXNzIjogewogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS92My1BY3RDb2RlIiwKICAgICAgICAiY29kZSI6ICJBTUIiCiAgICAgIH0sCiAgICAgICJ0eXBlIjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vc25vbWVkLmluZm8iLAogICAgICAgICAgImNvZGUiOiAiMjcwNDI3MDAzIiwKICAgICAgICAgICJkaXNwbGF5IjogIlBhdGllbnQtaW5pdGlhdGVkIGVuY291bnRlciIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiUGF0aWVudC1pbml0aWF0ZWQgYW1idWxhdG9yeSBlbmNvdW50ZXIiCiAgICAgIH0gXSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJwZXJpb2QiOiB7CiAgICAgICAgInN0YXJ0IjogIjIwMDUtMDItMjMiLAogICAgICAgICJlbmQiOiAiMjAwNS0wMi0yMyIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvRW5jb3VudGVyL3NtYXJ0LTg0MSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiRW5jb3VudGVyIiwKICAgICAgImlkIjogInNtYXJ0LTg0MSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDUtMDItMTA6IGFtYnVsYXRvcnkgZW5jb3VudGVyPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmlzaGVkIiwKICAgICAgImNsYXNzIjogewogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS92My1BY3RDb2RlIiwKICAgICAgICAiY29kZSI6ICJBTUIiCiAgICAgIH0sCiAgICAgICJ0eXBlIjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vc25vbWVkLmluZm8iLAogICAgICAgICAgImNvZGUiOiAiMjcwNDI3MDAzIiwKICAgICAgICAgICJkaXNwbGF5IjogIlBhdGllbnQtaW5pdGlhdGVkIGVuY291bnRlciIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiUGF0aWVudC1pbml0aWF0ZWQgYW1idWxhdG9yeSBlbmNvdW50ZXIiCiAgICAgIH0gXSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJwZXJpb2QiOiB7CiAgICAgICAgInN0YXJ0IjogIjIwMDUtMDItMTAiLAogICAgICAgICJlbmQiOiAiMjAwNS0wMi0xMCIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjM0LXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjM0LXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDUtMDItMDk6IHJlc3BpcmF0b3J5X3JhdGUgPSAyMi4wIHticmVhdGhzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTIzNC1yZXNwaXJhdG9yeXJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiOTI3OS0xIiwKICAgICAgICAgICJkaXNwbGF5IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0wOSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDIyLjAsCiAgICAgICAgInVuaXQiOiAie2JyZWF0aHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YnJlYXRoc30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9FbmNvdW50ZXIvc21hcnQtODQwIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJFbmNvdW50ZXIiLAogICAgICAiaWQiOiAic21hcnQtODQwIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0wOTogYW1idWxhdG9yeSBlbmNvdW50ZXI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluaXNoZWQiLAogICAgICAiY2xhc3MiOiB7CiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL3YzLUFjdENvZGUiLAogICAgICAgICJjb2RlIjogIkFNQiIKICAgICAgfSwKICAgICAgInR5cGUiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9zbm9tZWQuaW5mbyIsCiAgICAgICAgICAiY29kZSI6ICIyNzA0MjcwMDMiLAogICAgICAgICAgImRpc3BsYXkiOiAiUGF0aWVudC1pbml0aWF0ZWQgZW5jb3VudGVyIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJQYXRpZW50LWluaXRpYXRlZCBhbWJ1bGF0b3J5IGVuY291bnRlciIKICAgICAgfSBdLAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgInBlcmlvZCI6IHsKICAgICAgICAic3RhcnQiOiAiMjAwNS0wMi0wOSIsCiAgICAgICAgImVuZCI6ICIyMDA1LTAyLTA5IgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9FbmNvdW50ZXIvc21hcnQtODQ2IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJFbmNvdW50ZXIiLAogICAgICAiaWQiOiAic21hcnQtODQ2IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0wNC0wODogYW1idWxhdG9yeSBlbmNvdW50ZXI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluaXNoZWQiLAogICAgICAiY2xhc3MiOiB7CiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL3YzLUFjdENvZGUiLAogICAgICAgICJjb2RlIjogIkFNQiIKICAgICAgfSwKICAgICAgInR5cGUiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9zbm9tZWQuaW5mbyIsCiAgICAgICAgICAiY29kZSI6ICIyNzA0MjcwMDMiLAogICAgICAgICAgImRpc3BsYXkiOiAiUGF0aWVudC1pbml0aWF0ZWQgZW5jb3VudGVyIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJQYXRpZW50LWluaXRpYXRlZCBhbWJ1bGF0b3J5IGVuY291bnRlciIKICAgICAgfSBdLAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgInBlcmlvZCI6IHsKICAgICAgICAic3RhcnQiOiAiMjAwOS0wNC0wOCIsCiAgICAgICAgImVuZCI6ICIyMDA5LTA0LTA4IgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNTQtaGVhcnRyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNTQtaGVhcnRyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0yNDogaGVhcnRfcmF0ZSA9IDc4LjAge2JlYXRzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI1NC1oZWFydHJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODg2Ny00IiwKICAgICAgICAgICJkaXNwbGF5IjogImhlYXJ0X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlYXJ0X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0yNCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDc4LjAsCiAgICAgICAgInVuaXQiOiAie2JlYXRzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JlYXRzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04NDUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04NDUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTA3OiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIyMDA5LTA0LTA3IiwKICAgICAgICAiZW5kIjogIjIwMDktMDQtMDciCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04NDQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04NDQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTI1OiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIyMDA1LTAyLTI1IiwKICAgICAgICAiZW5kIjogIjIwMDUtMDItMjUiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04NDMiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04NDMiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTI0OiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIyMDA1LTAyLTI0IiwKICAgICAgICAiZW5kIjogIjIwMDUtMDItMjQiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE1Ny1yZXNwaXJhdG9yeXJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE1Ny1yZXNwaXJhdG9yeXJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk3LTA1LTAxOiByZXNwaXJhdG9yeV9yYXRlID0gMjAuMCB7YnJlYXRoc30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xNTctcmVzcGlyYXRvcnlyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjkyNzktMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTctMDUtMDEiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyMC4wLAogICAgICAgICJ1bml0IjogInticmVhdGhzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JyZWF0aHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTYyLWhlaWdodCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTYyLWhlaWdodCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTctMDUtMDc6IGhlaWdodCA9IDE2NS4xIGNtPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xNjItaGVpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMDItMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIxOTk3LTA1LTA3IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTY1LjEsCiAgICAgICAgInVuaXQiOiAiY20iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiY20iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04NDkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04NDkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTI0OiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIyMDA5LTA0LTI0IiwKICAgICAgICAiZW5kIjogIjIwMDktMDQtMjQiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04NDgiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04NDgiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTIzOiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIyMDA5LTA0LTIzIiwKICAgICAgICAiZW5kIjogIjIwMDktMDQtMjMiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04NDciLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04NDciLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTE0OiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIyMDA5LTA0LTE0IiwKICAgICAgICAiZW5kIjogIjIwMDktMDQtMTQiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIxMy1yZXNwaXJhdG9yeXJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIxMy1yZXNwaXJhdG9yeXJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTExLTAxOiByZXNwaXJhdG9yeV9yYXRlID0gMjAuMCB7YnJlYXRoc30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMTMtcmVzcGlyYXRvcnlyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjkyNzktMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMTEtMDEiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyMC4wLAogICAgICAgICJ1bml0IjogInticmVhdGhzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JyZWF0aHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjEwLW94eWdlbnNhdHVyYXRpb24iLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIxMC1veHlnZW5zYXR1cmF0aW9uIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMC0zMTogb3h5Z2VuX3NhdHVyYXRpb24gPSAxMDAuMCAle0hlbW9nbG9iaW5TYXR1cmF0aW9ufTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjEwLW94eWdlbnNhdHVyYXRpb24iCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMjcxMC0yIiwKICAgICAgICAgICJkaXNwbGF5IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTEwLTMxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTAwLjAsCiAgICAgICAgInVuaXQiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI0NC1ibWkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI0NC1ibWkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTEwOiBibWkgPSAzMy42IGtnL20yPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNDQtYm1pIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjM5MTU2LTUiLAogICAgICAgICAgImRpc3BsYXkiOiAiYm1pIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJibWkiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0xMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDMzLjYsCiAgICAgICAgInVuaXQiOiAia2cvbTIiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2cvbTIiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI0MC1oZWFydHJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI0MC1oZWFydHJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTEwOiBoZWFydF9yYXRlID0gNTguMCB7YmVhdHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjQwLWhlYXJ0cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4ODY3LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVhcnRfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiaGVhcnRfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA1LTAyLTEwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogNTguMCwKICAgICAgICAidW5pdCI6ICJ7YmVhdHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YmVhdHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTg3LXdlaWdodCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTg3LXdlaWdodCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMDEtMTk6IHdlaWdodCA9IDk1LjAyNzYga2c8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE4Ny13ZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzE0MS05IiwKICAgICAgICAgICJkaXNwbGF5IjogIndlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAid2VpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMDEtMTkiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA5NS4wMjc2LAogICAgICAgICJ1bml0IjogImtnIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNTUtaGVpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNTUtaGVpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5Ny0wNS0wMTogaGVpZ2h0ID0gMTY0Ljg0NiBjbTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTU1LWhlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzAyLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5Ny0wNS0wMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDE2NC44NDYsCiAgICAgICAgInVuaXQiOiAiY20iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiY20iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE2Ny1ibWkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE2Ny1ibWkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk3LTA1LTA3OiBibWkgPSAzNi40IGtnL20yPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xNjctYm1pIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjM5MTU2LTUiLAogICAgICAgICAgImRpc3BsYXkiOiAiYm1pIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJibWkiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5Ny0wNS0wNyIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDM2LjQsCiAgICAgICAgInVuaXQiOiAia2cvbTIiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2cvbTIiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI4OC1oZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI4OC1oZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTIzOiBoZWlnaHQgPSAxNjMuMDY4IGNtPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yODgtaGVpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMDItMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTIzIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTYzLjA2OCwKICAgICAgICAidW5pdCI6ICJjbSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJjbSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjU1LXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjU1LXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDUtMDItMjQ6IHJlc3BpcmF0b3J5X3JhdGUgPSAyMi4wIHticmVhdGhzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI1NS1yZXNwaXJhdG9yeXJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiOTI3OS0xIiwKICAgICAgICAgICJkaXNwbGF5IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0yNCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDIyLjAsCiAgICAgICAgInVuaXQiOiAie2JyZWF0aHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YnJlYXRoc30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNzctaGVhcnRyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNzctaGVhcnRyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5OS0xMi0yMTogaGVhcnRfcmF0ZSA9IDgxLjAge2JlYXRzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE3Ny1oZWFydHJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODg2Ny00IiwKICAgICAgICAgICJkaXNwbGF5IjogImhlYXJ0X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlYXJ0X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5OS0xMi0yMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDgxLjAsCiAgICAgICAgInVuaXQiOiAie2JlYXRzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JlYXRzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI3Mi1ibWkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI3Mi1ibWkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTA3OiBibWkgPSAzMy45IGtnL20yPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNzItYm1pIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjM5MTU2LTUiLAogICAgICAgICAgImRpc3BsYXkiOiAiYm1pIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJibWkiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0wNyIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDMzLjksCiAgICAgICAgInVuaXQiOiAia2cvbTIiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2cvbTIiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI4My1yZXNwaXJhdG9yeXJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI4My1yZXNwaXJhdG9yeXJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTE0OiByZXNwaXJhdG9yeV9yYXRlID0gMjAuMCB7YnJlYXRoc30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yODMtcmVzcGlyYXRvcnlyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjkyNzktMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMTQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyMC4wLAogICAgICAgICJ1bml0IjogInticmVhdGhzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JyZWF0aHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjc5LWJtaSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjc5LWJtaSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMDg6IGJtaSA9IDMzLjUga2cvbTI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI3OS1ibWkiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzkxNTYtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJibWkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImJtaSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTA4IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzMuNSwKICAgICAgICAidW5pdCI6ICJrZy9tMiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZy9tMiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjA4LXdlaWdodCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjA4LXdlaWdodCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTAtMzE6IHdlaWdodCA9IDkzLjMwMzk1IGtnPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMDgtd2VpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjMxNDEtOSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJ3ZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIndlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTEwLTMxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogOTMuMzAzOTUsCiAgICAgICAgInVuaXQiOiAia2ciLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2ciCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIwMy1veHlnZW5zYXR1cmF0aW9uIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yMDMtb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMDEtMjU6IG94eWdlbl9zYXR1cmF0aW9uID0gMTAwLjAgJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn08L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTIwMy1veHlnZW5zYXR1cmF0aW9uIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjI3MTAtMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0wMS0yNSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDEwMC4wLAogICAgICAgICJ1bml0IjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNzEtd2VpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNzEtd2VpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0wNC0wNzogd2VpZ2h0ID0gOTAuMjY0ODgga2c8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI3MS13ZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzE0MS05IiwKICAgICAgICAgICJkaXNwbGF5IjogIndlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAid2VpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMDciLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA5MC4yNjQ4OCwKICAgICAgICAidW5pdCI6ICJrZyIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZyIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjI0LW94eWdlbnNhdHVyYXRpb24iLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIyNC1veHlnZW5zYXR1cmF0aW9uIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMS0wMjogb3h5Z2VuX3NhdHVyYXRpb24gPSAxMDAuMCAle0hlbW9nbG9iaW5TYXR1cmF0aW9ufTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjI0LW94eWdlbnNhdHVyYXRpb24iCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMjcxMC0yIiwKICAgICAgICAgICJkaXNwbGF5IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTExLTAyIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTAwLjAsCiAgICAgICAgInVuaXQiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04MjgiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04MjgiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk3LTA0LTMwOiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIxOTk3LTA0LTMwIiwKICAgICAgICAiZW5kIjogIjE5OTctMDQtMzAiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE4NC1oZWFydHJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE4NC1oZWFydHJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTAxLTE5OiBoZWFydF9yYXRlID0gNjkuMCB7YmVhdHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTg0LWhlYXJ0cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4ODY3LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVhcnRfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiaGVhcnRfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTAxLTE5IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogNjkuMCwKICAgICAgICAidW5pdCI6ICJ7YmVhdHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YmVhdHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTYwLWJtaSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTYwLWJtaSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTctMDUtMDE6IGJtaSA9IDM2LjYga2cvbTI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE2MC1ibWkiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzkxNTYtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJibWkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImJtaSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIxOTk3LTA1LTAxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzYuNiwKICAgICAgICAidW5pdCI6ICJrZy9tMiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZy9tMiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjMzLWhlYXJ0cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjMzLWhlYXJ0cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDUtMDItMDk6IGhlYXJ0X3JhdGUgPSA2Ni4wIHtiZWF0c30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMzMtaGVhcnRyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjg4NjctNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWFydF9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWFydF9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMDkiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA2Ni4wLAogICAgICAgICJ1bml0IjogIntiZWF0c30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIntiZWF0c30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xOTAtaGVpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xOTAtaGVpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0wMS0yNDogaGVpZ2h0ID0gMTY1LjYwOCBjbTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTkwLWhlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzAyLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0wMS0yNCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDE2NS42MDgsCiAgICAgICAgInVuaXQiOiAiY20iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiY20iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL0VuY291bnRlci9zbWFydC04MjkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIkVuY291bnRlciIsCiAgICAgICJpZCI6ICJzbWFydC04MjkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk3LTA1LTAxOiBhbWJ1bGF0b3J5IGVuY291bnRlcjwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5pc2hlZCIsCiAgICAgICJjbGFzcyI6IHsKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtQWN0Q29kZSIsCiAgICAgICAgImNvZGUiOiAiQU1CIgogICAgICB9LAogICAgICAidHlwZSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvIiwKICAgICAgICAgICJjb2RlIjogIjI3MDQyNzAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQYXRpZW50LWluaXRpYXRlZCBlbmNvdW50ZXIiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlBhdGllbnQtaW5pdGlhdGVkIGFtYnVsYXRvcnkgZW5jb3VudGVyIgogICAgICB9IF0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAicGVyaW9kIjogewogICAgICAgICJzdGFydCI6ICIxOTk3LTA1LTAxIiwKICAgICAgICAiZW5kIjogIjE5OTctMDUtMDEiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE2NC1yZXNwaXJhdG9yeXJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE2NC1yZXNwaXJhdG9yeXJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk3LTA1LTA3OiByZXNwaXJhdG9yeV9yYXRlID0gMjAuMCB7YnJlYXRoc30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xNjQtcmVzcGlyYXRvcnlyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjkyNzktMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTctMDUtMDciLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyMC4wLAogICAgICAgICJ1bml0IjogInticmVhdGhzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JyZWF0aHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjExLWhlaWdodCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjExLWhlaWdodCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTEtMDE6IGhlaWdodCA9IDE2NS44NjIgY208L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTIxMS1oZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODMwMi0yIiwKICAgICAgICAgICJkaXNwbGF5IjogImhlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiaGVpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMTEtMDEiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxNjUuODYyLAogICAgICAgICJ1bml0IjogImNtIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImNtIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMDQtaGVpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yMDQtaGVpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMC0zMTogaGVpZ2h0ID0gMTY1Ljg2MiBjbTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjA0LWhlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzAyLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0xMC0zMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDE2NS44NjIsCiAgICAgICAgInVuaXQiOiAiY20iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiY20iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE3MS1yZXNwaXJhdG9yeXJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE3MS1yZXNwaXJhdG9yeXJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk5LTEyLTIwOiByZXNwaXJhdG9yeV9yYXRlID0gMTkuMCB7YnJlYXRoc30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xNzEtcmVzcGlyYXRvcnlyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjkyNzktMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTktMTItMjAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxOS4wLAogICAgICAgICJ1bml0IjogInticmVhdGhzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JyZWF0aHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjY4LWhlYXJ0cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjY4LWhlYXJ0cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMDc6IGhlYXJ0X3JhdGUgPSAyOS4wIHtiZWF0c30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNjgtaGVhcnRyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjg4NjctNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWFydF9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWFydF9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMDciLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyOS4wLAogICAgICAgICJ1bml0IjogIntiZWF0c30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIntiZWF0c30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMDYtcmVzcGlyYXRvcnlyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yMDYtcmVzcGlyYXRvcnlyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMC0zMTogcmVzcGlyYXRvcnlfcmF0ZSA9IDIwLjAge2JyZWF0aHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjA2LXJlc3BpcmF0b3J5cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI5Mjc5LTEiLAogICAgICAgICAgImRpc3BsYXkiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTEwLTMxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMjAuMCwKICAgICAgICAidW5pdCI6ICJ7YnJlYXRoc30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogInticmVhdGhzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE5MS1oZWFydHJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE5MS1oZWFydHJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTAxLTI0OiBoZWFydF9yYXRlID0gNjMuMCB7YmVhdHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTkxLWhlYXJ0cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4ODY3LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVhcnRfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiaGVhcnRfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTAxLTI0IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogNjMuMCwKICAgICAgICAidW5pdCI6ICJ7YmVhdHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YmVhdHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjM4LW94eWdlbnNhdHVyYXRpb24iLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIzOC1veHlnZW5zYXR1cmF0aW9uIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0wOTogb3h5Z2VuX3NhdHVyYXRpb24gPSAxMDAuMCAle0hlbW9nbG9iaW5TYXR1cmF0aW9ufTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjM4LW94eWdlbnNhdHVyYXRpb24iCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMjcxMC0yIiwKICAgICAgICAgICJkaXNwbGF5IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA1LTAyLTA5IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTAwLjAsCiAgICAgICAgInVuaXQiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn0iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE2OC1veHlnZW5zYXR1cmF0aW9uIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNjgtb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTctMDUtMDc6IG94eWdlbl9zYXR1cmF0aW9uID0gMTAwLjAgJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn08L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE2OC1veHlnZW5zYXR1cmF0aW9uIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjI3MTAtMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5Ny0wNS0wNyIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDEwMC4wLAogICAgICAgICJ1bml0IjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMjctcmVzcGlyYXRvcnlyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yMjctcmVzcGlyYXRvcnlyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMS0wNTogcmVzcGlyYXRvcnlfcmF0ZSA9IDIwLjAge2JyZWF0aHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjI3LXJlc3BpcmF0b3J5cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI5Mjc5LTEiLAogICAgICAgICAgImRpc3BsYXkiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTExLTA1IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMjAuMCwKICAgICAgICAidW5pdCI6ICJ7YnJlYXRoc30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogInticmVhdGhzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIzNi13ZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIzNi13ZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTA5OiB3ZWlnaHQgPSA5MC40NDYzMiBrZzwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjM2LXdlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzMTQxLTkiLAogICAgICAgICAgImRpc3BsYXkiOiAid2VpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ3ZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0wOSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDkwLjQ0NjMyLAogICAgICAgICJ1bml0IjogImtnIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMjktd2VpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yMjktd2VpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMS0wNTogd2VpZ2h0ID0gOTQuMDc1MDYga2c8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTIyOS13ZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzE0MS05IiwKICAgICAgICAgICJkaXNwbGF5IjogIndlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAid2VpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMTEtMDUiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA5NC4wNzUwNiwKICAgICAgICAidW5pdCI6ICJrZyIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZyIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjAyLWJtaSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjAyLWJtaSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMDEtMjU6IGJtaSA9IDM0LjMga2cvbTI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTIwMi1ibWkiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzkxNTYtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJibWkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImJtaSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTAxLTI1IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzQuMywKICAgICAgICAidW5pdCI6ICJrZy9tMiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZy9tMiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0gXQp9",
- "ContentLength": 72774,
- "TransferEncoding": null,
- "Trailer": null,
- "TLS": {
- "Version": 771,
- "HandshakeComplete": true,
- "DidResume": false,
- "CipherSuite": 49199,
- "NegotiatedProtocol": "h2",
- "NegotiatedProtocolIsMutual": true,
- "ServerName": "api.logicahealth.org",
- "PeerCertificates": [
- {
- "Raw": "MIIF3TCCBMWgAwIBAgIQD90iwZZx8t2e0HbfCXZv5jANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjAeFw0yMjAyMTYwMDAwMDBaFw0yMzAzMTcyMzU5NTlaMB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUQI/Eqh9TNDSw9Qjjdpb8Y0XCyFLrvuLe8oE20fV4z9ID+4slqhoQq5ZTddi72a0WCX1JYnAZvwJfSiKlauY6RhrcAlgx8Isspn9exNtEC1PVEcR6PEU+ecEuJM8nMI5HMqUbNNl7KaX66ts1kxDOz/CXropzJrlBMeqmW8Ab9oS0RfMYW4PFiuJxMMa0bTwvPEEsjdK/3P7Oq+kDhRW4mmlWXE5WSqbd4A2z8+qvaiTDT2cn6SRtJCSO21ev8AabXDUHC/cIfmZsi49DkA1Pu3aiLUvpEZoyTbEkYzgszH1e3NgS4Zlo0xAocqJ9A8KamotUcT9gsa330Zj92pwcCAwEAAaOCAu4wggLqMB8GA1UdIwQYMBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3QMB0GA1UdDgQWBBTNnWeVzTbuvsgtvy9p2Fxb8aDBXzAdBgNVHREEFjAUghIqLmxvZ2ljYWhlYWx0aC5vcmcwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA9BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3JsLnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi0xLmNybDATBgNVHSAEDDAKMAgGBmeBDAECATB1BggrBgEFBQcBAQRpMGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0MAwGA1UdEwEB/wQCMAAwggF/BgorBgEEAdZ5AgQCBIIBbwSCAWsBaQB2AOg+0No+9QY1MudXKLyJa8kD08vREWvs62nhd31tBr1uAAABfv/msJMAAAQDAEcwRQIhAME/PPk1wgtTuE+mVrtXkTR3HI1fUU5d9CA/U9ygbJeCAiBRSP9TPOdOijsVVXIxqbXuEkIbs59mK9zu2NbG35QmrwB3ADXPGRu/sWxXvw+tTG1Cy7u2JyAmUeo/4SrvqAPDO9ZMAAABfv/msLYAAAQDAEgwRgIhAN+ehH4lwA0ugf5mR1X1hQpx+7qDlK9h6Lh8jjP+dvkFAiEAmqb2KD4vu9nClgYLX8IOOox0nju77FlviBSR6jir7Y8AdgCzc3cH4YRQ+GOG1gWp3BEJSnktsWcMC4fc8AMOeTalmgAAAX7/5rDRAAAEAwBHMEUCIB+OPU0KICNfeKdgtAqFJRXPFo5Qh0i0eP8GxZZ1xGvBAiEA5tu5bGBk3dpr03FUZkBEt+UmB1j3HFTtE+4q9sbMaOQwDQYJKoZIhvcNAQELBQADggEBABhO7rjaOlTqqQFzLI0PvIvNbFQMKdwXOIxzW+QtCY0pJmmzNFouY9WpyVtjUVu4PxN2MOmqcturyTfn3I5lct+gdZF5ZN5xz1mOwP6Y/QwBd4612Rp55arRHZmOySN6sozY6lUfKRqGWsEOSauBs6msawicHSBaDeWwLFkvFNq9KU2gxAIAZvCINN9jxuS9tod/xYDWXtoqsxKJT5R9WA5jjLxCfg6hT2phcaH4NFMuuLIvVohfcRE0J3EzF01G+A8w2h/vmHBJcng7rV4x9zJDEXzy7FStGyYrPHshfw8Y5ZUtsXabvITKTvNcDTtig+FePUc8hZIQ25JtIB1utTw=",
- "RawTBSCertificate": "MIIExaADAgECAhAP3SLBlnHy3Z7Qdt8Jdm/mMA0GCSqGSIb3DQEBCwUAMEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9uMB4XDTIyMDIxNjAwMDAwMFoXDTIzMDMxNzIzNTk1OVowHTEbMBkGA1UEAwwSKi5sb2dpY2FoZWFsdGgub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQABo4IC7jCCAuowHwYDVR0jBBgwFoAUWaRmBlKge5WSPKOUByeWdFv5PdAwHQYDVR0OBBYEFM2dZ5XNNu6+yC2/L2nYXFvxoMFfMB0GA1UdEQQWMBSCEioubG9naWNhaGVhbHRoLm9yZzAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMHUGCCsGAQUFBwEBBGkwZzAtBggrBgEFBQcwAYYhaHR0cDovL29jc3Auc2NhMWIuYW1hem9udHJ1c3QuY29tMDYGCCsGAQUFBzAChipodHRwOi8vY3J0LnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi5jcnQwDAYDVR0TAQH/BAIwADCCAX8GCisGAQQB1nkCBAIEggFvBIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQAB",
- "RawSubject": "MB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZw==",
- "RawIssuer": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "Signature": "GE7uuNo6VOqpAXMsjQ+8i81sVAwp3Bc4jHNb5C0JjSkmabM0Wi5j1anJW2NRW7g/E3Yw6apy26vJN+fcjmVy36B1kXlk3nHPWY7A/pj9DAF3jrXZGnnlqtEdmY7JI3qyjNjqVR8pGoZawQ5Jq4GzqaxrCJwdIFoN5bAsWS8U2r0pTaDEAgBm8Ig032PG5L22h3/FgNZe2iqzEolPlH1YDmOMvEJ+DqFPamFxofg0Uy64si9WiF9xETQncTMXTUb4DzDaH++YcElyeDutXjH3MkMRfPLsVK0bJis8eyF/DxjllS2xdpu8hMpO81wNO2KD4V49RzyFkhDbkm0gHW61PA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26896718084987105712424649359497857781939776872717468683978155637746257215499021470349970988339566575676760846885076831729531027507529066970870403310324380393417735893022072179494775167564421874325236796705165007524050504302380060458697401950754660880328298733571850499514448029271466007480105805347771100750817823875907895773106342710116763756368148402141779264674889033245108376215416210306416743606177394777918692206509394288953263325831505326093688372090049902223282179991822050258371230607553730263316519439064647844893197691900489801227745237518700641825406379579419156372088488971079841452780233494646796756743",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 21086622482032331400955200856357498854,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": null,
- "Organization": null,
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "*.logicahealth.org",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "*.logicahealth.org"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2022-02-16T00:00:00Z",
- "NotAfter": "2023-03-17T23:59:59Z",
- "KeyUsage": 5,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3Q"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBTNnWeVzTbuvsgtvy9p2Fxb8aDBXw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 17
- ],
- "Critical": false,
- "Value": "MBSCEioubG9naWNhaGVhbHRoLm9yZw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIFoA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 37
- ],
- "Critical": false,
- "Value": "MBQGCCsGAQUFBwMBBggrBgEFBQcDAg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAA="
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 4,
- 1,
- 11129,
- 2,
- 4,
- 2
- ],
- "Critical": false,
- "Value": "BIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": [
- 1,
- 2
- ],
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": false,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "zZ1nlc027r7ILb8vadhcW/GgwV8=",
- "AuthorityKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "OCSPServer": [
- "http://ocsp.sca1b.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.sca1b.amazontrust.com/sca1b.crt"
- ],
- "DNSNames": [
- "*.logicahealth.org"
- ],
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.sca1b.amazontrust.com/sca1b-1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIESTCCAzGgAwIBAgITBn+UV4WH6Kx33rJTMlu8mYtWDTANBgkqhkiG9w0BAQsFADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1MTAyMjAwMDAwMFoXDTI1MTAxOTAwMDAwMFowRjELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEVMBMGA1UECxMMU2VydmVyIENBIDFCMQ8wDQYDVQQDEwZBbWF6b24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCThZn3c68asg3Wuw6MLAd5tES6BIoSMzoKcG5blPVo+sDORrMd4f2AbnZcMzPa43j4wNxhplty6aUKk4T1qe9BOwKFjwK6zmxxLVYo7bHViXsPlJ6qOMpFge5blDP+18x+B26A0piiQOuPkfyDyeR4xQghfj66Yo19V+emU3nazfvpFA+ROz6WoVmB5x+F2pV8xeKNR7u6azDdU5YVX1TawprmxRC1+WsAYmz6qP+z8ArDITC2FMVy2fw0IjKOtEXc/VfmtTFch5+AfGYMGMqqvJ6LcXiAhqG5TI+Dr0RtM88k+8XUBCeQ8IGKuANaL7TiItKZYxK1MMuTJtV9IblAgMBAAGjggE7MIIBNzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUWaRmBlKge5WSPKOUByeWdFv5PdAwHwYDVR0jBBgwFoAUhBjMhTTsvAyUlC4IWZzHshBOCggwewYIKwYBBQUHAQEEbzBtMC8GCCsGAQUFBzABhiNodHRwOi8vb2NzcC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbTA6BggrBgEFBQcwAoYuaHR0cDovL2NydC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbS9yb290Y2ExLmNlcjA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMA0GCSqGSIb3DQEBCwUAA4IBAQCFkr41u3nPo4FCHOTjY3NTOVI159Gt/a6ZiqyJEi+752+a1U5y6iAwYfmXss2lJwJFqMp2PphKg5625kXg8kP2CN5t6G7bMQcT8C8xDZNtYTd7WPD8UZiRKAJPBXa30/AbwuZe0GaFEQ8ugcYQgSn+IGBI8/LwhBNTZTUVEWuCUUBVV18YtbAiPq3yXqMB48Oz+ctBWuZSkbvkNodPLamkB2g1upRyzQ7qDn1X8nn8N8V7YJ6y68AtkHcNSRAnpTitxBKjtKPISLMVCx7i4hncxHZSyLyKQXhw2W2Xs0qLeC1etA+jTGDK4UfLeC0SF7FSi8o5LL21L8IzApar2pR/",
- "RawTBSCertificate": "MIIDMaADAgECAhMGf5RXhYforHfeslMyW7yZi1YNMA0GCSqGSIb3DQEBCwUAMDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDEwHhcNMTUxMDIyMDAwMDAwWhcNMjUxMDE5MDAwMDAwWjBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJOFmfdzrxqyDda7DowsB3m0RLoEihIzOgpwbluU9Wj6wM5Gsx3h/YBudlwzM9rjePjA3GGmW3LppQqThPWp70E7AoWPArrObHEtVijtsdWJew+Unqo4ykWB7luUM/7XzH4HboDSmKJA64+R/IPJ5HjFCCF+PrpijX1X56ZTedrN++kUD5E7PpahWYHnH4XalXzF4o1Hu7prMN1TlhVfVNrCmubFELX5awBibPqo/7PwCsMhMLYUxXLZ/DQiMo60Rdz9V+a1MVyHn4B8ZgwYyqq8notxeICGoblMj4OvRG0zzyT7xdQEJ5DwgYq4A1ovtOIi0pljErUwy5Mm1X0huUCAwEAAaOCATswggE3MBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBRZpGYGUqB7lZI8o5QHJ5Z0W/k90DAfBgNVHSMEGDAWgBSEGMyFNOy8DJSULghZnMeyEE4KCDB7BggrBgEFBQcBAQRvMG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2VyMD8GA1UdHwQ4MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmwwEwYDVR0gBAwwCjAIBgZngQwBAgE=",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwk4WZ93OvGrIN1rsOjCwHebREugSKEjM6CnBuW5T1aPrAzkazHeH9gG52XDMz2uN4+MDcYaZbcumlCpOE9anvQTsChY8Cus5scS1WKO2x1Yl7D5SeqjjKRYHuW5Qz/tfMfgdugNKYokDrj5H8g8nkeMUIIX4+umKNfVfnplN52s376RQPkTs+lqFZgecfhdqVfMXijUe7umsw3VOWFV9U2sKa5sUQtflrAGJs+qj/s/AKwyEwthTFctn8NCIyjrRF3P1X5rUxXIefgHxmDBjKqryei3F4gIahuUyPg69EbTPPJPvF1AQnkPCBirgDWi+04iLSmWMStTDLkybVfSG5QIDAQAB",
- "RawSubject": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "RawIssuer": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "Signature": "hZK+Nbt5z6OBQhzk42NzUzlSNefRrf2umYqsiRIvu+dvmtVOcuogMGH5l7LNpScCRajKdj6YSoOetuZF4PJD9gjebehu2zEHE/AvMQ2TbWE3e1jw/FGYkSgCTwV2t9PwG8LmXtBmhREPLoHGEIEp/iBgSPPy8IQTU2U1FRFrglFAVVdfGLWwIj6t8l6jAePDs/nLQVrmUpG75DaHTy2ppAdoNbqUcs0O6g59V/J5/DfFe2CesuvALZB3DUkQJ6U4rcQSo7SjyEizFQse4uIZ3MR2Usi8ikF4cNltl7NKi3gtXrQPo0xgyuFHy3gtEhexUovKOSy9tS/CMwKWq9qUfw==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "24528737555851895213919827617064808536856788789868126310716752303420041319710819680867697306230985630039655096548324364189962675576756038921107965025585889330528490649228935527969954506874750514159926943451238689552458142167021149788529783891257271028002485075630471793111207960868638365698705018555597520367289025831586046483446904825820575805338475813865444295353094097022678376192149453480223428943386514159000527368947588174705227657134217583008630047462959260157651883088072156905420231950318110240318878613016990846576820326568049365612395397183597930457965295993595011597251067348997341253617591444999389873893",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918209630989264145272943054026349679957517,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-10-22T00:00:00Z",
- "NotAfter": "2025-10-19T00:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAYBAf8CAQA="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBRZpGYGUqB7lZI8o5QHJ5Z0W/k90A=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFIQYzIU07LwMlJQuCFmcx7IQTgoI"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmw="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": 0,
- "MaxPathLenZero": true,
- "SubjectKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "AuthorityKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "OCSPServer": [
- "http://ocsp.rootca1.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootca1.amazontrust.com/rootca1.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootca1.amazontrust.com/rootca1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIEkjCCA3qgAwIBAgITBn+USionzfP6wq4rAfkI7rnExjANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE1MDUyNTEyMDAwMFoXDTM3MTIzMTAxMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaOCATEwggEtMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSEGMyFNOy8DJSULghZnMeyEE4KCDAfBgNVHSMEGDAWgBScXwDfqgHXMCs4iKK4bUqc8hGRgzB4BggrBgEFBQcBAQRsMGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2VyMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3JsMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAYjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "RawTBSCertificate": "MIIDeqADAgECAhMGf5RKKifN8/rCrisB+QjuucTGMA0GCSqGSIb3DQEBCwUAMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwHhcNMTUwNTI1MTIwMDAwWhcNMzcxMjMxMDEwMDAwWjA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQABo4IBMTCCAS0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMB8GA1UdIwQYMBaAFJxfAN+qAdcwKziIorhtSpzyEZGDMHgGCCsGAQUFBwEBBGwwajAuBggrBgEFBQcwAYYiaHR0cDovL29jc3Aucm9vdGcyLmFtYXpvbnRydXN0LmNvbTA4BggrBgEFBQcwAoYsaHR0cDovL2NydC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jZXIwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2NybC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jcmwwEQYDVR0gBAowCDAGBgRVHSAA",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQAB",
- "RawSubject": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "RawIssuer": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "Signature": "YjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "22529839904807742196558773392430766620630713202204326167346456925862066285712069978308045976033918808540171076811098215136401323342247576789054764683787147408289170989302937775178809187827657352584557953877946352196797789035355954596527030584944622221752357105572088106020206921431118198373122638305846252087992561841631797199384157902018140720267433956687491591657652730221337591680012205319549572614035105482287002884850178224609018864719685310905426619874727796905080238179726224664042154200651710137931048812546957419686875805576245376866031854569863410951649630469236463991472642618512857920826701027482532358669",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918191876577076464031512351042010504348870,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-05-25T12:00:00Z",
- "NotAfter": "2037-12-31T01:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBSEGMyFNOy8DJSULghZnMeyEE4KCA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFJxfAN+qAdcwKziIorhtSpzyEZGD"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "AuthorityKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "OCSPServer": [
- "http://ocsp.rootg2.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootg2.amazontrust.com/rootg2.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootg2.amazontrust.com/rootg2.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- },
- {
- "Raw": "MIIEdTCCA12gAwIBAgIJAKcOSkw0grd/MA0GCSqGSIb3DQEBCwUAMGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wOTA5MDIwMDAwMDBaFw0zNDA2MjgxNzM5MTZaMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDDrEKvlO4vW+GZdfjohTsR8/y8+fIBNtKTrID30892t2OGPZNmCom15cAICyL1l/9of5JUOG52kbUpqQ4XHj2C0NTm/2yEnZtvMaVq4rtnQU68/7JuMauh2WLmo7WJSJR1b/JaCTcFOD2oR0FMNnngRoOt+OQFodSk7PQ5E751bWAHDLUu57fa4657wx+UX2wmDPE1kCK4DMNEffud6QZW0CzyyRpqbn3oUYSXxmTqM6bam17jQuug0DuDPfR+uxa40l2ZvOgdFFRjKWcIfeAg5JQ4W2bHO7ZOphQazJ1FTfhy/HIrImzJ9ZVGif/L4qL8RVHHVAYBeFAlU5i38FAgMBAAGjgfAwge0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMB8GA1UdIwQYMBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjnME8GCCsGAQUFBwEBBEMwQTAcBggrBgEFBQcwAYYQaHR0cDovL28uc3MyLnVzLzAhBggrBgEFBQcwAoYVaHR0cDovL3guc3MyLnVzL3guY2VyMCYGA1UdHwQfMB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQELBQADggEBACMd44pXyn3pF3lM8R5V/cxTbj5HD9/GVfKyBDbtgB9TxF00KGu+x1X8Z+rLP3+QsjPNG1gQggL4+C/1E2DUBc7xgQjB3ad1l08YuW3e95ORCLp+QCztweq7dp4zBncdDQh/U90bZKuCJ/Fp1U1ervShw3WnWEQt8jxwmKy6abaVd38PMV4s/KCHOkdp8Hlf9BRUpJVeEXgSYCfOn8J3/yNTd126/+pZ59vPr5KW7ySaNRB6nJHGDn2Z9j8Z3/VyVOEVqQdZe4O/Ui5GjLIAZHYcSNPYeehuVsyuLAOQ1xk4meTKCRlb/weWsKh/NEnfVqn3sF/tM+2MR7cwA130A4w=",
- "RawTBSCertificate": "MIIDXaADAgECAgkApw5KTDSCt38wDQYJKoZIhvcNAQELBQAwaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA5MDkwMjAwMDAwMFoXDTM0MDYyODE3MzkxNlowgZgxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaOB8DCB7TAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUnF8A36oB1zArOIiiuG1KnPIRkYMwHwYDVR0jBBgwFoAUv1+30c7dH4b0W1Ws3NcQwg6piOcwTwYIKwYBBQUHAQEEQzBBMBwGCCsGAQUFBzABhhBodHRwOi8vby5zczIudXMvMCEGCCsGAQUFBzAChhVodHRwOi8veC5zczIudXMveC5jZXIwJgYDVR0fBB8wHTAboBmgF4YVaHR0cDovL3Muc3MyLnVzL3IuY3JsMBEGA1UdIAQKMAgwBgYEVR0gAA==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Qw6xCr5TuL1vhmXX46IU7EfP8vPnyATbSk6yA99PPdrdjhj2TZgqJteXACAsi9Zf/aH+SVDhudpG1KakOFx49gtDU5v9shJ2bbzGlauK7Z0FOvP+ybjGrodli5qO1iUiUdW/yWgk3BTg9qEdBTDZ54EaDrfjkBaHUpOz0ORO+dW1gBwy1Lue32uOue8MflF9sJgzxNZAiuAzDRH37nekGVtAs8skaam596FGEl8Zk6jOm2pte40LroNA7gz30frsWuNJdmbzoHRRUYylnCH3gIOSUOFtmxzu2TqYUGsydRU34cvxyKyJsyfWVRon/y+Ki/EVRx1QGAXhQJVOYt/BQIDAQAB",
- "RawSubject": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "RawIssuer": "MGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==",
- "Signature": "Ix3jilfKfekXeUzxHlX9zFNuPkcP38ZV8rIENu2AH1PEXTQoa77HVfxn6ss/f5CyM80bWBCCAvj4L/UTYNQFzvGBCMHdp3WXTxi5bd73k5EIun5ALO3B6rt2njMGdx0NCH9T3Rtkq4In8WnVTV6u9KHDdadYRC3yPHCYrLpptpV3fw8xXiz8oIc6R2nweV/0FFSklV4ReBJgJ86fwnf/I1N3Xbr/6lnn28+vkpbvJJo1EHqckcYOfZn2Pxnf9XJU4RWpB1l7g79SLkaMsgBkdhxI09h56G5WzK4sA5DXGTiZ5MoJGVv/B5awqH80Sd9WqfewX+0z7YxHtzADXfQDjA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26894789576491863019171445242018370132029525033879210664513024255165308689836081694724912552986436241602345929261854187816625921774943728567119070351838976265193901442169339571326613928339955106648223197498035701437846440970934704192382084561469274550003268570741310868032789070264835003681318445644941362885752628282968349509706358865971392279088395067847314610178969555804359319567178098112935181143559364150874524817692694181296058297355335204675211145990489303168553611700020424738364579606192390834705213026692659672388567853246354560726855054573503174641583891075106464210711468427779853334564691648681991700229",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 12037640545166866303,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": [
- "Starfield Class 2 Certification Authority"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Starfield Class 2 Certification Authority"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2009-09-02T00:00:00Z",
- "NotAfter": "2034-06-28T17:39:16Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBScXwDfqgHXMCs4iKK4bUqc8hGRgw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjn"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MEEwHAYIKwYBBQUHMAGGEGh0dHA6Ly9vLnNzMi51cy8wIQYIKwYBBQUHMAKGFWh0dHA6Ly94LnNzMi51cy94LmNlcg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "AuthorityKeyId": "v1+30c7dH4b0W1Ws3NcQwg6piOc=",
- "OCSPServer": [
- "http://o.ss2.us/"
- ],
- "IssuingCertificateURL": [
- "http://x.ss2.us/x.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://s.ss2.us/r.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- }
- ],
- "VerifiedChains": null,
- "SignedCertificateTimestamps": null,
- "OCSPResponse": null,
- "TLSUnique": "KGYau2ehxG6kGY5o"
- }
- },
- "ErrType": "",
- "ErrMsg": ""
- },
- {
- "Request": {
- "Method": "GET",
- "URL": {
- "Scheme": "https",
- "Opaque": "",
- "User": null,
- "Host": "api.logicahealth.org",
- "Path": "/fastenhealth/data",
- "RawPath": "",
- "ForceQuery": false,
- "RawQuery": "_getpages=2b87e9ea-0af9-429f-abf2-0a72b2e33ad1\u0026_getpagesoffset=150\u0026_count=50\u0026_pretty=true\u0026_bundletype=searchset",
- "Fragment": "",
- "RawFragment": ""
- },
- "Header": {},
- "Body": ""
- },
- "Response": {
- "Status": "200 OK",
- "StatusCode": 200,
- "Proto": "HTTP/2.0",
- "ProtoMajor": 2,
- "ProtoMinor": 0,
- "Header": {
- "Access-Control-Allow-Headers": [
- "X-FHIR-Starter,authorization,Prefer,Origin,Accept,X-Requested-With,Content-Type,Access-Control-Request-Method,Access-Control-Request-Headers"
- ],
- "Access-Control-Allow-Methods": [
- "POST, PUT, GET, OPTIONS, DELETE"
- ],
- "Access-Control-Allow-Origin": [
- "*"
- ],
- "Access-Control-Expose-Headers": [
- "Location, Content-Location"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
- ],
- "Content-Length": [
- "89243"
- ],
- "Content-Location": [
- "https://api.logicahealth.org/fastenhealth/data/Bundle/2b87e9ea-0af9-429f-abf2-0a72b2e33ad1"
- ],
- "Content-Type": [
- "application/fhir+json;charset=UTF-8"
- ],
- "Date": [
- "Tue, 27 Sep 2022 03:13:30 GMT"
- ],
- "Expires": [
- "0"
- ],
- "Last-Modified": [
- "Tue, 27 Sep 2022 03:12:40 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-Frame-Options": [
- "DENY"
- ],
- "X-Powered-By": [
- "HAPI FHIR 5.2.0 REST Server (FHIR Server; FHIR 4.0.1/R4)"
- ],
- "X-Request-Id": [
- "WowVJSqPVNXjC8Eb"
- ],
- "X-Xss-Protection": [
- "1; mode=block"
- ]
- },
- "Body": "ewogICJyZXNvdXJjZVR5cGUiOiAiQnVuZGxlIiwKICAiaWQiOiAiMmI4N2U5ZWEtMGFmOS00MjlmLWFiZjItMGE3MmIyZTMzYWQxIiwKICAibWV0YSI6IHsKICAgICJsYXN0VXBkYXRlZCI6ICIyMDIyLTA5LTI3VDAzOjEyOjQwLjAwMCswMDowMCIKICB9LAogICJ0eXBlIjogInNlYXJjaHNldCIsCiAgImxpbmsiOiBbIHsKICAgICJyZWxhdGlvbiI6ICJzZWxmIiwKICAgICJ1cmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YT9fZ2V0cGFnZXM9MmI4N2U5ZWEtMGFmOS00MjlmLWFiZjItMGE3MmIyZTMzYWQxJl9nZXRwYWdlc29mZnNldD0xNTAmX2NvdW50PTUwJl9wcmV0dHk9dHJ1ZSZfYnVuZGxldHlwZT1zZWFyY2hzZXQiCiAgfSwgewogICAgInJlbGF0aW9uIjogIm5leHQiLAogICAgInVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhP19nZXRwYWdlcz0yYjg3ZTllYS0wYWY5LTQyOWYtYWJmMi0wYTcyYjJlMzNhZDEmX2dldHBhZ2Vzb2Zmc2V0PTIwMCZfY291bnQ9NTAmX3ByZXR0eT10cnVlJl9idW5kbGV0eXBlPXNlYXJjaHNldCIKICB9LCB7CiAgICAicmVsYXRpb24iOiAicHJldmlvdXMiLAogICAgInVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhP19nZXRwYWdlcz0yYjg3ZTllYS0wYWY5LTQyOWYtYWJmMi0wYTcyYjJlMzNhZDEmX2dldHBhZ2Vzb2Zmc2V0PTEwMCZfY291bnQ9NTAmX3ByZXR0eT10cnVlJl9idW5kbGV0eXBlPXNlYXJjaHNldCIKICB9IF0sCiAgImVudHJ5IjogWyB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI1Ni10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjU2LXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0yNDogdGVtcGVyYXR1cmUgPSAzNi45NDQ0NCBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI1Ni10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMjQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNi45NDQ0NCwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yOTAtcmVzcGlyYXRvcnlyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yOTAtcmVzcGlyYXRvcnlyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0wNC0yMzogcmVzcGlyYXRvcnlfcmF0ZSA9IDIwLjAge2JyZWF0aHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjkwLXJlc3BpcmF0b3J5cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI5Mjc5LTEiLAogICAgICAgICAgImRpc3BsYXkiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTIzIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMjAuMCwKICAgICAgICAidW5pdCI6ICJ7YnJlYXRoc30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogInticmVhdGhzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIzNS10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjM1LXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0wOTogdGVtcGVyYXR1cmUgPSAzNi45NDQ0NCBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTIzNS10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMDkiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNi45NDQ0NCwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMzItaGVpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yMzItaGVpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0wOTogaGVpZ2h0ID0gMTY2LjYyNCBjbTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjMyLWhlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzAyLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0wOSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDE2Ni42MjQsCiAgICAgICAgInVuaXQiOiAiY20iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiY20iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE5Mi1yZXNwaXJhdG9yeXJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE5Mi1yZXNwaXJhdG9yeXJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTAxLTI0OiByZXNwaXJhdG9yeV9yYXRlID0gMjAuMCB7YnJlYXRoc30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xOTItcmVzcGlyYXRvcnlyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjkyNzktMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMDEtMjQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyMC4wLAogICAgICAgICJ1bml0IjogInticmVhdGhzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JyZWF0aHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjUwLXdlaWdodCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjUwLXdlaWdodCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDUtMDItMjM6IHdlaWdodCA9IDkzLjg5MzYyIGtnPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNTAtd2VpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjMxNDEtOSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJ3ZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIndlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA1LTAyLTIzIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogOTMuODkzNjIsCiAgICAgICAgInVuaXQiOiAia2ciLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2ciCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIwOS1ibWkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIwOS1ibWkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTEwLTMxOiBibWkgPSAzMy45IGtnL20yPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMDktYm1pIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjM5MTU2LTUiLAogICAgICAgICAgImRpc3BsYXkiOiAiYm1pIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJibWkiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0xMC0zMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDMzLjksCiAgICAgICAgInVuaXQiOiAia2cvbTIiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2cvbTIiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI0My13ZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI0My13ZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTEwOiB3ZWlnaHQgPSA5My40ODUzOSBrZzwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjQzLXdlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzMTQxLTkiLAogICAgICAgICAgImRpc3BsYXkiOiAid2VpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ3ZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0xMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDkzLjQ4NTM5LAogICAgICAgICJ1bml0IjogImtnIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNzQtYm1pIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNzQtYm1pIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5OS0xMi0yMDogYm1pID0gMzUuNCBrZy9tMjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTc0LWJtaSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzOTE1Ni01IiwKICAgICAgICAgICJkaXNwbGF5IjogImJtaSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiYm1pIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTktMTItMjAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNS40LAogICAgICAgICJ1bml0IjogImtnL20yIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnL20yIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04MjkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTgyOSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTctMDUtMDE6IEJsb29kIHByZXNzdXJlIDEwNy82NyBtbUhnPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmFsIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiNTUyODQtNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5Ny0wNS0wMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9zbWFydC1QcmFjdGl0aW9uZXItNzE2MTQ1MDIiCiAgICAgIH0gXSwKICAgICAgImNvbXBvbmVudCI6IFsgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDgwLTYiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiAxMDcsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9LCB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0NjItNCIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogNjcsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTgyOCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtODI4IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5Ny0wNC0zMDogQmxvb2QgcHJlc3N1cmUgODcvNzUgbW1IZzwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5hbCIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjU1Mjg0LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkJsb29kIHByZXNzdXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTctMDQtMzAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvc21hcnQtUHJhY3RpdGlvbmVyLTcxNjE0NTAyIgogICAgICB9IF0sCiAgICAgICJjb21wb25lbnQiOiBbIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ4MC02IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogODcsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9LCB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0NjItNCIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogNzUsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE4Mi1veHlnZW5zYXR1cmF0aW9uIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xODItb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTktMTItMjE6IG94eWdlbl9zYXR1cmF0aW9uID0gMTAwLjAgJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn08L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE4Mi1veHlnZW5zYXR1cmF0aW9uIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjI3MTAtMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5OS0xMi0yMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDEwMC4wLAogICAgICAgICJ1bml0IjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMTctb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjE3LW94eWdlbnNhdHVyYXRpb24iLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTExLTAxOiBveHlnZW5fc2F0dXJhdGlvbiA9IDEwMC4wICV7SGVtb2dsb2JpblNhdHVyYXRpb259PC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMTctb3h5Z2Vuc2F0dXJhdGlvbiIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIyNzEwLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMTEtMDEiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxMDAuMCwKICAgICAgICAidW5pdCI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTU4LXRlbXBlcmF0dXJlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNTgtdGVtcGVyYXR1cmUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk3LTA1LTAxOiB0ZW1wZXJhdHVyZSA9IDM3LjAgQ2VsPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xNTgtdGVtcGVyYXR1cmUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODMxMC01IiwKICAgICAgICAgICJkaXNwbGF5IjogInRlbXBlcmF0dXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ0ZW1wZXJhdHVyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIxOTk3LTA1LTAxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzcuMCwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNjctaGVpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yNjctaGVpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0wNC0wNzogaGVpZ2h0ID0gMTYzLjMyMiBjbTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjY3LWhlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzAyLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0wNyIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDE2My4zMjIsCiAgICAgICAgInVuaXQiOiAiY20iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiY20iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI2Mi1yZXNwaXJhdG9yeXJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI2Mi1yZXNwaXJhdG9yeXJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTI1OiByZXNwaXJhdG9yeV9yYXRlID0gMjIuMCB7YnJlYXRoc30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNjItcmVzcGlyYXRvcnlyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjkyNzktMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMjUiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyMi4wLAogICAgICAgICJ1bml0IjogInticmVhdGhzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JyZWF0aHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMjIyLXdlaWdodCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjIyLXdlaWdodCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTEtMDI6IHdlaWdodCA9IDk0LjU3NDAxIGtnPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMjItd2VpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjMxNDEtOSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJ3ZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIndlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTExLTAyIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogOTQuNTc0MDEsCiAgICAgICAgInVuaXQiOiAia2ciLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2ciCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIzOS1oZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIzOS1oZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTEwOiBoZWlnaHQgPSAxNjYuODc4IGNtPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yMzktaGVpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMDItMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA1LTAyLTEwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTY2Ljg3OCwKICAgICAgICAidW5pdCI6ICJjbSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJjbSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTg1LXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTg1LXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMDEtMTk6IHJlc3BpcmF0b3J5X3JhdGUgPSAyMC4wIHticmVhdGhzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE4NS1yZXNwaXJhdG9yeXJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiOTI3OS0xIiwKICAgICAgICAgICJkaXNwbGF5IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0wMS0xOSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDIwLjAsCiAgICAgICAgInVuaXQiOiAie2JyZWF0aHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YnJlYXRoc30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xODMtaGVpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xODMtaGVpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0wMS0xOTogaGVpZ2h0ID0gMTY1Ljg2MiBjbTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTgzLWhlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzAyLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0wMS0xOSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDE2NS44NjIsCiAgICAgICAgInVuaXQiOiAiY20iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiY20iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI1Ny13ZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI1Ny13ZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTI0OiB3ZWlnaHQgPSA5MS42MjU2NiBrZzwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjU3LXdlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzMTQxLTkiLAogICAgICAgICAgImRpc3BsYXkiOiAid2VpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ3ZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0yNCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDkxLjYyNTY2LAogICAgICAgICJ1bml0IjogImtnIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yNjYtb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjY2LW94eWdlbnNhdHVyYXRpb24iLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTI1OiBveHlnZW5fc2F0dXJhdGlvbiA9IDEwMC4wICV7SGVtb2dsb2JpblNhdHVyYXRpb259PC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0yNjYtb3h5Z2Vuc2F0dXJhdGlvbiIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIyNzEwLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIm94eWdlbl9zYXR1cmF0aW9uIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMjUiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxMDAuMCwKICAgICAgICAidW5pdCI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICIle0hlbW9nbG9iaW5TYXR1cmF0aW9ufSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODQxIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04NDEiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTEwOiBCbG9vZCBwcmVzc3VyZSA5Ny81OCBtbUhnPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmFsIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiNTUyODQtNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwNS0wMi0xMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9zbWFydC1QcmFjdGl0aW9uZXItNzE2MTQ1MDIiCiAgICAgIH0gXSwKICAgICAgImNvbXBvbmVudCI6IFsgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDgwLTYiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiA5NywKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0sIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ2Mi00IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiA1OCwKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0gXQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODQwIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04NDAiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTA5OiBCbG9vZCBwcmVzc3VyZSAxMDkvNjYgbW1IZzwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5hbCIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjU1Mjg0LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkJsb29kIHByZXNzdXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMDkiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvc21hcnQtUHJhY3RpdGlvbmVyLTcxNjE0NTAyIgogICAgICB9IF0sCiAgICAgICJjb21wb25lbnQiOiBbIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ4MC02IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogMTA5LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDY2LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNTktd2VpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNTktd2VpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5Ny0wNS0wMTogd2VpZ2h0ID0gOTkuNjA4ODgga2c8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE1OS13ZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzE0MS05IiwKICAgICAgICAgICJkaXNwbGF5IjogIndlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAid2VpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTctMDUtMDEiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA5OS42MDg4OCwKICAgICAgICAidW5pdCI6ICJrZyIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZyIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODQ1IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04NDUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTA3OiBCbG9vZCBwcmVzc3VyZSA0OC8yOSBtbUhnPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmFsIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiNTUyODQtNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0wNyIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9zbWFydC1QcmFjdGl0aW9uZXItNzE2MTQ1MDIiCiAgICAgIH0gXSwKICAgICAgImNvbXBvbmVudCI6IFsgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDgwLTYiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiA0OCwKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0sIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ2Mi00IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiAyOSwKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0gXQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODQ0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04NDQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTI1OiBCbG9vZCBwcmVzc3VyZSAxMDkvNjYgbW1IZzwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5hbCIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjU1Mjg0LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkJsb29kIHByZXNzdXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMjUiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvc21hcnQtUHJhY3RpdGlvbmVyLTcxNjE0NTAyIgogICAgICB9IF0sCiAgICAgICJjb21wb25lbnQiOiBbIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ4MC02IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogMTA5LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDY2LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNzMtd2VpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNzMtd2VpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5OS0xMi0yMDogd2VpZ2h0ID0gOTYuOTMyNjkga2c8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTE3My13ZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzE0MS05IiwKICAgICAgICAgICJkaXNwbGF5IjogIndlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAid2VpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTktMTItMjAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA5Ni45MzI2OSwKICAgICAgICAidW5pdCI6ICJrZyIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZyIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODQzIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04NDMiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA1LTAyLTI0OiBCbG9vZCBwcmVzc3VyZSAxMjgvNzggbW1IZzwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5hbCIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjU1Mjg0LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkJsb29kIHByZXNzdXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMjQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvc21hcnQtUHJhY3RpdGlvbmVyLTcxNjE0NTAyIgogICAgICB9IF0sCiAgICAgICJjb21wb25lbnQiOiBbIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ4MC02IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogMTI4LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDc4LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04NDIiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTg0MiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDUtMDItMjM6IEJsb29kIHByZXNzdXJlIDYwLzM1IG1tSGc8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluYWwiLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI1NTI4NC00IiwKICAgICAgICAgICJkaXNwbGF5IjogIkJsb29kIHByZXNzdXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA1LTAyLTIzIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL3NtYXJ0LVByYWN0aXRpb25lci03MTYxNDUwMiIKICAgICAgfSBdLAogICAgICAiY29tcG9uZW50IjogWyB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0ODAtNiIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDYwLAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDM1LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xNjktaGVpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xNjktaGVpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MTk5OS0xMi0yMDogaGVpZ2h0ID0gMTY1LjYwOCBjbTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMTY5LWhlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzAyLTIiLAogICAgICAgICAgImRpc3BsYXkiOiAiaGVpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMTk5OS0xMi0yMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDE2NS42MDgsCiAgICAgICAgInVuaXQiOiAiY20iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiY20iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTg0OSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtODQ5IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0wNC0yNDogQmxvb2QgcHJlc3N1cmUgMTA1LzYzIG1tSGc8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluYWwiLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI1NTI4NC00IiwKICAgICAgICAgICJkaXNwbGF5IjogIkJsb29kIHByZXNzdXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTI0IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL3NtYXJ0LVByYWN0aXRpb25lci03MTYxNDUwMiIKICAgICAgfSBdLAogICAgICAiY29tcG9uZW50IjogWyB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0ODAtNiIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDEwNSwKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0sIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ2Mi00IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiA2MywKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0gXQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODQ4IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04NDgiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTIzOiBCbG9vZCBwcmVzc3VyZSA2My8zOCBtbUhnPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmFsIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiNTUyODQtNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0yMyIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9zbWFydC1QcmFjdGl0aW9uZXItNzE2MTQ1MDIiCiAgICAgIH0gXSwKICAgICAgImNvbXBvbmVudCI6IFsgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDgwLTYiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiA2MywKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0sIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ2Mi00IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiAzOCwKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0gXQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODQ3IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04NDciLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTE0OiBCbG9vZCBwcmVzc3VyZSAxMjUvNzUgbW1IZzwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5hbCIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjU1Mjg0LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkJsb29kIHByZXNzdXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMTQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvc21hcnQtUHJhY3RpdGlvbmVyLTcxNjE0NTAyIgogICAgICB9IF0sCiAgICAgICJjb21wb25lbnQiOiBbIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ4MC02IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogMTI1LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDc1LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04NDYiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTg0NiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMDg6IEJsb29kIHByZXNzdXJlIDEyMC83MiBtbUhnPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmFsIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiNTUyODQtNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0wOCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9zbWFydC1QcmFjdGl0aW9uZXItNzE2MTQ1MDIiCiAgICAgIH0gXSwKICAgICAgImNvbXBvbmVudCI6IFsgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDgwLTYiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiAxMjAsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9LCB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0NjItNCIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogNzIsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI4NS13ZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTI4NS13ZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTE0OiB3ZWlnaHQgPSA5Mi4zOTY3NyBrZzwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjg1LXdlaWdodCIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIzMTQxLTkiLAogICAgICAgICAgImRpc3BsYXkiOiAid2VpZ2h0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ3ZWlnaHQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0xNCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDkyLjM5Njc3LAogICAgICAgICJ1bml0IjogImtnIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImtnIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04MzAiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTgzMCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTctMDUtMDc6IEJsb29kIHByZXNzdXJlIDY4LzQzIG1tSGc8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluYWwiLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI1NTI4NC00IiwKICAgICAgICAgICJkaXNwbGF5IjogIkJsb29kIHByZXNzdXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIxOTk3LTA1LTA3IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL3NtYXJ0LVByYWN0aXRpb25lci03MTYxNDUwMiIKICAgICAgfSBdLAogICAgICAiY29tcG9uZW50IjogWyB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0ODAtNiIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDY4LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDQzLAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04MzQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTgzNCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMDEtMjQ6IEJsb29kIHByZXNzdXJlIDEwMC82MyBtbUhnPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmFsIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiNTUyODQtNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0wMS0yNCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9zbWFydC1QcmFjdGl0aW9uZXItNzE2MTQ1MDIiCiAgICAgIH0gXSwKICAgICAgImNvbXBvbmVudCI6IFsgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDgwLTYiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiAxMDAsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9LCB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0NjItNCIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogNjMsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTgzMyIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtODMzIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0wMS0xOTogQmxvb2QgcHJlc3N1cmUgMTEwLzY5IG1tSGc8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluYWwiLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI1NTI4NC00IiwKICAgICAgICAgICJkaXNwbGF5IjogIkJsb29kIHByZXNzdXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTAxLTE5IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL3NtYXJ0LVByYWN0aXRpb25lci03MTYxNDUwMiIKICAgICAgfSBdLAogICAgICAiY29tcG9uZW50IjogWyB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0ODAtNiIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDExMCwKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0sIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ2Mi00IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiA2OSwKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0gXQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODMyIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04MzIiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4xOTk5LTEyLTIxOiBCbG9vZCBwcmVzc3VyZSAxMjgvODEgbW1IZzwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5hbCIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjU1Mjg0LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkJsb29kIHByZXNzdXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjE5OTktMTItMjEiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvc21hcnQtUHJhY3RpdGlvbmVyLTcxNjE0NTAyIgogICAgICB9IF0sCiAgICAgICJjb21wb25lbnQiOiBbIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ4MC02IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogMTI4LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDgxLAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04MzEiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTgzMSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjE5OTktMTItMjA6IEJsb29kIHByZXNzdXJlIDgzLzUzIG1tSGc8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluYWwiLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI1NTI4NC00IiwKICAgICAgICAgICJkaXNwbGF5IjogIkJsb29kIHByZXNzdXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIxOTk5LTEyLTIwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL3NtYXJ0LVByYWN0aXRpb25lci03MTYxNDUwMiIKICAgICAgfSBdLAogICAgICAiY29tcG9uZW50IjogWyB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0ODAtNiIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDgzLAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDUzLAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04MzgiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTgzOCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTEtMDI6IEJsb29kIHByZXNzdXJlIDg1LzU0IG1tSGc8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluYWwiLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI1NTI4NC00IiwKICAgICAgICAgICJkaXNwbGF5IjogIkJsb29kIHByZXNzdXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTExLTAyIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL3NtYXJ0LVByYWN0aXRpb25lci03MTYxNDUwMiIKICAgICAgfSBdLAogICAgICAiY29tcG9uZW50IjogWyB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0ODAtNiIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDg1LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDU0LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04MzciLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTgzNyIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTEtMDE6IEJsb29kIHByZXNzdXJlIDEzOC84NSBtbUhnPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmFsIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiNTUyODQtNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0xMS0wMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9zbWFydC1QcmFjdGl0aW9uZXItNzE2MTQ1MDIiCiAgICAgIH0gXSwKICAgICAgImNvbXBvbmVudCI6IFsgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDgwLTYiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiAxMzgsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9LCB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0NjItNCIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogODUsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTgzNiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtODM2IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMC0zMTogQmxvb2QgcHJlc3N1cmUgMTMzLzgyIG1tSGc8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiZmluYWwiLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI1NTI4NC00IiwKICAgICAgICAgICJkaXNwbGF5IjogIkJsb29kIHByZXNzdXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDAxLTEwLTMxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL3NtYXJ0LVByYWN0aXRpb25lci03MTYxNDUwMiIKICAgICAgfSBdLAogICAgICAiY29tcG9uZW50IjogWyB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0ODAtNiIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDEzMywKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0sIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ2Mi00IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiRGlhc3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiA4MiwKICAgICAgICAgICJ1bml0IjogIm1tSGciLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tW0hnXSIKICAgICAgICB9CiAgICAgIH0gXQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODM1IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04MzUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTAxLTI1OiBCbG9vZCBwcmVzc3VyZSAxMjkvODAgbW1IZzwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJmaW5hbCIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjU1Mjg0LTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkJsb29kIHByZXNzdXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMDEtMjUiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvc21hcnQtUHJhY3RpdGlvbmVyLTcxNjE0NTAyIgogICAgICB9IF0sCiAgICAgICJjb21wb25lbnQiOiBbIHsKICAgICAgICAiY29kZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICAgImNvZGUiOiAiODQ4MC02IiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiU3lzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogMTI5LAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSwgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDYyLTQiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJEaWFzdG9saWMgYmxvb2QgcHJlc3N1cmUiCiAgICAgICAgfSwKICAgICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDgwLAogICAgICAgICAgInVuaXQiOiAibW1IZyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibW1bSGddIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04MzkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTgzOSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTEtMDU6IEJsb29kIHByZXNzdXJlIDEzMy84MiBtbUhnPC9kaXY+IgogICAgICB9LAogICAgICAic3RhdHVzIjogImZpbmFsIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiNTUyODQtNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJCbG9vZCBwcmVzc3VyZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQmxvb2QgcHJlc3N1cmUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0xMS0wNSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9zbWFydC1QcmFjdGl0aW9uZXItNzE2MTQ1MDIiCiAgICAgIH0gXSwKICAgICAgImNvbXBvbmVudCI6IFsgewogICAgICAgICJjb2RlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgICAiY29kZSI6ICI4NDgwLTYiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJTeXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIlN5c3RvbGljIGJsb29kIHByZXNzdXJlIgogICAgICAgIH0sCiAgICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgICAidmFsdWUiOiAxMzMsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9LCB7CiAgICAgICAgImNvZGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAgICJjb2RlIjogIjg0NjItNCIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIkRpYXN0b2xpYyBibG9vZCBwcmVzc3VyZSIKICAgICAgICB9LAogICAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogODIsCiAgICAgICAgICAidW5pdCI6ICJtbUhnIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbVtIZ10iCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTE5NS1ibWkiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTE5NS1ibWkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjM2LjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjTjNSZUtqUjc1QXM4S2poayIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDAxLTAxLTI0OiBibWkgPSAzMy40IGtnL20yPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xOTUtYm1pIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjM5MTU2LTUiLAogICAgICAgICAgImRpc3BsYXkiOiAiYm1pIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJibWkiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwMS0wMS0yNCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDMzLjQsCiAgICAgICAgInVuaXQiOiAia2cvbTIiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAia2cvbTIiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI0OS10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjQ5LXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwNS0wMi0yMzogdGVtcGVyYXR1cmUgPSAzNi45NDQ0NCBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI0OS10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDUtMDItMjMiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNi45NDQ0NCwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yMDctdGVtcGVyYXR1cmUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTIwNy10ZW1wZXJhdHVyZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6MzYuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNOM1JlS2pSNzVBczhLamhrIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDEtMTAtMzE6IHRlbXBlcmF0dXJlID0gMzcuMCBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTIwNy10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMTAtMzEiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNy4wLAogICAgICAgICJ1bml0IjogIkNlbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJDZWwiCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTIyOC10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjI4LXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1MjozNi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI04zUmVLalI3NUFzOEtqaGsiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwMS0xMS0wNTogdGVtcGVyYXR1cmUgPSAzNy4wNTU1NiBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTIyOC10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDEtMTEtMDUiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNy4wNTU1NiwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSBdCn0=",
- "ContentLength": 89243,
- "TransferEncoding": null,
- "Trailer": null,
- "TLS": {
- "Version": 771,
- "HandshakeComplete": true,
- "DidResume": false,
- "CipherSuite": 49199,
- "NegotiatedProtocol": "h2",
- "NegotiatedProtocolIsMutual": true,
- "ServerName": "api.logicahealth.org",
- "PeerCertificates": [
- {
- "Raw": "MIIF3TCCBMWgAwIBAgIQD90iwZZx8t2e0HbfCXZv5jANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjAeFw0yMjAyMTYwMDAwMDBaFw0yMzAzMTcyMzU5NTlaMB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUQI/Eqh9TNDSw9Qjjdpb8Y0XCyFLrvuLe8oE20fV4z9ID+4slqhoQq5ZTddi72a0WCX1JYnAZvwJfSiKlauY6RhrcAlgx8Isspn9exNtEC1PVEcR6PEU+ecEuJM8nMI5HMqUbNNl7KaX66ts1kxDOz/CXropzJrlBMeqmW8Ab9oS0RfMYW4PFiuJxMMa0bTwvPEEsjdK/3P7Oq+kDhRW4mmlWXE5WSqbd4A2z8+qvaiTDT2cn6SRtJCSO21ev8AabXDUHC/cIfmZsi49DkA1Pu3aiLUvpEZoyTbEkYzgszH1e3NgS4Zlo0xAocqJ9A8KamotUcT9gsa330Zj92pwcCAwEAAaOCAu4wggLqMB8GA1UdIwQYMBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3QMB0GA1UdDgQWBBTNnWeVzTbuvsgtvy9p2Fxb8aDBXzAdBgNVHREEFjAUghIqLmxvZ2ljYWhlYWx0aC5vcmcwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA9BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3JsLnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi0xLmNybDATBgNVHSAEDDAKMAgGBmeBDAECATB1BggrBgEFBQcBAQRpMGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0MAwGA1UdEwEB/wQCMAAwggF/BgorBgEEAdZ5AgQCBIIBbwSCAWsBaQB2AOg+0No+9QY1MudXKLyJa8kD08vREWvs62nhd31tBr1uAAABfv/msJMAAAQDAEcwRQIhAME/PPk1wgtTuE+mVrtXkTR3HI1fUU5d9CA/U9ygbJeCAiBRSP9TPOdOijsVVXIxqbXuEkIbs59mK9zu2NbG35QmrwB3ADXPGRu/sWxXvw+tTG1Cy7u2JyAmUeo/4SrvqAPDO9ZMAAABfv/msLYAAAQDAEgwRgIhAN+ehH4lwA0ugf5mR1X1hQpx+7qDlK9h6Lh8jjP+dvkFAiEAmqb2KD4vu9nClgYLX8IOOox0nju77FlviBSR6jir7Y8AdgCzc3cH4YRQ+GOG1gWp3BEJSnktsWcMC4fc8AMOeTalmgAAAX7/5rDRAAAEAwBHMEUCIB+OPU0KICNfeKdgtAqFJRXPFo5Qh0i0eP8GxZZ1xGvBAiEA5tu5bGBk3dpr03FUZkBEt+UmB1j3HFTtE+4q9sbMaOQwDQYJKoZIhvcNAQELBQADggEBABhO7rjaOlTqqQFzLI0PvIvNbFQMKdwXOIxzW+QtCY0pJmmzNFouY9WpyVtjUVu4PxN2MOmqcturyTfn3I5lct+gdZF5ZN5xz1mOwP6Y/QwBd4612Rp55arRHZmOySN6sozY6lUfKRqGWsEOSauBs6msawicHSBaDeWwLFkvFNq9KU2gxAIAZvCINN9jxuS9tod/xYDWXtoqsxKJT5R9WA5jjLxCfg6hT2phcaH4NFMuuLIvVohfcRE0J3EzF01G+A8w2h/vmHBJcng7rV4x9zJDEXzy7FStGyYrPHshfw8Y5ZUtsXabvITKTvNcDTtig+FePUc8hZIQ25JtIB1utTw=",
- "RawTBSCertificate": "MIIExaADAgECAhAP3SLBlnHy3Z7Qdt8Jdm/mMA0GCSqGSIb3DQEBCwUAMEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9uMB4XDTIyMDIxNjAwMDAwMFoXDTIzMDMxNzIzNTk1OVowHTEbMBkGA1UEAwwSKi5sb2dpY2FoZWFsdGgub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQABo4IC7jCCAuowHwYDVR0jBBgwFoAUWaRmBlKge5WSPKOUByeWdFv5PdAwHQYDVR0OBBYEFM2dZ5XNNu6+yC2/L2nYXFvxoMFfMB0GA1UdEQQWMBSCEioubG9naWNhaGVhbHRoLm9yZzAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMHUGCCsGAQUFBwEBBGkwZzAtBggrBgEFBQcwAYYhaHR0cDovL29jc3Auc2NhMWIuYW1hem9udHJ1c3QuY29tMDYGCCsGAQUFBzAChipodHRwOi8vY3J0LnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi5jcnQwDAYDVR0TAQH/BAIwADCCAX8GCisGAQQB1nkCBAIEggFvBIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQAB",
- "RawSubject": "MB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZw==",
- "RawIssuer": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "Signature": "GE7uuNo6VOqpAXMsjQ+8i81sVAwp3Bc4jHNb5C0JjSkmabM0Wi5j1anJW2NRW7g/E3Yw6apy26vJN+fcjmVy36B1kXlk3nHPWY7A/pj9DAF3jrXZGnnlqtEdmY7JI3qyjNjqVR8pGoZawQ5Jq4GzqaxrCJwdIFoN5bAsWS8U2r0pTaDEAgBm8Ig032PG5L22h3/FgNZe2iqzEolPlH1YDmOMvEJ+DqFPamFxofg0Uy64si9WiF9xETQncTMXTUb4DzDaH++YcElyeDutXjH3MkMRfPLsVK0bJis8eyF/DxjllS2xdpu8hMpO81wNO2KD4V49RzyFkhDbkm0gHW61PA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26896718084987105712424649359497857781939776872717468683978155637746257215499021470349970988339566575676760846885076831729531027507529066970870403310324380393417735893022072179494775167564421874325236796705165007524050504302380060458697401950754660880328298733571850499514448029271466007480105805347771100750817823875907895773106342710116763756368148402141779264674889033245108376215416210306416743606177394777918692206509394288953263325831505326093688372090049902223282179991822050258371230607553730263316519439064647844893197691900489801227745237518700641825406379579419156372088488971079841452780233494646796756743",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 21086622482032331400955200856357498854,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": null,
- "Organization": null,
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "*.logicahealth.org",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "*.logicahealth.org"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2022-02-16T00:00:00Z",
- "NotAfter": "2023-03-17T23:59:59Z",
- "KeyUsage": 5,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3Q"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBTNnWeVzTbuvsgtvy9p2Fxb8aDBXw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 17
- ],
- "Critical": false,
- "Value": "MBSCEioubG9naWNhaGVhbHRoLm9yZw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIFoA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 37
- ],
- "Critical": false,
- "Value": "MBQGCCsGAQUFBwMBBggrBgEFBQcDAg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAA="
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 4,
- 1,
- 11129,
- 2,
- 4,
- 2
- ],
- "Critical": false,
- "Value": "BIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": [
- 1,
- 2
- ],
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": false,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "zZ1nlc027r7ILb8vadhcW/GgwV8=",
- "AuthorityKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "OCSPServer": [
- "http://ocsp.sca1b.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.sca1b.amazontrust.com/sca1b.crt"
- ],
- "DNSNames": [
- "*.logicahealth.org"
- ],
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.sca1b.amazontrust.com/sca1b-1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIESTCCAzGgAwIBAgITBn+UV4WH6Kx33rJTMlu8mYtWDTANBgkqhkiG9w0BAQsFADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1MTAyMjAwMDAwMFoXDTI1MTAxOTAwMDAwMFowRjELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEVMBMGA1UECxMMU2VydmVyIENBIDFCMQ8wDQYDVQQDEwZBbWF6b24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCThZn3c68asg3Wuw6MLAd5tES6BIoSMzoKcG5blPVo+sDORrMd4f2AbnZcMzPa43j4wNxhplty6aUKk4T1qe9BOwKFjwK6zmxxLVYo7bHViXsPlJ6qOMpFge5blDP+18x+B26A0piiQOuPkfyDyeR4xQghfj66Yo19V+emU3nazfvpFA+ROz6WoVmB5x+F2pV8xeKNR7u6azDdU5YVX1TawprmxRC1+WsAYmz6qP+z8ArDITC2FMVy2fw0IjKOtEXc/VfmtTFch5+AfGYMGMqqvJ6LcXiAhqG5TI+Dr0RtM88k+8XUBCeQ8IGKuANaL7TiItKZYxK1MMuTJtV9IblAgMBAAGjggE7MIIBNzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUWaRmBlKge5WSPKOUByeWdFv5PdAwHwYDVR0jBBgwFoAUhBjMhTTsvAyUlC4IWZzHshBOCggwewYIKwYBBQUHAQEEbzBtMC8GCCsGAQUFBzABhiNodHRwOi8vb2NzcC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbTA6BggrBgEFBQcwAoYuaHR0cDovL2NydC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbS9yb290Y2ExLmNlcjA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMA0GCSqGSIb3DQEBCwUAA4IBAQCFkr41u3nPo4FCHOTjY3NTOVI159Gt/a6ZiqyJEi+752+a1U5y6iAwYfmXss2lJwJFqMp2PphKg5625kXg8kP2CN5t6G7bMQcT8C8xDZNtYTd7WPD8UZiRKAJPBXa30/AbwuZe0GaFEQ8ugcYQgSn+IGBI8/LwhBNTZTUVEWuCUUBVV18YtbAiPq3yXqMB48Oz+ctBWuZSkbvkNodPLamkB2g1upRyzQ7qDn1X8nn8N8V7YJ6y68AtkHcNSRAnpTitxBKjtKPISLMVCx7i4hncxHZSyLyKQXhw2W2Xs0qLeC1etA+jTGDK4UfLeC0SF7FSi8o5LL21L8IzApar2pR/",
- "RawTBSCertificate": "MIIDMaADAgECAhMGf5RXhYforHfeslMyW7yZi1YNMA0GCSqGSIb3DQEBCwUAMDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDEwHhcNMTUxMDIyMDAwMDAwWhcNMjUxMDE5MDAwMDAwWjBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJOFmfdzrxqyDda7DowsB3m0RLoEihIzOgpwbluU9Wj6wM5Gsx3h/YBudlwzM9rjePjA3GGmW3LppQqThPWp70E7AoWPArrObHEtVijtsdWJew+Unqo4ykWB7luUM/7XzH4HboDSmKJA64+R/IPJ5HjFCCF+PrpijX1X56ZTedrN++kUD5E7PpahWYHnH4XalXzF4o1Hu7prMN1TlhVfVNrCmubFELX5awBibPqo/7PwCsMhMLYUxXLZ/DQiMo60Rdz9V+a1MVyHn4B8ZgwYyqq8notxeICGoblMj4OvRG0zzyT7xdQEJ5DwgYq4A1ovtOIi0pljErUwy5Mm1X0huUCAwEAAaOCATswggE3MBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBRZpGYGUqB7lZI8o5QHJ5Z0W/k90DAfBgNVHSMEGDAWgBSEGMyFNOy8DJSULghZnMeyEE4KCDB7BggrBgEFBQcBAQRvMG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2VyMD8GA1UdHwQ4MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmwwEwYDVR0gBAwwCjAIBgZngQwBAgE=",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwk4WZ93OvGrIN1rsOjCwHebREugSKEjM6CnBuW5T1aPrAzkazHeH9gG52XDMz2uN4+MDcYaZbcumlCpOE9anvQTsChY8Cus5scS1WKO2x1Yl7D5SeqjjKRYHuW5Qz/tfMfgdugNKYokDrj5H8g8nkeMUIIX4+umKNfVfnplN52s376RQPkTs+lqFZgecfhdqVfMXijUe7umsw3VOWFV9U2sKa5sUQtflrAGJs+qj/s/AKwyEwthTFctn8NCIyjrRF3P1X5rUxXIefgHxmDBjKqryei3F4gIahuUyPg69EbTPPJPvF1AQnkPCBirgDWi+04iLSmWMStTDLkybVfSG5QIDAQAB",
- "RawSubject": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "RawIssuer": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "Signature": "hZK+Nbt5z6OBQhzk42NzUzlSNefRrf2umYqsiRIvu+dvmtVOcuogMGH5l7LNpScCRajKdj6YSoOetuZF4PJD9gjebehu2zEHE/AvMQ2TbWE3e1jw/FGYkSgCTwV2t9PwG8LmXtBmhREPLoHGEIEp/iBgSPPy8IQTU2U1FRFrglFAVVdfGLWwIj6t8l6jAePDs/nLQVrmUpG75DaHTy2ppAdoNbqUcs0O6g59V/J5/DfFe2CesuvALZB3DUkQJ6U4rcQSo7SjyEizFQse4uIZ3MR2Usi8ikF4cNltl7NKi3gtXrQPo0xgyuFHy3gtEhexUovKOSy9tS/CMwKWq9qUfw==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "24528737555851895213919827617064808536856788789868126310716752303420041319710819680867697306230985630039655096548324364189962675576756038921107965025585889330528490649228935527969954506874750514159926943451238689552458142167021149788529783891257271028002485075630471793111207960868638365698705018555597520367289025831586046483446904825820575805338475813865444295353094097022678376192149453480223428943386514159000527368947588174705227657134217583008630047462959260157651883088072156905420231950318110240318878613016990846576820326568049365612395397183597930457965295993595011597251067348997341253617591444999389873893",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918209630989264145272943054026349679957517,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-10-22T00:00:00Z",
- "NotAfter": "2025-10-19T00:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAYBAf8CAQA="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBRZpGYGUqB7lZI8o5QHJ5Z0W/k90A=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFIQYzIU07LwMlJQuCFmcx7IQTgoI"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmw="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": 0,
- "MaxPathLenZero": true,
- "SubjectKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "AuthorityKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "OCSPServer": [
- "http://ocsp.rootca1.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootca1.amazontrust.com/rootca1.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootca1.amazontrust.com/rootca1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIEkjCCA3qgAwIBAgITBn+USionzfP6wq4rAfkI7rnExjANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE1MDUyNTEyMDAwMFoXDTM3MTIzMTAxMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaOCATEwggEtMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSEGMyFNOy8DJSULghZnMeyEE4KCDAfBgNVHSMEGDAWgBScXwDfqgHXMCs4iKK4bUqc8hGRgzB4BggrBgEFBQcBAQRsMGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2VyMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3JsMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAYjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "RawTBSCertificate": "MIIDeqADAgECAhMGf5RKKifN8/rCrisB+QjuucTGMA0GCSqGSIb3DQEBCwUAMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwHhcNMTUwNTI1MTIwMDAwWhcNMzcxMjMxMDEwMDAwWjA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQABo4IBMTCCAS0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMB8GA1UdIwQYMBaAFJxfAN+qAdcwKziIorhtSpzyEZGDMHgGCCsGAQUFBwEBBGwwajAuBggrBgEFBQcwAYYiaHR0cDovL29jc3Aucm9vdGcyLmFtYXpvbnRydXN0LmNvbTA4BggrBgEFBQcwAoYsaHR0cDovL2NydC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jZXIwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2NybC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jcmwwEQYDVR0gBAowCDAGBgRVHSAA",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQAB",
- "RawSubject": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "RawIssuer": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "Signature": "YjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "22529839904807742196558773392430766620630713202204326167346456925862066285712069978308045976033918808540171076811098215136401323342247576789054764683787147408289170989302937775178809187827657352584557953877946352196797789035355954596527030584944622221752357105572088106020206921431118198373122638305846252087992561841631797199384157902018140720267433956687491591657652730221337591680012205319549572614035105482287002884850178224609018864719685310905426619874727796905080238179726224664042154200651710137931048812546957419686875805576245376866031854569863410951649630469236463991472642618512857920826701027482532358669",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918191876577076464031512351042010504348870,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-05-25T12:00:00Z",
- "NotAfter": "2037-12-31T01:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBSEGMyFNOy8DJSULghZnMeyEE4KCA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFJxfAN+qAdcwKziIorhtSpzyEZGD"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "AuthorityKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "OCSPServer": [
- "http://ocsp.rootg2.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootg2.amazontrust.com/rootg2.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootg2.amazontrust.com/rootg2.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- },
- {
- "Raw": "MIIEdTCCA12gAwIBAgIJAKcOSkw0grd/MA0GCSqGSIb3DQEBCwUAMGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wOTA5MDIwMDAwMDBaFw0zNDA2MjgxNzM5MTZaMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDDrEKvlO4vW+GZdfjohTsR8/y8+fIBNtKTrID30892t2OGPZNmCom15cAICyL1l/9of5JUOG52kbUpqQ4XHj2C0NTm/2yEnZtvMaVq4rtnQU68/7JuMauh2WLmo7WJSJR1b/JaCTcFOD2oR0FMNnngRoOt+OQFodSk7PQ5E751bWAHDLUu57fa4657wx+UX2wmDPE1kCK4DMNEffud6QZW0CzyyRpqbn3oUYSXxmTqM6bam17jQuug0DuDPfR+uxa40l2ZvOgdFFRjKWcIfeAg5JQ4W2bHO7ZOphQazJ1FTfhy/HIrImzJ9ZVGif/L4qL8RVHHVAYBeFAlU5i38FAgMBAAGjgfAwge0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMB8GA1UdIwQYMBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjnME8GCCsGAQUFBwEBBEMwQTAcBggrBgEFBQcwAYYQaHR0cDovL28uc3MyLnVzLzAhBggrBgEFBQcwAoYVaHR0cDovL3guc3MyLnVzL3guY2VyMCYGA1UdHwQfMB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQELBQADggEBACMd44pXyn3pF3lM8R5V/cxTbj5HD9/GVfKyBDbtgB9TxF00KGu+x1X8Z+rLP3+QsjPNG1gQggL4+C/1E2DUBc7xgQjB3ad1l08YuW3e95ORCLp+QCztweq7dp4zBncdDQh/U90bZKuCJ/Fp1U1ervShw3WnWEQt8jxwmKy6abaVd38PMV4s/KCHOkdp8Hlf9BRUpJVeEXgSYCfOn8J3/yNTd126/+pZ59vPr5KW7ySaNRB6nJHGDn2Z9j8Z3/VyVOEVqQdZe4O/Ui5GjLIAZHYcSNPYeehuVsyuLAOQ1xk4meTKCRlb/weWsKh/NEnfVqn3sF/tM+2MR7cwA130A4w=",
- "RawTBSCertificate": "MIIDXaADAgECAgkApw5KTDSCt38wDQYJKoZIhvcNAQELBQAwaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA5MDkwMjAwMDAwMFoXDTM0MDYyODE3MzkxNlowgZgxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaOB8DCB7TAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUnF8A36oB1zArOIiiuG1KnPIRkYMwHwYDVR0jBBgwFoAUv1+30c7dH4b0W1Ws3NcQwg6piOcwTwYIKwYBBQUHAQEEQzBBMBwGCCsGAQUFBzABhhBodHRwOi8vby5zczIudXMvMCEGCCsGAQUFBzAChhVodHRwOi8veC5zczIudXMveC5jZXIwJgYDVR0fBB8wHTAboBmgF4YVaHR0cDovL3Muc3MyLnVzL3IuY3JsMBEGA1UdIAQKMAgwBgYEVR0gAA==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Qw6xCr5TuL1vhmXX46IU7EfP8vPnyATbSk6yA99PPdrdjhj2TZgqJteXACAsi9Zf/aH+SVDhudpG1KakOFx49gtDU5v9shJ2bbzGlauK7Z0FOvP+ybjGrodli5qO1iUiUdW/yWgk3BTg9qEdBTDZ54EaDrfjkBaHUpOz0ORO+dW1gBwy1Lue32uOue8MflF9sJgzxNZAiuAzDRH37nekGVtAs8skaam596FGEl8Zk6jOm2pte40LroNA7gz30frsWuNJdmbzoHRRUYylnCH3gIOSUOFtmxzu2TqYUGsydRU34cvxyKyJsyfWVRon/y+Ki/EVRx1QGAXhQJVOYt/BQIDAQAB",
- "RawSubject": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "RawIssuer": "MGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==",
- "Signature": "Ix3jilfKfekXeUzxHlX9zFNuPkcP38ZV8rIENu2AH1PEXTQoa77HVfxn6ss/f5CyM80bWBCCAvj4L/UTYNQFzvGBCMHdp3WXTxi5bd73k5EIun5ALO3B6rt2njMGdx0NCH9T3Rtkq4In8WnVTV6u9KHDdadYRC3yPHCYrLpptpV3fw8xXiz8oIc6R2nweV/0FFSklV4ReBJgJ86fwnf/I1N3Xbr/6lnn28+vkpbvJJo1EHqckcYOfZn2Pxnf9XJU4RWpB1l7g79SLkaMsgBkdhxI09h56G5WzK4sA5DXGTiZ5MoJGVv/B5awqH80Sd9WqfewX+0z7YxHtzADXfQDjA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26894789576491863019171445242018370132029525033879210664513024255165308689836081694724912552986436241602345929261854187816625921774943728567119070351838976265193901442169339571326613928339955106648223197498035701437846440970934704192382084561469274550003268570741310868032789070264835003681318445644941362885752628282968349509706358865971392279088395067847314610178969555804359319567178098112935181143559364150874524817692694181296058297355335204675211145990489303168553611700020424738364579606192390834705213026692659672388567853246354560726855054573503174641583891075106464210711468427779853334564691648681991700229",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 12037640545166866303,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": [
- "Starfield Class 2 Certification Authority"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Starfield Class 2 Certification Authority"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2009-09-02T00:00:00Z",
- "NotAfter": "2034-06-28T17:39:16Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBScXwDfqgHXMCs4iKK4bUqc8hGRgw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjn"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MEEwHAYIKwYBBQUHMAGGEGh0dHA6Ly9vLnNzMi51cy8wIQYIKwYBBQUHMAKGFWh0dHA6Ly94LnNzMi51cy94LmNlcg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "AuthorityKeyId": "v1+30c7dH4b0W1Ws3NcQwg6piOc=",
- "OCSPServer": [
- "http://o.ss2.us/"
- ],
- "IssuingCertificateURL": [
- "http://x.ss2.us/x.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://s.ss2.us/r.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- }
- ],
- "VerifiedChains": null,
- "SignedCertificateTimestamps": null,
- "OCSPResponse": null,
- "TLSUnique": "KGYau2ehxG6kGY5o"
- }
- },
- "ErrType": "",
- "ErrMsg": ""
- },
- {
- "Request": {
- "Method": "GET",
- "URL": {
- "Scheme": "https",
- "Opaque": "",
- "User": null,
- "Host": "api.logicahealth.org",
- "Path": "/fastenhealth/data",
- "RawPath": "",
- "ForceQuery": false,
- "RawQuery": "_getpages=2b87e9ea-0af9-429f-abf2-0a72b2e33ad1\u0026_getpagesoffset=200\u0026_count=50\u0026_pretty=true\u0026_bundletype=searchset",
- "Fragment": "",
- "RawFragment": ""
- },
- "Header": {},
- "Body": ""
- },
- "Response": {
- "Status": "200 OK",
- "StatusCode": 200,
- "Proto": "HTTP/2.0",
- "ProtoMajor": 2,
- "ProtoMinor": 0,
- "Header": {
- "Access-Control-Allow-Headers": [
- "X-FHIR-Starter,authorization,Prefer,Origin,Accept,X-Requested-With,Content-Type,Access-Control-Request-Method,Access-Control-Request-Headers"
- ],
- "Access-Control-Allow-Methods": [
- "POST, PUT, GET, OPTIONS, DELETE"
- ],
- "Access-Control-Allow-Origin": [
- "*"
- ],
- "Access-Control-Expose-Headers": [
- "Location, Content-Location"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
- ],
- "Content-Length": [
- "87217"
- ],
- "Content-Location": [
- "https://api.logicahealth.org/fastenhealth/data/Bundle/2b87e9ea-0af9-429f-abf2-0a72b2e33ad1"
- ],
- "Content-Type": [
- "application/fhir+json;charset=UTF-8"
- ],
- "Date": [
- "Tue, 27 Sep 2022 03:13:31 GMT"
- ],
- "Expires": [
- "0"
- ],
- "Last-Modified": [
- "Tue, 27 Sep 2022 03:12:40 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-Frame-Options": [
- "DENY"
- ],
- "X-Powered-By": [
- "HAPI FHIR 5.2.0 REST Server (FHIR Server; FHIR 4.0.1/R4)"
- ],
- "X-Request-Id": [
- "41GjEFhU95MyRNoR"
- ],
- "X-Xss-Protection": [
- "1; mode=block"
- ]
- },
- "Body": "ewogICJyZXNvdXJjZVR5cGUiOiAiQnVuZGxlIiwKICAiaWQiOiAiMmI4N2U5ZWEtMGFmOS00MjlmLWFiZjItMGE3MmIyZTMzYWQxIiwKICAibWV0YSI6IHsKICAgICJsYXN0VXBkYXRlZCI6ICIyMDIyLTA5LTI3VDAzOjEyOjQwLjAwMCswMDowMCIKICB9LAogICJ0eXBlIjogInNlYXJjaHNldCIsCiAgImxpbmsiOiBbIHsKICAgICJyZWxhdGlvbiI6ICJzZWxmIiwKICAgICJ1cmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YT9fZ2V0cGFnZXM9MmI4N2U5ZWEtMGFmOS00MjlmLWFiZjItMGE3MmIyZTMzYWQxJl9nZXRwYWdlc29mZnNldD0yMDAmX2NvdW50PTUwJl9wcmV0dHk9dHJ1ZSZfYnVuZGxldHlwZT1zZWFyY2hzZXQiCiAgfSwgewogICAgInJlbGF0aW9uIjogIm5leHQiLAogICAgInVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhP19nZXRwYWdlcz0yYjg3ZTllYS0wYWY5LTQyOWYtYWJmMi0wYTcyYjJlMzNhZDEmX2dldHBhZ2Vzb2Zmc2V0PTI1MCZfY291bnQ9NTAmX3ByZXR0eT10cnVlJl9idW5kbGV0eXBlPXNlYXJjaHNldCIKICB9LCB7CiAgICAicmVsYXRpb24iOiAicHJldmlvdXMiLAogICAgInVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhP19nZXRwYWdlcz0yYjg3ZTllYS0wYWY5LTQyOWYtYWJmMi0wYTcyYjJlMzNhZDEmX2dldHBhZ2Vzb2Zmc2V0PTE1MCZfY291bnQ9NTAmX3ByZXR0eT10cnVlJl9idW5kbGV0eXBlPXNlYXJjaHNldCIKICB9IF0sCiAgImVudHJ5IjogWyB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTMxOC1yZXNwaXJhdG9yeXJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTMxOC1yZXNwaXJhdG9yeXJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTEwLTI5OiByZXNwaXJhdG9yeV9yYXRlID0gMjAuMCB7YnJlYXRoc30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0zMTgtcmVzcGlyYXRvcnlyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjkyNzktMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMTAtMjkiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyMC4wLAogICAgICAgICJ1bml0IjogInticmVhdGhzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JyZWF0aHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODAtbGFiIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04MC1sYWIiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA4LTA3LTEwOiBUU0ggU2VyUGwgREwmbHQ7PTAuMDA1IG1VL0wtYUNuYyA9IDIuMjI5IG1jVS9tTDwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtODAtbGFiIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJsYWJvcmF0b3J5IiwKICAgICAgICAgICJkaXNwbGF5IjogIkxhYm9yYXRvcnkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkxhYm9yYXRvcnkiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjExNTgwLTgiLAogICAgICAgICAgImRpc3BsYXkiOiAiVFNIIFNlclBsIERMPD0wLjAwNSBtVS9MLWFDbmMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlRTSCBTZXJQbCBETDw9MC4wMDUgbVUvTC1hQ25jIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDgtMDctMTAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyLjIyOSwKICAgICAgICAidW5pdCI6ICJtY1UvbUwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAibWNVL21MIgogICAgICB9LAogICAgICAicmVmZXJlbmNlUmFuZ2UiOiBbIHsKICAgICAgICAibG93IjogewogICAgICAgICAgInZhbHVlIjogMC40LAogICAgICAgICAgInVuaXQiOiAibWNVL21MIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtY1UvbUwiCiAgICAgICAgfSwKICAgICAgICAiaGlnaCI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDQuMiwKICAgICAgICAgICJ1bml0IjogIm1jVS9tTCIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibWNVL21MIgogICAgICAgIH0sCiAgICAgICAgInR5cGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9yZWZlcmVuY2VyYW5nZS1tZWFuaW5nIiwKICAgICAgICAgICAgImNvZGUiOiAibm9ybWFsIiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0yOTctcmVzcGlyYXRvcnlyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0yOTctcmVzcGlyYXRvcnlyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0wNC0yNDogcmVzcGlyYXRvcnlfcmF0ZSA9IDIwLjAge2JyZWF0aHN9L21pbjwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtMjk3LXJlc3BpcmF0b3J5cmF0ZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI5Mjc5LTEiLAogICAgICAgICAgImRpc3BsYXkiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAicmVzcGlyYXRvcnlfcmF0ZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTI0IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMjAuMCwKICAgICAgICAidW5pdCI6ICJ7YnJlYXRoc30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogInticmVhdGhzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTMwOS1oZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTMwOS1oZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTI4OiBoZWlnaHQgPSAxNjMuMDY4IGNtPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0zMDktaGVpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMDItMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTI4IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTYzLjA2OCwKICAgICAgICAidW5pdCI6ICJjbSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJjbSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMzEwLWhlYXJ0cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMzEwLWhlYXJ0cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMjg6IGhlYXJ0X3JhdGUgPSA3OS4wIHtiZWF0c30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0zMTAtaGVhcnRyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjg4NjctNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWFydF9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWFydF9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMjgiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA3OS4wLAogICAgICAgICJ1bml0IjogIntiZWF0c30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIntiZWF0c30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9Db25kaXRpb24vc21hcnQtQ29uZGl0aW9uLTYwMSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiQ29uZGl0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LUNvbmRpdGlvbi02MDEiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj5UaGlvcHVyaW5lIG1ldGh5bHRyYW5zZmVyYXNlIGRlZmljaWVuY3k8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJjbGluaWNhbFN0YXR1cyI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vY29uZGl0aW9uLWNsaW5pY2FsIiwKICAgICAgICAgICJjb2RlIjogImFjdGl2ZSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJBY3RpdmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkFjdGl2ZSIKICAgICAgfSwKICAgICAgInZlcmlmaWNhdGlvblN0YXR1cyI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vY29uZGl0aW9uLXZlci1zdGF0dXMiLAogICAgICAgICAgImNvZGUiOiAiY29uZmlybWVkIiwKICAgICAgICAgICJkaXNwbGF5IjogIkNvbmZpcm1lZCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQ29uZmlybWVkIgogICAgICB9LAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9zbm9tZWQuaW5mby9zY3QiLAogICAgICAgICAgImNvZGUiOiAiMjM4MDEyMDAzIiwKICAgICAgICAgICJkaXNwbGF5IjogIlRoaW9wdXJpbmUgbWV0aHlsdHJhbnNmZXJhc2UgZGVmaWNpZW5jeSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVGhpb3B1cmluZSBtZXRoeWx0cmFuc2ZlcmFzZSBkZWZpY2llbmN5IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgIm9uc2V0RGF0ZVRpbWUiOiAiMjAwOS0wNy0xOCIKICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTEwOC1sYWIiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTEwOC1sYWIiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA4LTA3LTEwOiBDaG9sZXN0IFNlclBsLW1DbmMgPSAxNjAgbWcvZEw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTEwOC1sYWIiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogImxhYm9yYXRvcnkiLAogICAgICAgICAgImRpc3BsYXkiOiAiTGFib3JhdG9yeSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTGFib3JhdG9yeSIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMjA5My0zIiwKICAgICAgICAgICJkaXNwbGF5IjogIkNob2xlc3QgU2VyUGwtbUNuYyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQ2hvbGVzdCBTZXJQbC1tQ25jIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDgtMDctMTAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxNjAuMCwKICAgICAgICAidW5pdCI6ICJtZy9kTCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJtZy9kTCIKICAgICAgfSwKICAgICAgInJlZmVyZW5jZVJhbmdlIjogWyB7CiAgICAgICAgImxvdyI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDAuMCwKICAgICAgICAgICJ1bml0IjogIm1nL2RMIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtZy9kTCIKICAgICAgICB9LAogICAgICAgICJoaWdoIjogewogICAgICAgICAgInZhbHVlIjogMjAwLjAsCiAgICAgICAgICAidW5pdCI6ICJtZy9kTCIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibWcvZEwiCiAgICAgICAgfSwKICAgICAgICAidHlwZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3JlZmVyZW5jZXJhbmdlLW1lYW5pbmciLAogICAgICAgICAgICAiY29kZSI6ICJub3JtYWwiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTMyNi10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMzI2LXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0xMC0zMDogdGVtcGVyYXR1cmUgPSAzNi45NDQ0NCBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTMyNi10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMTAtMzAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNi45NDQ0NCwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC03Mi1sYWIiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTcyLWxhYiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDgtMDctMTA6IE5pdHJpdGUgVXIgUWwgU3RyaXAgPSBOZWdhdGl2ZSA8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJleHRlbnNpb24iOiBbIHsKICAgICAgICAidXJsIjogImh0dHA6Ly9maGlyLXJlZ2lzdHJ5LnNtYXJ0aGVhbHRoaXQub3JnL1N0cnVjdHVyZURlZmluaXRpb24vbGFicyN2YWx1ZS1yYW5nZSIsCiAgICAgICAgInZhbHVlU3RyaW5nIjogIlBvc2l0aXZlIgogICAgICB9IF0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTcyLWxhYiIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAibGFib3JhdG9yeSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJMYWJvcmF0b3J5IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJMYWJvcmF0b3J5IgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI1ODAyLTQiLAogICAgICAgICAgImRpc3BsYXkiOiAiTml0cml0ZSBVciBRbCBTdHJpcCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTml0cml0ZSBVciBRbCBTdHJpcCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA4LTA3LTEwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlU3RyaW5nIjogIk5lZ2F0aXZlIgogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODktbGFiIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04OS1sYWIiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA4LTA3LTEwOiBNQ0hDIFJCQyBBdXRvLW1DbmMgPSAzMi40IGcvZEw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTg5LWxhYiIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAibGFib3JhdG9yeSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJMYWJvcmF0b3J5IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJMYWJvcmF0b3J5IgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI3ODYtNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJNQ0hDIFJCQyBBdXRvLW1DbmMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIk1DSEMgUkJDIEF1dG8tbUNuYyIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA4LTA3LTEwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzIuNCwKICAgICAgICAidW5pdCI6ICJnL2RMIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogImcvZEwiCiAgICAgIH0sCiAgICAgICJyZWZlcmVuY2VSYW5nZSI6IFsgewogICAgICAgICJsb3ciOiB7CiAgICAgICAgICAidmFsdWUiOiAzMi4wLAogICAgICAgICAgInVuaXQiOiAiZy9kTCIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAiZy9kTCIKICAgICAgICB9LAogICAgICAgICJoaWdoIjogewogICAgICAgICAgInZhbHVlIjogMzYuMCwKICAgICAgICAgICJ1bml0IjogImcvZEwiLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogImcvZEwiCiAgICAgICAgfSwKICAgICAgICAidHlwZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3JlZmVyZW5jZXJhbmdlLW1lYW5pbmciLAogICAgICAgICAgICAiY29kZSI6ICJub3JtYWwiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTMwMi1oZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTMwMi1oZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTI3OiBoZWlnaHQgPSAxNjMuMzIyIGNtPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0zMDItaGVpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMDItMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTI3IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTYzLjMyMiwKICAgICAgICAidW5pdCI6ICJjbSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJjbSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMzMyLXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMzMyLXJlc3BpcmF0b3J5cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMTItMDE6IHJlc3BpcmF0b3J5X3JhdGUgPSAyMC4wIHticmVhdGhzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTMzMi1yZXNwaXJhdG9yeXJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiOTI3OS0xIiwKICAgICAgICAgICJkaXNwbGF5IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInJlc3BpcmF0b3J5X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0xMi0wMSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDIwLjAsCiAgICAgICAgInVuaXQiOiAie2JyZWF0aHN9L21pbiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJ7YnJlYXRoc30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC05Ny1sYWIiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTk3LWxhYiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDgtMDctMTA6IEFMVCBTZXJQbC1jQ25jID0gMTMgVS9MPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC05Ny1sYWIiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogImxhYm9yYXRvcnkiLAogICAgICAgICAgImRpc3BsYXkiOiAiTGFib3JhdG9yeSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTGFib3JhdG9yeSIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMTc0Mi02IiwKICAgICAgICAgICJkaXNwbGF5IjogIkFMVCBTZXJQbC1jQ25jIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJBTFQgU2VyUGwtY0NuYyIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA4LTA3LTEwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTMuMCwKICAgICAgICAidW5pdCI6ICJVL0wiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiVS9MIgogICAgICB9LAogICAgICAicmVmZXJlbmNlUmFuZ2UiOiBbIHsKICAgICAgICAibG93IjogewogICAgICAgICAgInZhbHVlIjogMC4wLAogICAgICAgICAgInVuaXQiOiAiVS9MIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJVL0wiCiAgICAgICAgfSwKICAgICAgICAiaGlnaCI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDQ1LjAsCiAgICAgICAgICAidW5pdCI6ICJVL0wiLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIlUvTCIKICAgICAgICB9LAogICAgICAgICJ0eXBlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvcmVmZXJlbmNlcmFuZ2UtbWVhbmluZyIsCiAgICAgICAgICAgICJjb2RlIjogIm5vcm1hbCIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIk5vcm1hbCBSYW5nZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIk5vcm1hbCBSYW5nZSIKICAgICAgICB9CiAgICAgIH0gXQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMzM1LWJtaSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMzM1LWJtaSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMTItMDE6IGJtaSA9IDM0LjQga2cvbTI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTMzNS1ibWkiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzkxNTYtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJibWkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImJtaSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTEyLTAxIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzQuNCwKICAgICAgICAidW5pdCI6ICJrZy9tMiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZy9tMiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMzAwLWJtaSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMzAwLWJtaSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMjQ6IGJtaSA9IDMzLjcga2cvbTI8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTMwMC1ibWkiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzkxNTYtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJibWkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImJtaSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTA0LTI0IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzMuNywKICAgICAgICAidW5pdCI6ICJrZy9tMiIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZy9tMiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMzI0LWhlYXJ0cmF0ZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMzI0LWhlYXJ0cmF0ZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMTAtMzA6IGhlYXJ0X3JhdGUgPSAyNS4wIHtiZWF0c30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0zMjQtaGVhcnRyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjg4NjctNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWFydF9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJoZWFydF9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMTAtMzAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyNS4wLAogICAgICAgICJ1bml0IjogIntiZWF0c30vbWluIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIntiZWF0c30vbWluIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0zMzQtd2VpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0zMzQtd2VpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0xMi0wMTogd2VpZ2h0ID0gOTEuNTM0OTQga2c8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTMzNC13ZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzE0MS05IiwKICAgICAgICAgICJkaXNwbGF5IjogIndlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAid2VpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMTItMDEiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA5MS41MzQ5NCwKICAgICAgICAidW5pdCI6ICJrZyIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZyIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtNzktbGFiIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC03OS1sYWIiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA4LTA3LTEwOiBOZXV0cm9waGlscyBORnIgQmxkIEF1dG8gPSA1OSAlPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC03OS1sYWIiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogImxhYm9yYXRvcnkiLAogICAgICAgICAgImRpc3BsYXkiOiAiTGFib3JhdG9yeSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTGFib3JhdG9yeSIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiNzcwLTgiLAogICAgICAgICAgImRpc3BsYXkiOiAiTmV1dHJvcGhpbHMgTkZyIEJsZCBBdXRvIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJOZXV0cm9waGlscyBORnIgQmxkIEF1dG8iCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOC0wNy0xMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDU5LjAsCiAgICAgICAgInVuaXQiOiAiJSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICIlIgogICAgICB9LAogICAgICAicmVmZXJlbmNlUmFuZ2UiOiBbIHsKICAgICAgICAibG93IjogewogICAgICAgICAgInZhbHVlIjogNTAuMCwKICAgICAgICAgICJ1bml0IjogIiUiLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIiUiCiAgICAgICAgfSwKICAgICAgICAiaGlnaCI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDc1LjAsCiAgICAgICAgICAidW5pdCI6ICIlIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIlIgogICAgICAgIH0sCiAgICAgICAgInR5cGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9yZWZlcmVuY2VyYW5nZS1tZWFuaW5nIiwKICAgICAgICAgICAgImNvZGUiOiAibm9ybWFsIiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9BbGxlcmd5SW50b2xlcmFuY2Uvc21hcnQtQWxsZXJneUludG9sZXJhbmNlLTI4IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJBbGxlcmd5SW50b2xlcmFuY2UiLAogICAgICAiaWQiOiAic21hcnQtQWxsZXJneUludG9sZXJhbmNlLTI4IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+U2Vuc2l0aXZpdHkgdG8gc3VsZm9uYW1pZGUgYW50aWJhY3RlcmlhbDwvZGl2PiIKICAgICAgfSwKICAgICAgImNsaW5pY2FsU3RhdHVzIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9hbGxlcmd5aW50b2xlcmFuY2UtY2xpbmljYWwiLAogICAgICAgICAgImNvZGUiOiAiYWN0aXZlIgogICAgICAgIH0gXQogICAgICB9LAogICAgICAidmVyaWZpY2F0aW9uU3RhdHVzIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9hbGxlcmd5aW50b2xlcmFuY2UtdmVyaWZpY2F0aW9uIiwKICAgICAgICAgICJjb2RlIjogImNvbmZpcm1lZCIKICAgICAgICB9IF0KICAgICAgfSwKICAgICAgImNhdGVnb3J5IjogWyAibWVkaWNhdGlvbiIgXSwKICAgICAgImNyaXRpY2FsaXR5IjogImxvdyIsCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3J4bmF2Lm5sbS5uaWguZ292L1JFU1QvTmRmcnQiLAogICAgICAgICAgImNvZGUiOiAiTjAwMDAxNzU1MDMiLAogICAgICAgICAgImRpc3BsYXkiOiAic3VsZm9uYW1pZGUgYW50aWJhY3RlcmlhbCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAic3VsZm9uYW1pZGUgYW50aWJhY3RlcmlhbCIKICAgICAgfSwKICAgICAgInBhdGllbnQiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJyZWFjdGlvbiI6IFsgewogICAgICAgICJtYW5pZmVzdGF0aW9uIjogWyB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvL3NjdCIsCiAgICAgICAgICAgICJjb2RlIjogIjI3MTgwNzAwMyIsCiAgICAgICAgICAgICJkaXNwbGF5IjogInNraW4gcmFzaCIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogInNraW4gcmFzaCIKICAgICAgICB9IF0sCiAgICAgICAgInNldmVyaXR5IjogIm1pbGQiCiAgICAgIH0gXQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODItbGFiIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04Mi1sYWIiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA4LTA3LTEwOiBTcCBHciBVciBTdHJpcCA9IDEuMDIyIDwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtODItbGFiIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJsYWJvcmF0b3J5IiwKICAgICAgICAgICJkaXNwbGF5IjogIkxhYm9yYXRvcnkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkxhYm9yYXRvcnkiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjU4MTEtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJTcCBHciBVciBTdHJpcCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiU3AgR3IgVXIgU3RyaXAiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOC0wNy0xMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDEuMDIyLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvTWVkaWNhdGlvblJlcXVlc3Qvc21hcnQtTWVkaWNhdGlvblJlcXVlc3QtMTM5IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJNZWRpY2F0aW9uUmVxdWVzdCIsCiAgICAgICJpZCI6ICJzbWFydC1NZWRpY2F0aW9uUmVxdWVzdC0xMzkiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj5MaXNpbm9wcmlsIDIwIE1HIE9yYWwgVGFibGV0IChyeG5vcm06IDMxNDA3Nyk8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJzdGF0dXMiOiAiYWN0aXZlIiwKICAgICAgImludGVudCI6ICJvcmRlciIsCiAgICAgICJtZWRpY2F0aW9uQ29kZWFibGVDb25jZXB0IjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ubG0ubmloLmdvdi9yZXNlYXJjaC91bWxzL3J4bm9ybSIsCiAgICAgICAgICAiY29kZSI6ICIzMTQwNzciLAogICAgICAgICAgImRpc3BsYXkiOiAiTGlzaW5vcHJpbCAyMCBNRyBPcmFsIFRhYmxldCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTGlzaW5vcHJpbCAyMCBNRyBPcmFsIFRhYmxldCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJkb3NhZ2VJbnN0cnVjdGlvbiI6IFsgewogICAgICAgICJ0ZXh0IjogIjEgZGFpbHkiLAogICAgICAgICJ0aW1pbmciOiB7CiAgICAgICAgICAicmVwZWF0IjogewogICAgICAgICAgICAiYm91bmRzUGVyaW9kIjogewogICAgICAgICAgICAgICJzdGFydCI6ICIyMDA4LTA4LTEzIgogICAgICAgICAgICB9LAogICAgICAgICAgICAiZnJlcXVlbmN5IjogMSwKICAgICAgICAgICAgInBlcmlvZCI6IDEsCiAgICAgICAgICAgICJwZXJpb2RVbml0IjogImQiCiAgICAgICAgICB9CiAgICAgICAgfQogICAgICB9IF0sCiAgICAgICJkaXNwZW5zZVJlcXVlc3QiOiB7CiAgICAgICAgIm51bWJlck9mUmVwZWF0c0FsbG93ZWQiOiAxLAogICAgICAgICJxdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDkwLjAsCiAgICAgICAgICAidW5pdCI6ICJ7dGFibGV0fSIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAie3RhYmxldH0iCiAgICAgICAgfSwKICAgICAgICAiZXhwZWN0ZWRTdXBwbHlEdXJhdGlvbiI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDkwLAogICAgICAgICAgInVuaXQiOiAiZGF5cyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAiZCIKICAgICAgICB9CiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTcwLWxhYiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtNzAtbGFiIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOC0wNy0xMDogUkJDICMvYXJlYSBVcm5TIEhQRiA9IDAgL1tIUEZdPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC03MC1sYWIiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogImxhYm9yYXRvcnkiLAogICAgICAgICAgImRpc3BsYXkiOiAiTGFib3JhdG9yeSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTGFib3JhdG9yeSIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMTM5NDUtMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJSQkMgIy9hcmVhIFVyblMgSFBGIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJSQkMgIy9hcmVhIFVyblMgSFBGIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDgtMDctMTAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAwLjAsCiAgICAgICAgInVuaXQiOiAiL1tIUEZdIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIi9bSFBGXSIKICAgICAgfSwKICAgICAgInJlZmVyZW5jZVJhbmdlIjogWyB7CiAgICAgICAgImxvdyI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDAuMCwKICAgICAgICAgICJ1bml0IjogIi9bSFBGXSIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAiL1tIUEZdIgogICAgICAgIH0sCiAgICAgICAgImhpZ2giOiB7CiAgICAgICAgICAidmFsdWUiOiAyLjAsCiAgICAgICAgICAidW5pdCI6ICIvW0hQRl0iLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIi9bSFBGXSIKICAgICAgICB9LAogICAgICAgICJ0eXBlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvcmVmZXJlbmNlcmFuZ2UtbWVhbmluZyIsCiAgICAgICAgICAgICJjb2RlIjogIm5vcm1hbCIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIk5vcm1hbCBSYW5nZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIk5vcm1hbCBSYW5nZSIKICAgICAgICB9CiAgICAgIH0gXQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTA2LWxhYiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTA2LWxhYiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDgtMDctMTA6IE11Y291cyBUaHJlYWRzIFVyblMgUWwgTWljcm8gPSBPY2Nhc2lvbmFsIDwvZGl2PiIKICAgICAgfSwKICAgICAgImV4dGVuc2lvbiI6IFsgewogICAgICAgICJ1cmwiOiAiaHR0cDovL2ZoaXItcmVnaXN0cnkuc21hcnRoZWFsdGhpdC5vcmcvU3RydWN0dXJlRGVmaW5pdGlvbi9sYWJzI3ZhbHVlLXJhbmdlIiwKICAgICAgICAidmFsdWVTdHJpbmciOiAiTWFueSIKICAgICAgfSBdLAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xMDYtbGFiIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJsYWJvcmF0b3J5IiwKICAgICAgICAgICJkaXNwbGF5IjogIkxhYm9yYXRvcnkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkxhYm9yYXRvcnkiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgyNDctOSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJNdWNvdXMgVGhyZWFkcyBVcm5TIFFsIE1pY3JvIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJNdWNvdXMgVGhyZWFkcyBVcm5TIFFsIE1pY3JvIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDgtMDctMTAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVTdHJpbmciOiAiT2NjYXNpb25hbCIKICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTk1LWxhYiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtOTUtbGFiIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOC0wNy0xMDogU29kaXVtIFNlclBsLXNDbmMgPSAxMzkgbW1vbC9MPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC05NS1sYWIiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogImxhYm9yYXRvcnkiLAogICAgICAgICAgImRpc3BsYXkiOiAiTGFib3JhdG9yeSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTGFib3JhdG9yeSIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMjk1MS0yIiwKICAgICAgICAgICJkaXNwbGF5IjogIlNvZGl1bSBTZXJQbC1zQ25jIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJTb2RpdW0gU2VyUGwtc0NuYyIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA4LTA3LTEwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTM5LjAsCiAgICAgICAgInVuaXQiOiAibW1vbC9MIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIm1tb2wvTCIKICAgICAgfSwKICAgICAgInJlZmVyZW5jZVJhbmdlIjogWyB7CiAgICAgICAgImxvdyI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDEzNS4wLAogICAgICAgICAgInVuaXQiOiAibW1vbC9MIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbW9sL0wiCiAgICAgICAgfSwKICAgICAgICAiaGlnaCI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDE0NS4wLAogICAgICAgICAgInVuaXQiOiAibW1vbC9MIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbW9sL0wiCiAgICAgICAgfSwKICAgICAgICAidHlwZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3JlZmVyZW5jZXJhbmdlLW1lYW5pbmciLAogICAgICAgICAgICAiY29kZSI6ICJub3JtYWwiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTMwMS1veHlnZW5zYXR1cmF0aW9uIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0zMDEtb3h5Z2Vuc2F0dXJhdGlvbiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMDQtMjQ6IG94eWdlbl9zYXR1cmF0aW9uID0gMTAwLjAgJXtIZW1vZ2xvYmluU2F0dXJhdGlvbn08L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTMwMS1veHlnZW5zYXR1cmF0aW9uIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjI3MTAtMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJveHlnZW5fc2F0dXJhdGlvbiIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAib3h5Z2VuX3NhdHVyYXRpb24iCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0wNC0yNCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDEwMC4wLAogICAgICAgICJ1bml0IjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIiV7SGVtb2dsb2JpblNhdHVyYXRpb259IgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0zMTctaGVhcnRyYXRlIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0zMTctaGVhcnRyYXRlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0xMC0yOTogaGVhcnRfcmF0ZSA9IDcyLjAge2JlYXRzfS9taW48L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTMxNy1oZWFydHJhdGUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODg2Ny00IiwKICAgICAgICAgICJkaXNwbGF5IjogImhlYXJ0X3JhdGUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlYXJ0X3JhdGUiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOS0xMC0yOSIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDcyLjAsCiAgICAgICAgInVuaXQiOiAie2JlYXRzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JlYXRzfS9taW4iCiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTc3LWxhYiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtNzctbGFiIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOC0wNy0xMDogSHlhbGluZSBDYXN0cyAjL2FyZWEgVXJuUyBMUEYgPSA5IC9bTFBGXTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtNzctbGFiIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJsYWJvcmF0b3J5IiwKICAgICAgICAgICJkaXNwbGF5IjogIkxhYm9yYXRvcnkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkxhYm9yYXRvcnkiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjU3OTYtOCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJIeWFsaW5lIENhc3RzICMvYXJlYSBVcm5TIExQRiIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiSHlhbGluZSBDYXN0cyAjL2FyZWEgVXJuUyBMUEYiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOC0wNy0xMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDkuMCwKICAgICAgICAidW5pdCI6ICIvW0xQRl0iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiL1tMUEZdIgogICAgICB9LAogICAgICAicmVmZXJlbmNlUmFuZ2UiOiBbIHsKICAgICAgICAibG93IjogewogICAgICAgICAgInZhbHVlIjogMC4wLAogICAgICAgICAgInVuaXQiOiAiL1tMUEZdIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIvW0xQRl0iCiAgICAgICAgfSwKICAgICAgICAiaGlnaCI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDIuMCwKICAgICAgICAgICJ1bml0IjogIi9bTFBGXSIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAiL1tMUEZdIgogICAgICAgIH0sCiAgICAgICAgInR5cGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9yZWZlcmVuY2VyYW5nZS1tZWFuaW5nIiwKICAgICAgICAgICAgImNvZGUiOiAibm9ybWFsIiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9NZWRpY2F0aW9uUmVxdWVzdC9zbWFydC1NZWRpY2F0aW9uUmVxdWVzdC0xNDIiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk1lZGljYXRpb25SZXF1ZXN0IiwKICAgICAgImlkIjogInNtYXJ0LU1lZGljYXRpb25SZXF1ZXN0LTE0MiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPkh5ZHJvY2hsb3JvdGhpYXppZGUgNTAgTUcgT3JhbCBUYWJsZXQgKHJ4bm9ybTogMTk3NzcwKTwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJhY3RpdmUiLAogICAgICAiaW50ZW50IjogIm9yZGVyIiwKICAgICAgIm1lZGljYXRpb25Db2RlYWJsZUNvbmNlcHQiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3Lm5sbS5uaWguZ292L3Jlc2VhcmNoL3VtbHMvcnhub3JtIiwKICAgICAgICAgICJjb2RlIjogIjE5Nzc3MCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJIeWRyb2NobG9yb3RoaWF6aWRlIDUwIE1HIE9yYWwgVGFibGV0IgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJIeWRyb2NobG9yb3RoaWF6aWRlIDUwIE1HIE9yYWwgVGFibGV0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImRvc2FnZUluc3RydWN0aW9uIjogWyB7CiAgICAgICAgInRleHQiOiAiMSBkYWlseSIsCiAgICAgICAgInRpbWluZyI6IHsKICAgICAgICAgICJyZXBlYXQiOiB7CiAgICAgICAgICAgICJib3VuZHNQZXJpb2QiOiB7CiAgICAgICAgICAgICAgInN0YXJ0IjogIjIwMDgtMDgtMTQiCiAgICAgICAgICAgIH0sCiAgICAgICAgICAgICJmcmVxdWVuY3kiOiAxLAogICAgICAgICAgICAicGVyaW9kIjogMSwKICAgICAgICAgICAgInBlcmlvZFVuaXQiOiAiZCIKICAgICAgICAgIH0KICAgICAgICB9CiAgICAgIH0gXSwKICAgICAgImRpc3BlbnNlUmVxdWVzdCI6IHsKICAgICAgICAibnVtYmVyT2ZSZXBlYXRzQWxsb3dlZCI6IDEsCiAgICAgICAgInF1YW50aXR5IjogewogICAgICAgICAgInZhbHVlIjogOTAuMCwKICAgICAgICAgICJ1bml0IjogInt0YWJsZXR9IiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJ7dGFibGV0fSIKICAgICAgICB9LAogICAgICAgICJleHBlY3RlZFN1cHBseUR1cmF0aW9uIjogewogICAgICAgICAgInZhbHVlIjogOTAsCiAgICAgICAgICAidW5pdCI6ICJkYXlzIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJkIgogICAgICAgIH0KICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvTWVkaWNhdGlvblJlcXVlc3Qvc21hcnQtTWVkaWNhdGlvblJlcXVlc3QtMTQzIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJNZWRpY2F0aW9uUmVxdWVzdCIsCiAgICAgICJpZCI6ICJzbWFydC1NZWRpY2F0aW9uUmVxdWVzdC0xNDMiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj5wb3Rhc3NpdW0gY2l0cmF0ZSAxMCBNRVEgRXh0ZW5kZWQgUmVsZWFzZSBUYWJsZXQgKHJ4bm9ybTogMTk5MzgxKTwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJhY3RpdmUiLAogICAgICAiaW50ZW50IjogIm9yZGVyIiwKICAgICAgIm1lZGljYXRpb25Db2RlYWJsZUNvbmNlcHQiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3Lm5sbS5uaWguZ292L3Jlc2VhcmNoL3VtbHMvcnhub3JtIiwKICAgICAgICAgICJjb2RlIjogIjE5OTM4MSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJwb3Rhc3NpdW0gY2l0cmF0ZSAxMCBNRVEgRXh0ZW5kZWQgUmVsZWFzZSBUYWJsZXQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInBvdGFzc2l1bSBjaXRyYXRlIDEwIE1FUSBFeHRlbmRlZCBSZWxlYXNlIFRhYmxldCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJkb3NhZ2VJbnN0cnVjdGlvbiI6IFsgewogICAgICAgICJ0ZXh0IjogIjEgZGFpbHkiLAogICAgICAgICJ0aW1pbmciOiB7CiAgICAgICAgICAicmVwZWF0IjogewogICAgICAgICAgICAiYm91bmRzUGVyaW9kIjogewogICAgICAgICAgICAgICJzdGFydCI6ICIyMDA4LTA5LTMwIgogICAgICAgICAgICB9LAogICAgICAgICAgICAiZnJlcXVlbmN5IjogMSwKICAgICAgICAgICAgInBlcmlvZCI6IDEsCiAgICAgICAgICAgICJwZXJpb2RVbml0IjogImQiCiAgICAgICAgICB9CiAgICAgICAgfQogICAgICB9IF0sCiAgICAgICJkaXNwZW5zZVJlcXVlc3QiOiB7CiAgICAgICAgIm51bWJlck9mUmVwZWF0c0FsbG93ZWQiOiAxLAogICAgICAgICJxdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDIwMC4wLAogICAgICAgICAgInVuaXQiOiAie3RhYmxldH0iLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogInt0YWJsZXR9IgogICAgICAgIH0sCiAgICAgICAgImV4cGVjdGVkU3VwcGx5RHVyYXRpb24iOiB7CiAgICAgICAgICAidmFsdWUiOiA5MCwKICAgICAgICAgICJ1bml0IjogImRheXMiLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogImQiCiAgICAgICAgfQogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0zMTktdGVtcGVyYXR1cmUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTMxOS10ZW1wZXJhdHVyZSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDktMTAtMjk6IHRlbXBlcmF0dXJlID0gMzYuOTQ0NDQgQ2VsPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0zMTktdGVtcGVyYXR1cmUiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiODMxMC01IiwKICAgICAgICAgICJkaXNwbGF5IjogInRlbXBlcmF0dXJlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJ0ZW1wZXJhdHVyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTEwLTI5IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMzYuOTQ0NDQsCiAgICAgICAgInVuaXQiOiAiQ2VsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIkNlbCIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtODUtbGFiIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC04NS1sYWIiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA4LTA3LTEwOiBUQiBXaGVhbCAzRCBwIDUgVFUgRGlhbSA9IDAuNCBtbTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtODUtbGFiIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJsYWJvcmF0b3J5IiwKICAgICAgICAgICJkaXNwbGF5IjogIkxhYm9yYXRvcnkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkxhYm9yYXRvcnkiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjE2NDgtNSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJUQiBXaGVhbCAzRCBwIDUgVFUgRGlhbSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVEIgV2hlYWwgM0QgcCA1IFRVIERpYW0iCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOC0wNy0xMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDAuNCwKICAgICAgICAidW5pdCI6ICJtbSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJtbSIKICAgICAgfSwKICAgICAgInJlZmVyZW5jZVJhbmdlIjogWyB7CiAgICAgICAgImxvdyI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDAuMSwKICAgICAgICAgICJ1bml0IjogIm1tIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtbSIKICAgICAgICB9LAogICAgICAgICJoaWdoIjogewogICAgICAgICAgInZhbHVlIjogMS4zLAogICAgICAgICAgInVuaXQiOiAibW0iLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1tIgogICAgICAgIH0sCiAgICAgICAgInR5cGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9yZWZlcmVuY2VyYW5nZS1tZWFuaW5nIiwKICAgICAgICAgICAgImNvZGUiOiAibm9ybWFsIiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC02OC1sYWIiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTY4LWxhYiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDgtMDctMTA6IEdsdWNvc2UgU2VyUGwtbUNuYyA9IDk5IG1nL2RMPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC02OC1sYWIiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogImxhYm9yYXRvcnkiLAogICAgICAgICAgImRpc3BsYXkiOiAiTGFib3JhdG9yeSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTGFib3JhdG9yeSIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMjM0NS03IiwKICAgICAgICAgICJkaXNwbGF5IjogIkdsdWNvc2UgU2VyUGwtbUNuYyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiR2x1Y29zZSBTZXJQbC1tQ25jIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDgtMDctMTAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA5OS4wLAogICAgICAgICJ1bml0IjogIm1nL2RMIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIm1nL2RMIgogICAgICB9LAogICAgICAicmVmZXJlbmNlUmFuZ2UiOiBbIHsKICAgICAgICAibG93IjogewogICAgICAgICAgInZhbHVlIjogNzAuMCwKICAgICAgICAgICJ1bml0IjogIm1nL2RMIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICJtZy9kTCIKICAgICAgICB9LAogICAgICAgICJoaWdoIjogewogICAgICAgICAgInZhbHVlIjogMTA5LjAsCiAgICAgICAgICAidW5pdCI6ICJtZy9kTCIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAibWcvZEwiCiAgICAgICAgfSwKICAgICAgICAidHlwZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3JlZmVyZW5jZXJhbmdlLW1lYW5pbmciLAogICAgICAgICAgICAiY29kZSI6ICJub3JtYWwiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTkzLWxhYiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtOTMtbGFiIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOC0wNy0xMDogQ2FsY2l1bSBTZXJQbC1tQ25jID0gOS4yIG1nL2RMPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC05My1sYWIiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogImxhYm9yYXRvcnkiLAogICAgICAgICAgImRpc3BsYXkiOiAiTGFib3JhdG9yeSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTGFib3JhdG9yeSIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMTc4NjEtNiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJDYWxjaXVtIFNlclBsLW1DbmMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkNhbGNpdW0gU2VyUGwtbUNuYyIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA4LTA3LTEwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogOS4yLAogICAgICAgICJ1bml0IjogIm1nL2RMIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIm1nL2RMIgogICAgICB9LAogICAgICAicmVmZXJlbmNlUmFuZ2UiOiBbIHsKICAgICAgICAibG93IjogewogICAgICAgICAgInZhbHVlIjogOC41LAogICAgICAgICAgInVuaXQiOiAibWcvZEwiLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1nL2RMIgogICAgICAgIH0sCiAgICAgICAgImhpZ2giOiB7CiAgICAgICAgICAidmFsdWUiOiAxMC41LAogICAgICAgICAgInVuaXQiOiAibWcvZEwiLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogIm1nL2RMIgogICAgICAgIH0sCiAgICAgICAgInR5cGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9yZWZlcmVuY2VyYW5nZS1tZWFuaW5nIiwKICAgICAgICAgICAgImNvZGUiOiAibm9ybWFsIiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9NZWRpY2F0aW9uUmVxdWVzdC9zbWFydC1NZWRpY2F0aW9uUmVxdWVzdC0xNDAiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk1lZGljYXRpb25SZXF1ZXN0IiwKICAgICAgImlkIjogInNtYXJ0LU1lZGljYXRpb25SZXF1ZXN0LTE0MCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPk1lbWFudGluZSAxMCBNRyBPcmFsIFRhYmxldCBbTmFtZW5kYV0gKHJ4bm9ybTogNDA0NjczKTwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJhY3RpdmUiLAogICAgICAiaW50ZW50IjogIm9yZGVyIiwKICAgICAgIm1lZGljYXRpb25Db2RlYWJsZUNvbmNlcHQiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3Lm5sbS5uaWguZ292L3Jlc2VhcmNoL3VtbHMvcnhub3JtIiwKICAgICAgICAgICJjb2RlIjogIjQwNDY3MyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJNZW1hbnRpbmUgMTAgTUcgT3JhbCBUYWJsZXQgW05hbWVuZGFdIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJNZW1hbnRpbmUgMTAgTUcgT3JhbCBUYWJsZXQgW05hbWVuZGFdIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImRvc2FnZUluc3RydWN0aW9uIjogWyB7CiAgICAgICAgInRleHQiOiAiMSBiaWQiLAogICAgICAgICJ0aW1pbmciOiB7CiAgICAgICAgICAicmVwZWF0IjogewogICAgICAgICAgICAiYm91bmRzUGVyaW9kIjogewogICAgICAgICAgICAgICJzdGFydCI6ICIyMDA4LTA4LTEzIgogICAgICAgICAgICB9LAogICAgICAgICAgICAiZnJlcXVlbmN5IjogMiwKICAgICAgICAgICAgInBlcmlvZCI6IDEsCiAgICAgICAgICAgICJwZXJpb2RVbml0IjogImQiCiAgICAgICAgICB9CiAgICAgICAgfQogICAgICB9IF0sCiAgICAgICJkaXNwZW5zZVJlcXVlc3QiOiB7CiAgICAgICAgIm51bWJlck9mUmVwZWF0c0FsbG93ZWQiOiAxLAogICAgICAgICJxdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDE4MC4wLAogICAgICAgICAgInVuaXQiOiAie3RhYmxldH0iLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogInt0YWJsZXR9IgogICAgICAgIH0sCiAgICAgICAgImV4cGVjdGVkU3VwcGx5RHVyYXRpb24iOiB7CiAgICAgICAgICAidmFsdWUiOiA5MCwKICAgICAgICAgICJ1bml0IjogImRheXMiLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogImQiCiAgICAgICAgfQogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9NZWRpY2F0aW9uUmVxdWVzdC9zbWFydC1NZWRpY2F0aW9uUmVxdWVzdC0xNDEiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk1lZGljYXRpb25SZXF1ZXN0IiwKICAgICAgImlkIjogInNtYXJ0LU1lZGljYXRpb25SZXF1ZXN0LTE0MSIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPmRvbmVwZXppbCAxMCBNRyBPcmFsIFRhYmxldCBbQXJpY2VwdF0gKHJ4bm9ybTogMTUzMzU3KTwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJhY3RpdmUiLAogICAgICAiaW50ZW50IjogIm9yZGVyIiwKICAgICAgIm1lZGljYXRpb25Db2RlYWJsZUNvbmNlcHQiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3Lm5sbS5uaWguZ292L3Jlc2VhcmNoL3VtbHMvcnhub3JtIiwKICAgICAgICAgICJjb2RlIjogIjE1MzM1NyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJkb25lcGV6aWwgMTAgTUcgT3JhbCBUYWJsZXQgW0FyaWNlcHRdIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJkb25lcGV6aWwgMTAgTUcgT3JhbCBUYWJsZXQgW0FyaWNlcHRdIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImRvc2FnZUluc3RydWN0aW9uIjogWyB7CiAgICAgICAgInRleHQiOiAiMSBxaHMiLAogICAgICAgICJ0aW1pbmciOiB7CiAgICAgICAgICAicmVwZWF0IjogewogICAgICAgICAgICAiYm91bmRzUGVyaW9kIjogewogICAgICAgICAgICAgICJzdGFydCI6ICIyMDA4LTA4LTE0IgogICAgICAgICAgICB9LAogICAgICAgICAgICAiZnJlcXVlbmN5IjogMSwKICAgICAgICAgICAgInBlcmlvZCI6IDEsCiAgICAgICAgICAgICJwZXJpb2RVbml0IjogImQiCiAgICAgICAgICB9CiAgICAgICAgfQogICAgICB9IF0sCiAgICAgICJkaXNwZW5zZVJlcXVlc3QiOiB7CiAgICAgICAgIm51bWJlck9mUmVwZWF0c0FsbG93ZWQiOiAxLAogICAgICAgICJxdWFudGl0eSI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDkwLjAsCiAgICAgICAgICAidW5pdCI6ICJ7dGFibGV0fSIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAie3RhYmxldH0iCiAgICAgICAgfSwKICAgICAgICAiZXhwZWN0ZWRTdXBwbHlEdXJhdGlvbiI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDkwLAogICAgICAgICAgInVuaXQiOiAiZGF5cyIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAiZCIKICAgICAgICB9CiAgICAgIH0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTMxNi1oZWlnaHQiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTMxNi1oZWlnaHQiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTEwLTI5OiBoZWlnaHQgPSAxNjMuMDY4IGNtPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0zMTYtaGVpZ2h0IgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjgzMDItMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJoZWlnaHQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogImhlaWdodCIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA5LTEwLTI5IiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogMTYzLjA2OCwKICAgICAgICAidW5pdCI6ICJjbSIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJjbSIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtNzYtbGFiIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC03Ni1sYWIiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA4LTA3LTEwOiBSRFcgUkJDLVJ0byA9IDE0LjUgJTwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtNzYtbGFiIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJsYWJvcmF0b3J5IiwKICAgICAgICAgICJkaXNwbGF5IjogIkxhYm9yYXRvcnkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkxhYm9yYXRvcnkiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjMwMzg1LTkiLAogICAgICAgICAgImRpc3BsYXkiOiAiUkRXIFJCQy1SdG8iCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlJEVyBSQkMtUnRvIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDgtMDctMTAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAxNC41LAogICAgICAgICJ1bml0IjogIiUiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiJSIKICAgICAgfSwKICAgICAgInJlZmVyZW5jZVJhbmdlIjogWyB7CiAgICAgICAgImxvdyI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDExLjUsCiAgICAgICAgICAidW5pdCI6ICIlIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIlIgogICAgICAgIH0sCiAgICAgICAgImhpZ2giOiB7CiAgICAgICAgICAidmFsdWUiOiAxNC41LAogICAgICAgICAgInVuaXQiOiAiJSIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAiJSIKICAgICAgICB9LAogICAgICAgICJ0eXBlIjogewogICAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9obDcub3JnL2ZoaXIvcmVmZXJlbmNlcmFuZ2UtbWVhbmluZyIsCiAgICAgICAgICAgICJjb2RlIjogIm5vcm1hbCIsCiAgICAgICAgICAgICJkaXNwbGF5IjogIk5vcm1hbCBSYW5nZSIKICAgICAgICAgIH0gXSwKICAgICAgICAgICJ0ZXh0IjogIk5vcm1hbCBSYW5nZSIKICAgICAgICB9CiAgICAgIH0gXQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtMTEwLWxhYiIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMTEwLWxhYiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDgtMDctMTA6IFJCQyAjIEJsZCBBdXRvID0gNS4zMiAxMCo2L3VMPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0xMTAtbGFiIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJsYWJvcmF0b3J5IiwKICAgICAgICAgICJkaXNwbGF5IjogIkxhYm9yYXRvcnkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkxhYm9yYXRvcnkiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjc4OS04IiwKICAgICAgICAgICJkaXNwbGF5IjogIlJCQyAjIEJsZCBBdXRvIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJSQkMgIyBCbGQgQXV0byIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA4LTA3LTEwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogNS4zMiwKICAgICAgICAidW5pdCI6ICIxMCo2L3VMIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIjEwKjYvdUwiCiAgICAgIH0sCiAgICAgICJyZWZlcmVuY2VSYW5nZSI6IFsgewogICAgICAgICJsb3ciOiB7CiAgICAgICAgICAidmFsdWUiOiA0LjYsCiAgICAgICAgICAidW5pdCI6ICIxMCo2L3VMIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIxMCo2L3VMIgogICAgICAgIH0sCiAgICAgICAgImhpZ2giOiB7CiAgICAgICAgICAidmFsdWUiOiA2LjAsCiAgICAgICAgICAidW5pdCI6ICIxMCo2L3VMIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIxMCo2L3VMIgogICAgICAgIH0sCiAgICAgICAgInR5cGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9yZWZlcmVuY2VyYW5nZS1tZWFuaW5nIiwKICAgICAgICAgICAgImNvZGUiOiAibm9ybWFsIiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9Db25kaXRpb24vc21hcnQtQ29uZGl0aW9uLTIzIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJDb25kaXRpb24iLAogICAgICAiaWQiOiAic21hcnQtQ29uZGl0aW9uLTIzIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+TmVlZHMgaW5mbHVlbnphIGltbXVuaXphdGlvbjwvZGl2PiIKICAgICAgfSwKICAgICAgImNsaW5pY2FsU3RhdHVzIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2xpbmljYWwiLAogICAgICAgICAgImNvZGUiOiAiYWN0aXZlIiwKICAgICAgICAgICJkaXNwbGF5IjogIkFjdGl2ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQWN0aXZlIgogICAgICB9LAogICAgICAidmVyaWZpY2F0aW9uU3RhdHVzIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tdmVyLXN0YXR1cyIsCiAgICAgICAgICAiY29kZSI6ICJjb25maXJtZWQiLAogICAgICAgICAgImRpc3BsYXkiOiAiQ29uZmlybWVkIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJDb25maXJtZWQiCiAgICAgIH0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvL3NjdCIsCiAgICAgICAgICAiY29kZSI6ICIxODU5MDMwMDEiLAogICAgICAgICAgImRpc3BsYXkiOiAiTmVlZHMgaW5mbHVlbnphIGltbXVuaXphdGlvbiIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTmVlZHMgaW5mbHVlbnphIGltbXVuaXphdGlvbiIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJvbnNldERhdGVUaW1lIjogIjIwMDgtMDgtMDgiCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0xMDQtbGFiIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0xMDQtbGFiIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOC0wNy0xMDogQmFzb3BoaWxzIE5GciBCbGQgPSAxICU8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTEwNC1sYWIiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogImxhYm9yYXRvcnkiLAogICAgICAgICAgImRpc3BsYXkiOiAiTGFib3JhdG9yeSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTGFib3JhdG9yeSIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzAxODAtNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJCYXNvcGhpbHMgTkZyIEJsZCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQmFzb3BoaWxzIE5GciBCbGQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiZWZmZWN0aXZlRGF0ZVRpbWUiOiAiMjAwOC0wNy0xMCIsCiAgICAgICJwZXJmb3JtZXIiOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIlByYWN0aXRpb25lci9TTUFSVC0xMjM0IgogICAgICB9IF0sCiAgICAgICJ2YWx1ZVF1YW50aXR5IjogewogICAgICAgICJ2YWx1ZSI6IDEuMCwKICAgICAgICAidW5pdCI6ICIlIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogIiUiCiAgICAgIH0sCiAgICAgICJyZWZlcmVuY2VSYW5nZSI6IFsgewogICAgICAgICJsb3ciOiB7CiAgICAgICAgICAidmFsdWUiOiAwLjAsCiAgICAgICAgICAidW5pdCI6ICIlIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIlIgogICAgICAgIH0sCiAgICAgICAgImhpZ2giOiB7CiAgICAgICAgICAidmFsdWUiOiAyLjAsCiAgICAgICAgICAidW5pdCI6ICIlIiwKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICIlIgogICAgICAgIH0sCiAgICAgICAgInR5cGUiOiB7CiAgICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2hsNy5vcmcvZmhpci9yZWZlcmVuY2VyYW5nZS1tZWFuaW5nIiwKICAgICAgICAgICAgImNvZGUiOiAibm9ybWFsIiwKICAgICAgICAgICAgImRpc3BsYXkiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgICAgfSBdLAogICAgICAgICAgInRleHQiOiAiTm9ybWFsIFJhbmdlIgogICAgICAgIH0KICAgICAgfSBdCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC0zMjctd2VpZ2h0IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC0zMjctd2VpZ2h0IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0xMC0zMDogd2VpZ2h0ID0gOTEuNzE2Mzgga2c8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTMyNy13ZWlnaHQiCiAgICAgIH0gXSwKICAgICAgInN0YXR1cyI6ICJ1bmtub3duIiwKICAgICAgImNhdGVnb3J5IjogWyB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5IiwKICAgICAgICAgICJjb2RlIjogInZpdGFsLXNpZ25zIiwKICAgICAgICAgICJkaXNwbGF5IjogIlZpdGFsIFNpZ25zIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJWaXRhbCBTaWducyIKICAgICAgfSBdLAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9sb2luYy5vcmciLAogICAgICAgICAgImNvZGUiOiAiMzE0MS05IiwKICAgICAgICAgICJkaXNwbGF5IjogIndlaWdodCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAid2VpZ2h0IgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMTAtMzAiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiA5MS43MTYzOCwKICAgICAgICAidW5pdCI6ICJrZyIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJrZyIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvT2JzZXJ2YXRpb24vc21hcnQtOTEtbGFiIiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJPYnNlcnZhdGlvbiIsCiAgICAgICJpZCI6ICJzbWFydC05MS1sYWIiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA4LTA3LTEwOiBQcm90IFNlclBsLW1DbmMgPSA3LjEgZy9kTDwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtOTEtbGFiIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJsYWJvcmF0b3J5IiwKICAgICAgICAgICJkaXNwbGF5IjogIkxhYm9yYXRvcnkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkxhYm9yYXRvcnkiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjI4ODUtMiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJQcm90IFNlclBsLW1DbmMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlByb3QgU2VyUGwtbUNuYyIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA4LTA3LTEwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogNy4xLAogICAgICAgICJ1bml0IjogImcvZEwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiZy9kTCIKICAgICAgfSwKICAgICAgInJlZmVyZW5jZVJhbmdlIjogWyB7CiAgICAgICAgImxvdyI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDYuNywKICAgICAgICAgICJ1bml0IjogImcvZEwiLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogImcvZEwiCiAgICAgICAgfSwKICAgICAgICAiaGlnaCI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDguNiwKICAgICAgICAgICJ1bml0IjogImcvZEwiLAogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAgICJjb2RlIjogImcvZEwiCiAgICAgICAgfSwKICAgICAgICAidHlwZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3JlZmVyZW5jZXJhbmdlLW1lYW5pbmciLAogICAgICAgICAgICAiY29kZSI6ICJub3JtYWwiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTI5OC10ZW1wZXJhdHVyZSIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiT2JzZXJ2YXRpb24iLAogICAgICAiaWQiOiAic21hcnQtMjk4LXRlbXBlcmF0dXJlIiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+MjAwOS0wNC0yNDogdGVtcGVyYXR1cmUgPSAzNi45NDQ0NCBDZWw8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJpZGVudGlmaWVyIjogWyB7CiAgICAgICAgInVzZSI6ICJvZmZpY2lhbCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vd3d3LmJtYy5ubC96b3JncG9ydGFsL2lkZW50aWZpZXJzL29ic2VydmF0aW9ucyIsCiAgICAgICAgInZhbHVlIjogInNtYXJ0LTI5OC10ZW1wZXJhdHVyZSIKICAgICAgfSBdLAogICAgICAic3RhdHVzIjogInVua25vd24iLAogICAgICAiY2F0ZWdvcnkiOiBbIHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vb2JzZXJ2YXRpb24tY2F0ZWdvcnkiLAogICAgICAgICAgImNvZGUiOiAidml0YWwtc2lnbnMiLAogICAgICAgICAgImRpc3BsYXkiOiAiVml0YWwgU2lnbnMiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIlZpdGFsIFNpZ25zIgogICAgICB9IF0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL2xvaW5jLm9yZyIsCiAgICAgICAgICAiY29kZSI6ICI4MzEwLTUiLAogICAgICAgICAgImRpc3BsYXkiOiAidGVtcGVyYXR1cmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogInRlbXBlcmF0dXJlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMjQiLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAzNi45NDQ0NCwKICAgICAgICAidW5pdCI6ICJDZWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAiQ2VsIgogICAgICB9CiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9Db25kaXRpb24vc21hcnQtQ29uZGl0aW9uLTE5IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJDb25kaXRpb24iLAogICAgICAiaWQiOiAic21hcnQtQ29uZGl0aW9uLTE5IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+RXNzZW50aWFsIGh5cGVydGVuc2lvbjwvZGl2PiIKICAgICAgfSwKICAgICAgImNsaW5pY2FsU3RhdHVzIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2xpbmljYWwiLAogICAgICAgICAgImNvZGUiOiAiYWN0aXZlIiwKICAgICAgICAgICJkaXNwbGF5IjogIkFjdGl2ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQWN0aXZlIgogICAgICB9LAogICAgICAidmVyaWZpY2F0aW9uU3RhdHVzIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tdmVyLXN0YXR1cyIsCiAgICAgICAgICAiY29kZSI6ICJjb25maXJtZWQiLAogICAgICAgICAgImRpc3BsYXkiOiAiQ29uZmlybWVkIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJDb25maXJtZWQiCiAgICAgIH0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvL3NjdCIsCiAgICAgICAgICAiY29kZSI6ICIzODM0MTAwMyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJFc3NlbnRpYWwgaHlwZXJ0ZW5zaW9uIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJFc3NlbnRpYWwgaHlwZXJ0ZW5zaW9uIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgIm9uc2V0RGF0ZVRpbWUiOiAiMjAwOC0wNC0yMCIKICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL09ic2VydmF0aW9uL3NtYXJ0LTMwNC1yZXNwaXJhdG9yeXJhdGUiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTMwNC1yZXNwaXJhdG9yeXJhdGUiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj4yMDA5LTA0LTI3OiByZXNwaXJhdG9yeV9yYXRlID0gMjAuMCB7YnJlYXRoc30vbWluPC9kaXY+IgogICAgICB9LAogICAgICAiaWRlbnRpZmllciI6IFsgewogICAgICAgICJ1c2UiOiAib2ZmaWNpYWwiLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3d3dy5ibWMubmwvem9yZ3BvcnRhbC9pZGVudGlmaWVycy9vYnNlcnZhdGlvbnMiLAogICAgICAgICJ2YWx1ZSI6ICJzbWFydC0zMDQtcmVzcGlyYXRvcnlyYXRlIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJ2aXRhbC1zaWducyIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWaXRhbCBTaWducyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVml0YWwgU2lnbnMiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjkyNzktMSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJyZXNwaXJhdG9yeV9yYXRlIgogICAgICB9LAogICAgICAic3ViamVjdCI6IHsKICAgICAgICAicmVmZXJlbmNlIjogIlBhdGllbnQvc21hcnQtMTI4ODk5MiIKICAgICAgfSwKICAgICAgImVmZmVjdGl2ZURhdGVUaW1lIjogIjIwMDktMDQtMjciLAogICAgICAicGVyZm9ybWVyIjogWyB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQcmFjdGl0aW9uZXIvU01BUlQtMTIzNCIKICAgICAgfSBdLAogICAgICAidmFsdWVRdWFudGl0eSI6IHsKICAgICAgICAidmFsdWUiOiAyMC4wLAogICAgICAgICJ1bml0IjogInticmVhdGhzfS9taW4iLAogICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3VuaXRzb2ZtZWFzdXJlLm9yZyIsCiAgICAgICAgImNvZGUiOiAie2JyZWF0aHN9L21pbiIKICAgICAgfQogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvQ29uZGl0aW9uL3NtYXJ0LUNvbmRpdGlvbi0xOCIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiQ29uZGl0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LUNvbmRpdGlvbi0xOCIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPlZhc2N1bGFyIGRlbWVudGlhLCB1bmNvbXBsaWNhdGVkPC9kaXY+IgogICAgICB9LAogICAgICAiY2xpbmljYWxTdGF0dXMiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL2NvbmRpdGlvbi1jbGluaWNhbCIsCiAgICAgICAgICAiY29kZSI6ICJhY3RpdmUiLAogICAgICAgICAgImRpc3BsYXkiOiAiQWN0aXZlIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJBY3RpdmUiCiAgICAgIH0sCiAgICAgICJ2ZXJpZmljYXRpb25TdGF0dXMiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL2NvbmRpdGlvbi12ZXItc3RhdHVzIiwKICAgICAgICAgICJjb2RlIjogImNvbmZpcm1lZCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJDb25maXJtZWQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkNvbmZpcm1lZCIKICAgICAgfSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vc25vbWVkLmluZm8vc2N0IiwKICAgICAgICAgICJjb2RlIjogIjQyOTk5ODAwNCIsCiAgICAgICAgICAiZGlzcGxheSI6ICJWYXNjdWxhciBkZW1lbnRpYSwgdW5jb21wbGljYXRlZCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiVmFzY3VsYXIgZGVtZW50aWEsIHVuY29tcGxpY2F0ZWQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAib25zZXREYXRlVGltZSI6ICIyMDA3LTExLTE3IgogICAgfSwKICAgICJzZWFyY2giOiB7CiAgICAgICJtb2RlIjogIm1hdGNoIgogICAgfQogIH0sIHsKICAgICJmdWxsVXJsIjogImh0dHBzOi8vYXBpLmxvZ2ljYWhlYWx0aC5vcmcvZmFzdGVuaGVhbHRoL2RhdGEvQ29uZGl0aW9uL3NtYXJ0LUNvbmRpdGlvbi0xNyIsCiAgICAicmVzb3VyY2UiOiB7CiAgICAgICJyZXNvdXJjZVR5cGUiOiAiQ29uZGl0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LUNvbmRpdGlvbi0xNyIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPk90aGVyIHBlcnNpc3RlbnQgbWVudGFsIGRpc29yZGVycyBkdWUgdG8gY29uZGl0aW9ucyBjbGFzc2lmaWVkIGVsc2V3aGVyZTwvZGl2PiIKICAgICAgfSwKICAgICAgImNsaW5pY2FsU3RhdHVzIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2xpbmljYWwiLAogICAgICAgICAgImNvZGUiOiAiYWN0aXZlIiwKICAgICAgICAgICJkaXNwbGF5IjogIkFjdGl2ZSIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQWN0aXZlIgogICAgICB9LAogICAgICAidmVyaWZpY2F0aW9uU3RhdHVzIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tdmVyLXN0YXR1cyIsCiAgICAgICAgICAiY29kZSI6ICJjb25maXJtZWQiLAogICAgICAgICAgImRpc3BsYXkiOiAiQ29uZmlybWVkIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJDb25maXJtZWQiCiAgICAgIH0sCiAgICAgICJjb2RlIjogewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Nub21lZC5pbmZvL3NjdCIsCiAgICAgICAgICAiY29kZSI6ICI1MjQ0ODAwNiIsCiAgICAgICAgICAiZGlzcGxheSI6ICJPdGhlciBwZXJzaXN0ZW50IG1lbnRhbCBkaXNvcmRlcnMgZHVlIHRvIGNvbmRpdGlvbnMgY2xhc3NpZmllZCBlbHNld2hlcmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIk90aGVyIHBlcnNpc3RlbnQgbWVudGFsIGRpc29yZGVycyBkdWUgdG8gY29uZGl0aW9ucyBjbGFzc2lmaWVkIGVsc2V3aGVyZSIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJvbnNldERhdGVUaW1lIjogIjIwMDctMDktMTUiCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9Db25kaXRpb24vc21hcnQtQ29uZGl0aW9uLTE2IiwKICAgICJyZXNvdXJjZSI6IHsKICAgICAgInJlc291cmNlVHlwZSI6ICJDb25kaXRpb24iLAogICAgICAiaWQiOiAic21hcnQtQ29uZGl0aW9uLTE2IiwKICAgICAgIm1ldGEiOiB7CiAgICAgICAgInZlcnNpb25JZCI6ICIxIiwKICAgICAgICAibGFzdFVwZGF0ZWQiOiAiMjAyMC0wNy0xNVQwMjo1Mjo1Mi4wMDArMDA6MDAiLAogICAgICAgICJzb3VyY2UiOiAiI0hsQXZpNUR1VzdVVnN0dGMiCiAgICAgIH0sCiAgICAgICJ0ZXh0IjogewogICAgICAgICJzdGF0dXMiOiAiZ2VuZXJhdGVkIiwKICAgICAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+T3N0ZW9hcnRocml0aXM8L2Rpdj4iCiAgICAgIH0sCiAgICAgICJjbGluaWNhbFN0YXR1cyI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vY29uZGl0aW9uLWNsaW5pY2FsIiwKICAgICAgICAgICJjb2RlIjogImFjdGl2ZSIsCiAgICAgICAgICAiZGlzcGxheSI6ICJBY3RpdmUiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkFjdGl2ZSIKICAgICAgfSwKICAgICAgInZlcmlmaWNhdGlvblN0YXR1cyI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vY29uZGl0aW9uLXZlci1zdGF0dXMiLAogICAgICAgICAgImNvZGUiOiAiY29uZmlybWVkIiwKICAgICAgICAgICJkaXNwbGF5IjogIkNvbmZpcm1lZCIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiQ29uZmlybWVkIgogICAgICB9LAogICAgICAiY29kZSI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly9zbm9tZWQuaW5mby9zY3QiLAogICAgICAgICAgImNvZGUiOiAiMzk2Mjc1MDA2IiwKICAgICAgICAgICJkaXNwbGF5IjogIk9zdGVvYXJ0aHJpdGlzIgogICAgICAgIH0gXSwKICAgICAgICAidGV4dCI6ICJPc3Rlb2FydGhyaXRpcyIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJvbnNldERhdGVUaW1lIjogIjIwMDctMDctMTEiCiAgICB9LAogICAgInNlYXJjaCI6IHsKICAgICAgIm1vZGUiOiAibWF0Y2giCiAgICB9CiAgfSwgewogICAgImZ1bGxVcmwiOiAiaHR0cHM6Ly9hcGkubG9naWNhaGVhbHRoLm9yZy9mYXN0ZW5oZWFsdGgvZGF0YS9PYnNlcnZhdGlvbi9zbWFydC04Ny1sYWIiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk9ic2VydmF0aW9uIiwKICAgICAgImlkIjogInNtYXJ0LTg3LWxhYiIsCiAgICAgICJtZXRhIjogewogICAgICAgICJ2ZXJzaW9uSWQiOiAiMSIsCiAgICAgICAgImxhc3RVcGRhdGVkIjogIjIwMjAtMDctMTVUMDI6NTI6NTIuMDAwKzAwOjAwIiwKICAgICAgICAic291cmNlIjogIiNIbEF2aTVEdVc3VVZzdHRjIgogICAgICB9LAogICAgICAidGV4dCI6IHsKICAgICAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAgICAgImRpdiI6ICI8ZGl2IHhtbG5zPVwiaHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbFwiPjIwMDgtMDctMTA6IE1DViBSQkMgPSA3NCBmTDwvZGl2PiIKICAgICAgfSwKICAgICAgImlkZW50aWZpZXIiOiBbIHsKICAgICAgICAidXNlIjogIm9mZmljaWFsIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cuYm1jLm5sL3pvcmdwb3J0YWwvaWRlbnRpZmllcnMvb2JzZXJ2YXRpb25zIiwKICAgICAgICAidmFsdWUiOiAic21hcnQtODctbGFiIgogICAgICB9IF0sCiAgICAgICJzdGF0dXMiOiAidW5rbm93biIsCiAgICAgICJjYXRlZ29yeSI6IFsgewogICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICJzeXN0ZW0iOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9vYnNlcnZhdGlvbi1jYXRlZ29yeSIsCiAgICAgICAgICAiY29kZSI6ICJsYWJvcmF0b3J5IiwKICAgICAgICAgICJkaXNwbGF5IjogIkxhYm9yYXRvcnkiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkxhYm9yYXRvcnkiCiAgICAgIH0gXSwKICAgICAgImNvZGUiOiB7CiAgICAgICAgImNvZGluZyI6IFsgewogICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vbG9pbmMub3JnIiwKICAgICAgICAgICJjb2RlIjogIjMwNDI4LTciLAogICAgICAgICAgImRpc3BsYXkiOiAiTUNWIFJCQyIKICAgICAgICB9IF0sCiAgICAgICAgInRleHQiOiAiTUNWIFJCQyIKICAgICAgfSwKICAgICAgInN1YmplY3QiOiB7CiAgICAgICAgInJlZmVyZW5jZSI6ICJQYXRpZW50L3NtYXJ0LTEyODg5OTIiCiAgICAgIH0sCiAgICAgICJlZmZlY3RpdmVEYXRlVGltZSI6ICIyMDA4LTA3LTEwIiwKICAgICAgInBlcmZvcm1lciI6IFsgewogICAgICAgICJyZWZlcmVuY2UiOiAiUHJhY3RpdGlvbmVyL1NNQVJULTEyMzQiCiAgICAgIH0gXSwKICAgICAgInZhbHVlUXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogNzQuMCwKICAgICAgICAidW5pdCI6ICJmTCIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJmTCIKICAgICAgfSwKICAgICAgInJlZmVyZW5jZVJhbmdlIjogWyB7CiAgICAgICAgImxvdyI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDgwLjAsCiAgICAgICAgICAidW5pdCI6ICJmTCIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAiZkwiCiAgICAgICAgfSwKICAgICAgICAiaGlnaCI6IHsKICAgICAgICAgICJ2YWx1ZSI6IDk0LjAsCiAgICAgICAgICAidW5pdCI6ICJmTCIsCiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICAgImNvZGUiOiAiZkwiCiAgICAgICAgfSwKICAgICAgICAidHlwZSI6IHsKICAgICAgICAgICJjb2RpbmciOiBbIHsKICAgICAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vaGw3Lm9yZy9maGlyL3JlZmVyZW5jZXJhbmdlLW1lYW5pbmciLAogICAgICAgICAgICAiY29kZSI6ICJub3JtYWwiLAogICAgICAgICAgICAiZGlzcGxheSI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgICB9IF0sCiAgICAgICAgICAidGV4dCI6ICJOb3JtYWwgUmFuZ2UiCiAgICAgICAgfQogICAgICB9IF0KICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9LCB7CiAgICAiZnVsbFVybCI6ICJodHRwczovL2FwaS5sb2dpY2FoZWFsdGgub3JnL2Zhc3RlbmhlYWx0aC9kYXRhL01lZGljYXRpb25EaXNwZW5zZS9zbWFydC1NZWRpY2F0aW9uRGlzcGVuc2UtMTAiLAogICAgInJlc291cmNlIjogewogICAgICAicmVzb3VyY2VUeXBlIjogIk1lZGljYXRpb25EaXNwZW5zZSIsCiAgICAgICJpZCI6ICJzbWFydC1NZWRpY2F0aW9uRGlzcGVuc2UtMTAiLAogICAgICAibWV0YSI6IHsKICAgICAgICAidmVyc2lvbklkIjogIjEiLAogICAgICAgICJsYXN0VXBkYXRlZCI6ICIyMDIwLTA3LTE1VDAyOjUyOjUyLjAwMCswMDowMCIsCiAgICAgICAgInNvdXJjZSI6ICIjSGxBdmk1RHVXN1VWc3R0YyIKICAgICAgfSwKICAgICAgInRleHQiOiB7CiAgICAgICAgInN0YXR1cyI6ICJnZW5lcmF0ZWQiLAogICAgICAgICJkaXYiOiAiPGRpdiB4bWxucz1cImh0dHA6Ly93d3cudzMub3JnLzE5OTkveGh0bWxcIj5EaXNwZW5zZWQgOTAgdGFibGV0cyA9IDkwIGRheSBzdXBwbHkgb2YgSHlkcm9jaGxvcm90aGlhemlkZSA1MCBNRyBPcmFsIFRhYmxldDwvZGl2PiIKICAgICAgfSwKICAgICAgInN0YXR1cyI6ICJjb21wbGV0ZWQiLAogICAgICAibWVkaWNhdGlvbkNvZGVhYmxlQ29uY2VwdCI6IHsKICAgICAgICAiY29kaW5nIjogWyB7CiAgICAgICAgICAic3lzdGVtIjogImh0dHA6Ly93d3cubmxtLm5paC5nb3YvcmVzZWFyY2gvdW1scy9yeG5vcm0iLAogICAgICAgICAgImNvZGUiOiAiMTk3NzcwIiwKICAgICAgICAgICJkaXNwbGF5IjogIkh5ZHJvY2hsb3JvdGhpYXppZGUgNTAgTUcgT3JhbCBUYWJsZXQiCiAgICAgICAgfSBdLAogICAgICAgICJ0ZXh0IjogIkh5ZHJvY2hsb3JvdGhpYXppZGUgNTAgTUcgT3JhbCBUYWJsZXQiCiAgICAgIH0sCiAgICAgICJzdWJqZWN0IjogewogICAgICAgICJyZWZlcmVuY2UiOiAiUGF0aWVudC9zbWFydC0xMjg4OTkyIgogICAgICB9LAogICAgICAiYXV0aG9yaXppbmdQcmVzY3JpcHRpb24iOiBbIHsKICAgICAgICAicmVmZXJlbmNlIjogIk1lZGljYXRpb25SZXF1ZXN0L3NtYXJ0LU1lZGljYXRpb25SZXF1ZXN0LTE0MiIKICAgICAgfSBdLAogICAgICAicXVhbnRpdHkiOiB7CiAgICAgICAgInZhbHVlIjogOTAuMCwKICAgICAgICAidW5pdCI6ICJ0YWJsZXRzIiwKICAgICAgICAic3lzdGVtIjogImh0dHA6Ly91bml0c29mbWVhc3VyZS5vcmciLAogICAgICAgICJjb2RlIjogInt0YWJsZXRzfSIKICAgICAgfSwKICAgICAgImRheXNTdXBwbHkiOiB7CiAgICAgICAgInZhbHVlIjogOTAsCiAgICAgICAgInVuaXQiOiAiZGF5cyIsCiAgICAgICAgInN5c3RlbSI6ICJodHRwOi8vdW5pdHNvZm1lYXN1cmUub3JnIiwKICAgICAgICAiY29kZSI6ICJkIgogICAgICB9LAogICAgICAid2hlbkhhbmRlZE92ZXIiOiAiMjAwOC0xMS0wOSIKICAgIH0sCiAgICAic2VhcmNoIjogewogICAgICAibW9kZSI6ICJtYXRjaCIKICAgIH0KICB9IF0KfQ==",
- "ContentLength": 87217,
- "TransferEncoding": null,
- "Trailer": null,
- "TLS": {
- "Version": 771,
- "HandshakeComplete": true,
- "DidResume": false,
- "CipherSuite": 49199,
- "NegotiatedProtocol": "h2",
- "NegotiatedProtocolIsMutual": true,
- "ServerName": "api.logicahealth.org",
- "PeerCertificates": [
- {
- "Raw": "MIIF3TCCBMWgAwIBAgIQD90iwZZx8t2e0HbfCXZv5jANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjAeFw0yMjAyMTYwMDAwMDBaFw0yMzAzMTcyMzU5NTlaMB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUQI/Eqh9TNDSw9Qjjdpb8Y0XCyFLrvuLe8oE20fV4z9ID+4slqhoQq5ZTddi72a0WCX1JYnAZvwJfSiKlauY6RhrcAlgx8Isspn9exNtEC1PVEcR6PEU+ecEuJM8nMI5HMqUbNNl7KaX66ts1kxDOz/CXropzJrlBMeqmW8Ab9oS0RfMYW4PFiuJxMMa0bTwvPEEsjdK/3P7Oq+kDhRW4mmlWXE5WSqbd4A2z8+qvaiTDT2cn6SRtJCSO21ev8AabXDUHC/cIfmZsi49DkA1Pu3aiLUvpEZoyTbEkYzgszH1e3NgS4Zlo0xAocqJ9A8KamotUcT9gsa330Zj92pwcCAwEAAaOCAu4wggLqMB8GA1UdIwQYMBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3QMB0GA1UdDgQWBBTNnWeVzTbuvsgtvy9p2Fxb8aDBXzAdBgNVHREEFjAUghIqLmxvZ2ljYWhlYWx0aC5vcmcwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA9BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3JsLnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi0xLmNybDATBgNVHSAEDDAKMAgGBmeBDAECATB1BggrBgEFBQcBAQRpMGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0MAwGA1UdEwEB/wQCMAAwggF/BgorBgEEAdZ5AgQCBIIBbwSCAWsBaQB2AOg+0No+9QY1MudXKLyJa8kD08vREWvs62nhd31tBr1uAAABfv/msJMAAAQDAEcwRQIhAME/PPk1wgtTuE+mVrtXkTR3HI1fUU5d9CA/U9ygbJeCAiBRSP9TPOdOijsVVXIxqbXuEkIbs59mK9zu2NbG35QmrwB3ADXPGRu/sWxXvw+tTG1Cy7u2JyAmUeo/4SrvqAPDO9ZMAAABfv/msLYAAAQDAEgwRgIhAN+ehH4lwA0ugf5mR1X1hQpx+7qDlK9h6Lh8jjP+dvkFAiEAmqb2KD4vu9nClgYLX8IOOox0nju77FlviBSR6jir7Y8AdgCzc3cH4YRQ+GOG1gWp3BEJSnktsWcMC4fc8AMOeTalmgAAAX7/5rDRAAAEAwBHMEUCIB+OPU0KICNfeKdgtAqFJRXPFo5Qh0i0eP8GxZZ1xGvBAiEA5tu5bGBk3dpr03FUZkBEt+UmB1j3HFTtE+4q9sbMaOQwDQYJKoZIhvcNAQELBQADggEBABhO7rjaOlTqqQFzLI0PvIvNbFQMKdwXOIxzW+QtCY0pJmmzNFouY9WpyVtjUVu4PxN2MOmqcturyTfn3I5lct+gdZF5ZN5xz1mOwP6Y/QwBd4612Rp55arRHZmOySN6sozY6lUfKRqGWsEOSauBs6msawicHSBaDeWwLFkvFNq9KU2gxAIAZvCINN9jxuS9tod/xYDWXtoqsxKJT5R9WA5jjLxCfg6hT2phcaH4NFMuuLIvVohfcRE0J3EzF01G+A8w2h/vmHBJcng7rV4x9zJDEXzy7FStGyYrPHshfw8Y5ZUtsXabvITKTvNcDTtig+FePUc8hZIQ25JtIB1utTw=",
- "RawTBSCertificate": "MIIExaADAgECAhAP3SLBlnHy3Z7Qdt8Jdm/mMA0GCSqGSIb3DQEBCwUAMEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9uMB4XDTIyMDIxNjAwMDAwMFoXDTIzMDMxNzIzNTk1OVowHTEbMBkGA1UEAwwSKi5sb2dpY2FoZWFsdGgub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQABo4IC7jCCAuowHwYDVR0jBBgwFoAUWaRmBlKge5WSPKOUByeWdFv5PdAwHQYDVR0OBBYEFM2dZ5XNNu6+yC2/L2nYXFvxoMFfMB0GA1UdEQQWMBSCEioubG9naWNhaGVhbHRoLm9yZzAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMHUGCCsGAQUFBwEBBGkwZzAtBggrBgEFBQcwAYYhaHR0cDovL29jc3Auc2NhMWIuYW1hem9udHJ1c3QuY29tMDYGCCsGAQUFBzAChipodHRwOi8vY3J0LnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi5jcnQwDAYDVR0TAQH/BAIwADCCAX8GCisGAQQB1nkCBAIEggFvBIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQAB",
- "RawSubject": "MB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZw==",
- "RawIssuer": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "Signature": "GE7uuNo6VOqpAXMsjQ+8i81sVAwp3Bc4jHNb5C0JjSkmabM0Wi5j1anJW2NRW7g/E3Yw6apy26vJN+fcjmVy36B1kXlk3nHPWY7A/pj9DAF3jrXZGnnlqtEdmY7JI3qyjNjqVR8pGoZawQ5Jq4GzqaxrCJwdIFoN5bAsWS8U2r0pTaDEAgBm8Ig032PG5L22h3/FgNZe2iqzEolPlH1YDmOMvEJ+DqFPamFxofg0Uy64si9WiF9xETQncTMXTUb4DzDaH++YcElyeDutXjH3MkMRfPLsVK0bJis8eyF/DxjllS2xdpu8hMpO81wNO2KD4V49RzyFkhDbkm0gHW61PA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26896718084987105712424649359497857781939776872717468683978155637746257215499021470349970988339566575676760846885076831729531027507529066970870403310324380393417735893022072179494775167564421874325236796705165007524050504302380060458697401950754660880328298733571850499514448029271466007480105805347771100750817823875907895773106342710116763756368148402141779264674889033245108376215416210306416743606177394777918692206509394288953263325831505326093688372090049902223282179991822050258371230607553730263316519439064647844893197691900489801227745237518700641825406379579419156372088488971079841452780233494646796756743",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 21086622482032331400955200856357498854,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": null,
- "Organization": null,
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "*.logicahealth.org",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "*.logicahealth.org"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2022-02-16T00:00:00Z",
- "NotAfter": "2023-03-17T23:59:59Z",
- "KeyUsage": 5,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3Q"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBTNnWeVzTbuvsgtvy9p2Fxb8aDBXw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 17
- ],
- "Critical": false,
- "Value": "MBSCEioubG9naWNhaGVhbHRoLm9yZw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIFoA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 37
- ],
- "Critical": false,
- "Value": "MBQGCCsGAQUFBwMBBggrBgEFBQcDAg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAA="
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 4,
- 1,
- 11129,
- 2,
- 4,
- 2
- ],
- "Critical": false,
- "Value": "BIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": [
- 1,
- 2
- ],
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": false,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "zZ1nlc027r7ILb8vadhcW/GgwV8=",
- "AuthorityKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "OCSPServer": [
- "http://ocsp.sca1b.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.sca1b.amazontrust.com/sca1b.crt"
- ],
- "DNSNames": [
- "*.logicahealth.org"
- ],
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.sca1b.amazontrust.com/sca1b-1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIESTCCAzGgAwIBAgITBn+UV4WH6Kx33rJTMlu8mYtWDTANBgkqhkiG9w0BAQsFADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1MTAyMjAwMDAwMFoXDTI1MTAxOTAwMDAwMFowRjELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEVMBMGA1UECxMMU2VydmVyIENBIDFCMQ8wDQYDVQQDEwZBbWF6b24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCThZn3c68asg3Wuw6MLAd5tES6BIoSMzoKcG5blPVo+sDORrMd4f2AbnZcMzPa43j4wNxhplty6aUKk4T1qe9BOwKFjwK6zmxxLVYo7bHViXsPlJ6qOMpFge5blDP+18x+B26A0piiQOuPkfyDyeR4xQghfj66Yo19V+emU3nazfvpFA+ROz6WoVmB5x+F2pV8xeKNR7u6azDdU5YVX1TawprmxRC1+WsAYmz6qP+z8ArDITC2FMVy2fw0IjKOtEXc/VfmtTFch5+AfGYMGMqqvJ6LcXiAhqG5TI+Dr0RtM88k+8XUBCeQ8IGKuANaL7TiItKZYxK1MMuTJtV9IblAgMBAAGjggE7MIIBNzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUWaRmBlKge5WSPKOUByeWdFv5PdAwHwYDVR0jBBgwFoAUhBjMhTTsvAyUlC4IWZzHshBOCggwewYIKwYBBQUHAQEEbzBtMC8GCCsGAQUFBzABhiNodHRwOi8vb2NzcC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbTA6BggrBgEFBQcwAoYuaHR0cDovL2NydC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbS9yb290Y2ExLmNlcjA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMA0GCSqGSIb3DQEBCwUAA4IBAQCFkr41u3nPo4FCHOTjY3NTOVI159Gt/a6ZiqyJEi+752+a1U5y6iAwYfmXss2lJwJFqMp2PphKg5625kXg8kP2CN5t6G7bMQcT8C8xDZNtYTd7WPD8UZiRKAJPBXa30/AbwuZe0GaFEQ8ugcYQgSn+IGBI8/LwhBNTZTUVEWuCUUBVV18YtbAiPq3yXqMB48Oz+ctBWuZSkbvkNodPLamkB2g1upRyzQ7qDn1X8nn8N8V7YJ6y68AtkHcNSRAnpTitxBKjtKPISLMVCx7i4hncxHZSyLyKQXhw2W2Xs0qLeC1etA+jTGDK4UfLeC0SF7FSi8o5LL21L8IzApar2pR/",
- "RawTBSCertificate": "MIIDMaADAgECAhMGf5RXhYforHfeslMyW7yZi1YNMA0GCSqGSIb3DQEBCwUAMDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDEwHhcNMTUxMDIyMDAwMDAwWhcNMjUxMDE5MDAwMDAwWjBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJOFmfdzrxqyDda7DowsB3m0RLoEihIzOgpwbluU9Wj6wM5Gsx3h/YBudlwzM9rjePjA3GGmW3LppQqThPWp70E7AoWPArrObHEtVijtsdWJew+Unqo4ykWB7luUM/7XzH4HboDSmKJA64+R/IPJ5HjFCCF+PrpijX1X56ZTedrN++kUD5E7PpahWYHnH4XalXzF4o1Hu7prMN1TlhVfVNrCmubFELX5awBibPqo/7PwCsMhMLYUxXLZ/DQiMo60Rdz9V+a1MVyHn4B8ZgwYyqq8notxeICGoblMj4OvRG0zzyT7xdQEJ5DwgYq4A1ovtOIi0pljErUwy5Mm1X0huUCAwEAAaOCATswggE3MBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBRZpGYGUqB7lZI8o5QHJ5Z0W/k90DAfBgNVHSMEGDAWgBSEGMyFNOy8DJSULghZnMeyEE4KCDB7BggrBgEFBQcBAQRvMG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2VyMD8GA1UdHwQ4MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmwwEwYDVR0gBAwwCjAIBgZngQwBAgE=",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwk4WZ93OvGrIN1rsOjCwHebREugSKEjM6CnBuW5T1aPrAzkazHeH9gG52XDMz2uN4+MDcYaZbcumlCpOE9anvQTsChY8Cus5scS1WKO2x1Yl7D5SeqjjKRYHuW5Qz/tfMfgdugNKYokDrj5H8g8nkeMUIIX4+umKNfVfnplN52s376RQPkTs+lqFZgecfhdqVfMXijUe7umsw3VOWFV9U2sKa5sUQtflrAGJs+qj/s/AKwyEwthTFctn8NCIyjrRF3P1X5rUxXIefgHxmDBjKqryei3F4gIahuUyPg69EbTPPJPvF1AQnkPCBirgDWi+04iLSmWMStTDLkybVfSG5QIDAQAB",
- "RawSubject": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "RawIssuer": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "Signature": "hZK+Nbt5z6OBQhzk42NzUzlSNefRrf2umYqsiRIvu+dvmtVOcuogMGH5l7LNpScCRajKdj6YSoOetuZF4PJD9gjebehu2zEHE/AvMQ2TbWE3e1jw/FGYkSgCTwV2t9PwG8LmXtBmhREPLoHGEIEp/iBgSPPy8IQTU2U1FRFrglFAVVdfGLWwIj6t8l6jAePDs/nLQVrmUpG75DaHTy2ppAdoNbqUcs0O6g59V/J5/DfFe2CesuvALZB3DUkQJ6U4rcQSo7SjyEizFQse4uIZ3MR2Usi8ikF4cNltl7NKi3gtXrQPo0xgyuFHy3gtEhexUovKOSy9tS/CMwKWq9qUfw==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "24528737555851895213919827617064808536856788789868126310716752303420041319710819680867697306230985630039655096548324364189962675576756038921107965025585889330528490649228935527969954506874750514159926943451238689552458142167021149788529783891257271028002485075630471793111207960868638365698705018555597520367289025831586046483446904825820575805338475813865444295353094097022678376192149453480223428943386514159000527368947588174705227657134217583008630047462959260157651883088072156905420231950318110240318878613016990846576820326568049365612395397183597930457965295993595011597251067348997341253617591444999389873893",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918209630989264145272943054026349679957517,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-10-22T00:00:00Z",
- "NotAfter": "2025-10-19T00:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAYBAf8CAQA="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBRZpGYGUqB7lZI8o5QHJ5Z0W/k90A=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFIQYzIU07LwMlJQuCFmcx7IQTgoI"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmw="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": 0,
- "MaxPathLenZero": true,
- "SubjectKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "AuthorityKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "OCSPServer": [
- "http://ocsp.rootca1.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootca1.amazontrust.com/rootca1.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootca1.amazontrust.com/rootca1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIEkjCCA3qgAwIBAgITBn+USionzfP6wq4rAfkI7rnExjANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE1MDUyNTEyMDAwMFoXDTM3MTIzMTAxMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaOCATEwggEtMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSEGMyFNOy8DJSULghZnMeyEE4KCDAfBgNVHSMEGDAWgBScXwDfqgHXMCs4iKK4bUqc8hGRgzB4BggrBgEFBQcBAQRsMGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2VyMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3JsMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAYjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "RawTBSCertificate": "MIIDeqADAgECAhMGf5RKKifN8/rCrisB+QjuucTGMA0GCSqGSIb3DQEBCwUAMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwHhcNMTUwNTI1MTIwMDAwWhcNMzcxMjMxMDEwMDAwWjA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQABo4IBMTCCAS0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMB8GA1UdIwQYMBaAFJxfAN+qAdcwKziIorhtSpzyEZGDMHgGCCsGAQUFBwEBBGwwajAuBggrBgEFBQcwAYYiaHR0cDovL29jc3Aucm9vdGcyLmFtYXpvbnRydXN0LmNvbTA4BggrBgEFBQcwAoYsaHR0cDovL2NydC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jZXIwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2NybC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jcmwwEQYDVR0gBAowCDAGBgRVHSAA",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQAB",
- "RawSubject": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "RawIssuer": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "Signature": "YjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "22529839904807742196558773392430766620630713202204326167346456925862066285712069978308045976033918808540171076811098215136401323342247576789054764683787147408289170989302937775178809187827657352584557953877946352196797789035355954596527030584944622221752357105572088106020206921431118198373122638305846252087992561841631797199384157902018140720267433956687491591657652730221337591680012205319549572614035105482287002884850178224609018864719685310905426619874727796905080238179726224664042154200651710137931048812546957419686875805576245376866031854569863410951649630469236463991472642618512857920826701027482532358669",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918191876577076464031512351042010504348870,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-05-25T12:00:00Z",
- "NotAfter": "2037-12-31T01:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBSEGMyFNOy8DJSULghZnMeyEE4KCA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFJxfAN+qAdcwKziIorhtSpzyEZGD"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "AuthorityKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "OCSPServer": [
- "http://ocsp.rootg2.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootg2.amazontrust.com/rootg2.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootg2.amazontrust.com/rootg2.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- },
- {
- "Raw": "MIIEdTCCA12gAwIBAgIJAKcOSkw0grd/MA0GCSqGSIb3DQEBCwUAMGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wOTA5MDIwMDAwMDBaFw0zNDA2MjgxNzM5MTZaMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDDrEKvlO4vW+GZdfjohTsR8/y8+fIBNtKTrID30892t2OGPZNmCom15cAICyL1l/9of5JUOG52kbUpqQ4XHj2C0NTm/2yEnZtvMaVq4rtnQU68/7JuMauh2WLmo7WJSJR1b/JaCTcFOD2oR0FMNnngRoOt+OQFodSk7PQ5E751bWAHDLUu57fa4657wx+UX2wmDPE1kCK4DMNEffud6QZW0CzyyRpqbn3oUYSXxmTqM6bam17jQuug0DuDPfR+uxa40l2ZvOgdFFRjKWcIfeAg5JQ4W2bHO7ZOphQazJ1FTfhy/HIrImzJ9ZVGif/L4qL8RVHHVAYBeFAlU5i38FAgMBAAGjgfAwge0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMB8GA1UdIwQYMBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjnME8GCCsGAQUFBwEBBEMwQTAcBggrBgEFBQcwAYYQaHR0cDovL28uc3MyLnVzLzAhBggrBgEFBQcwAoYVaHR0cDovL3guc3MyLnVzL3guY2VyMCYGA1UdHwQfMB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQELBQADggEBACMd44pXyn3pF3lM8R5V/cxTbj5HD9/GVfKyBDbtgB9TxF00KGu+x1X8Z+rLP3+QsjPNG1gQggL4+C/1E2DUBc7xgQjB3ad1l08YuW3e95ORCLp+QCztweq7dp4zBncdDQh/U90bZKuCJ/Fp1U1ervShw3WnWEQt8jxwmKy6abaVd38PMV4s/KCHOkdp8Hlf9BRUpJVeEXgSYCfOn8J3/yNTd126/+pZ59vPr5KW7ySaNRB6nJHGDn2Z9j8Z3/VyVOEVqQdZe4O/Ui5GjLIAZHYcSNPYeehuVsyuLAOQ1xk4meTKCRlb/weWsKh/NEnfVqn3sF/tM+2MR7cwA130A4w=",
- "RawTBSCertificate": "MIIDXaADAgECAgkApw5KTDSCt38wDQYJKoZIhvcNAQELBQAwaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA5MDkwMjAwMDAwMFoXDTM0MDYyODE3MzkxNlowgZgxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaOB8DCB7TAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUnF8A36oB1zArOIiiuG1KnPIRkYMwHwYDVR0jBBgwFoAUv1+30c7dH4b0W1Ws3NcQwg6piOcwTwYIKwYBBQUHAQEEQzBBMBwGCCsGAQUFBzABhhBodHRwOi8vby5zczIudXMvMCEGCCsGAQUFBzAChhVodHRwOi8veC5zczIudXMveC5jZXIwJgYDVR0fBB8wHTAboBmgF4YVaHR0cDovL3Muc3MyLnVzL3IuY3JsMBEGA1UdIAQKMAgwBgYEVR0gAA==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Qw6xCr5TuL1vhmXX46IU7EfP8vPnyATbSk6yA99PPdrdjhj2TZgqJteXACAsi9Zf/aH+SVDhudpG1KakOFx49gtDU5v9shJ2bbzGlauK7Z0FOvP+ybjGrodli5qO1iUiUdW/yWgk3BTg9qEdBTDZ54EaDrfjkBaHUpOz0ORO+dW1gBwy1Lue32uOue8MflF9sJgzxNZAiuAzDRH37nekGVtAs8skaam596FGEl8Zk6jOm2pte40LroNA7gz30frsWuNJdmbzoHRRUYylnCH3gIOSUOFtmxzu2TqYUGsydRU34cvxyKyJsyfWVRon/y+Ki/EVRx1QGAXhQJVOYt/BQIDAQAB",
- "RawSubject": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "RawIssuer": "MGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==",
- "Signature": "Ix3jilfKfekXeUzxHlX9zFNuPkcP38ZV8rIENu2AH1PEXTQoa77HVfxn6ss/f5CyM80bWBCCAvj4L/UTYNQFzvGBCMHdp3WXTxi5bd73k5EIun5ALO3B6rt2njMGdx0NCH9T3Rtkq4In8WnVTV6u9KHDdadYRC3yPHCYrLpptpV3fw8xXiz8oIc6R2nweV/0FFSklV4ReBJgJ86fwnf/I1N3Xbr/6lnn28+vkpbvJJo1EHqckcYOfZn2Pxnf9XJU4RWpB1l7g79SLkaMsgBkdhxI09h56G5WzK4sA5DXGTiZ5MoJGVv/B5awqH80Sd9WqfewX+0z7YxHtzADXfQDjA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26894789576491863019171445242018370132029525033879210664513024255165308689836081694724912552986436241602345929261854187816625921774943728567119070351838976265193901442169339571326613928339955106648223197498035701437846440970934704192382084561469274550003268570741310868032789070264835003681318445644941362885752628282968349509706358865971392279088395067847314610178969555804359319567178098112935181143559364150874524817692694181296058297355335204675211145990489303168553611700020424738364579606192390834705213026692659672388567853246354560726855054573503174641583891075106464210711468427779853334564691648681991700229",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 12037640545166866303,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": [
- "Starfield Class 2 Certification Authority"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Starfield Class 2 Certification Authority"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2009-09-02T00:00:00Z",
- "NotAfter": "2034-06-28T17:39:16Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBScXwDfqgHXMCs4iKK4bUqc8hGRgw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjn"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MEEwHAYIKwYBBQUHMAGGEGh0dHA6Ly9vLnNzMi51cy8wIQYIKwYBBQUHMAKGFWh0dHA6Ly94LnNzMi51cy94LmNlcg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "AuthorityKeyId": "v1+30c7dH4b0W1Ws3NcQwg6piOc=",
- "OCSPServer": [
- "http://o.ss2.us/"
- ],
- "IssuingCertificateURL": [
- "http://x.ss2.us/x.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://s.ss2.us/r.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- }
- ],
- "VerifiedChains": null,
- "SignedCertificateTimestamps": null,
- "OCSPResponse": null,
- "TLSUnique": "KGYau2ehxG6kGY5o"
- }
- },
- "ErrType": "",
- "ErrMsg": ""
- },
- {
- "Request": {
- "Method": "GET",
- "URL": {
- "Scheme": "https",
- "Opaque": "",
- "User": null,
- "Host": "api.logicahealth.org",
- "Path": "/fastenhealth/data",
- "RawPath": "",
- "ForceQuery": false,
- "RawQuery": "_getpages=2b87e9ea-0af9-429f-abf2-0a72b2e33ad1\u0026_getpagesoffset=250\u0026_count=50\u0026_pretty=true\u0026_bundletype=searchset",
- "Fragment": "",
- "RawFragment": ""
- },
- "Header": {},
- "Body": ""
- },
- "Response": {
- "Status": "500 Internal Server Error",
- "StatusCode": 500,
- "Proto": "HTTP/2.0",
- "ProtoMajor": 2,
- "ProtoMinor": 0,
- "Header": {
- "Access-Control-Allow-Headers": [
- "X-FHIR-Starter,authorization,Prefer,Origin,Accept,X-Requested-With,Content-Type,Access-Control-Request-Method,Access-Control-Request-Headers"
- ],
- "Access-Control-Allow-Methods": [
- "POST, PUT, GET, OPTIONS, DELETE"
- ],
- "Access-Control-Allow-Origin": [
- "*"
- ],
- "Access-Control-Expose-Headers": [
- "Location, Content-Location"
- ],
- "Access-Control-Max-Age": [
- "3600"
- ],
- "Cache-Control": [
- "no-cache, no-store, max-age=0, must-revalidate"
- ],
- "Content-Length": [
- "392"
- ],
- "Content-Type": [
- "application/fhir+json;charset=UTF-8"
- ],
- "Date": [
- "Tue, 27 Sep 2022 03:13:32 GMT"
- ],
- "Expires": [
- "0"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000 ; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "X-Frame-Options": [
- "DENY"
- ],
- "X-Powered-By": [
- "HAPI FHIR 5.2.0 REST Server (FHIR Server; FHIR 4.0.1/R4)"
- ],
- "X-Request-Id": [
- "uSSoqtOKbMMRGNm4"
- ],
- "X-Xss-Protection": [
- "1; mode=block"
- ]
- },
- "Body": "ewogICJyZXNvdXJjZVR5cGUiOiAiT3BlcmF0aW9uT3V0Y29tZSIsCiAgInRleHQiOiB7CiAgICAic3RhdHVzIjogImdlbmVyYXRlZCIsCiAgICAiZGl2IjogIjxkaXYgeG1sbnM9XCJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hodG1sXCI+PGgxPk9wZXJhdGlvbiBPdXRjb21lPC9oMT48dGFibGUgYm9yZGVyPVwiMFwiPjx0cj48dGQgc3R5bGU9XCJmb250LXdlaWdodDogYm9sZDtcIj5FUlJPUjwvdGQ+PHRkPltdPC90ZD48dGQ+PHByZS8+PC90ZD5cblx0XHRcdFx0XHRcblx0XHRcdFx0XG5cdFx0XHQ8L3RyPlxuXHRcdDwvdGFibGU+XG5cdDwvZGl2PiIKICB9LAogICJpc3N1ZSI6IFsgewogICAgInNldmVyaXR5IjogImVycm9yIiwKICAgICJjb2RlIjogInByb2Nlc3NpbmciCiAgfSBdCn0=",
- "ContentLength": 392,
- "TransferEncoding": null,
- "Trailer": null,
- "TLS": {
- "Version": 771,
- "HandshakeComplete": true,
- "DidResume": false,
- "CipherSuite": 49199,
- "NegotiatedProtocol": "h2",
- "NegotiatedProtocolIsMutual": true,
- "ServerName": "api.logicahealth.org",
- "PeerCertificates": [
- {
- "Raw": "MIIF3TCCBMWgAwIBAgIQD90iwZZx8t2e0HbfCXZv5jANBgkqhkiG9w0BAQsFADBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjAeFw0yMjAyMTYwMDAwMDBaFw0yMzAzMTcyMzU5NTlaMB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUQI/Eqh9TNDSw9Qjjdpb8Y0XCyFLrvuLe8oE20fV4z9ID+4slqhoQq5ZTddi72a0WCX1JYnAZvwJfSiKlauY6RhrcAlgx8Isspn9exNtEC1PVEcR6PEU+ecEuJM8nMI5HMqUbNNl7KaX66ts1kxDOz/CXropzJrlBMeqmW8Ab9oS0RfMYW4PFiuJxMMa0bTwvPEEsjdK/3P7Oq+kDhRW4mmlWXE5WSqbd4A2z8+qvaiTDT2cn6SRtJCSO21ev8AabXDUHC/cIfmZsi49DkA1Pu3aiLUvpEZoyTbEkYzgszH1e3NgS4Zlo0xAocqJ9A8KamotUcT9gsa330Zj92pwcCAwEAAaOCAu4wggLqMB8GA1UdIwQYMBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3QMB0GA1UdDgQWBBTNnWeVzTbuvsgtvy9p2Fxb8aDBXzAdBgNVHREEFjAUghIqLmxvZ2ljYWhlYWx0aC5vcmcwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjA9BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3JsLnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi0xLmNybDATBgNVHSAEDDAKMAgGBmeBDAECATB1BggrBgEFBQcBAQRpMGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0MAwGA1UdEwEB/wQCMAAwggF/BgorBgEEAdZ5AgQCBIIBbwSCAWsBaQB2AOg+0No+9QY1MudXKLyJa8kD08vREWvs62nhd31tBr1uAAABfv/msJMAAAQDAEcwRQIhAME/PPk1wgtTuE+mVrtXkTR3HI1fUU5d9CA/U9ygbJeCAiBRSP9TPOdOijsVVXIxqbXuEkIbs59mK9zu2NbG35QmrwB3ADXPGRu/sWxXvw+tTG1Cy7u2JyAmUeo/4SrvqAPDO9ZMAAABfv/msLYAAAQDAEgwRgIhAN+ehH4lwA0ugf5mR1X1hQpx+7qDlK9h6Lh8jjP+dvkFAiEAmqb2KD4vu9nClgYLX8IOOox0nju77FlviBSR6jir7Y8AdgCzc3cH4YRQ+GOG1gWp3BEJSnktsWcMC4fc8AMOeTalmgAAAX7/5rDRAAAEAwBHMEUCIB+OPU0KICNfeKdgtAqFJRXPFo5Qh0i0eP8GxZZ1xGvBAiEA5tu5bGBk3dpr03FUZkBEt+UmB1j3HFTtE+4q9sbMaOQwDQYJKoZIhvcNAQELBQADggEBABhO7rjaOlTqqQFzLI0PvIvNbFQMKdwXOIxzW+QtCY0pJmmzNFouY9WpyVtjUVu4PxN2MOmqcturyTfn3I5lct+gdZF5ZN5xz1mOwP6Y/QwBd4612Rp55arRHZmOySN6sozY6lUfKRqGWsEOSauBs6msawicHSBaDeWwLFkvFNq9KU2gxAIAZvCINN9jxuS9tod/xYDWXtoqsxKJT5R9WA5jjLxCfg6hT2phcaH4NFMuuLIvVohfcRE0J3EzF01G+A8w2h/vmHBJcng7rV4x9zJDEXzy7FStGyYrPHshfw8Y5ZUtsXabvITKTvNcDTtig+FePUc8hZIQ25JtIB1utTw=",
- "RawTBSCertificate": "MIIExaADAgECAhAP3SLBlnHy3Z7Qdt8Jdm/mMA0GCSqGSIb3DQEBCwUAMEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9uMB4XDTIyMDIxNjAwMDAwMFoXDTIzMDMxNzIzNTk1OVowHTEbMBkGA1UEAwwSKi5sb2dpY2FoZWFsdGgub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQABo4IC7jCCAuowHwYDVR0jBBgwFoAUWaRmBlKge5WSPKOUByeWdFv5PdAwHQYDVR0OBBYEFM2dZ5XNNu6+yC2/L2nYXFvxoMFfMB0GA1UdEQQWMBSCEioubG9naWNhaGVhbHRoLm9yZzAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMHUGCCsGAQUFBwEBBGkwZzAtBggrBgEFBQcwAYYhaHR0cDovL29jc3Auc2NhMWIuYW1hem9udHJ1c3QuY29tMDYGCCsGAQUFBzAChipodHRwOi8vY3J0LnNjYTFiLmFtYXpvbnRydXN0LmNvbS9zY2ExYi5jcnQwDAYDVR0TAQH/BAIwADCCAX8GCisGAQQB1nkCBAIEggFvBIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1RAj8SqH1M0NLD1CON2lvxjRcLIUuu+4t7ygTbR9XjP0gP7iyWqGhCrllN12LvZrRYJfUlicBm/Al9KIqVq5jpGGtwCWDHwiyymf17E20QLU9URxHo8RT55wS4kzycwjkcypRs02Xsppfrq2zWTEM7P8JeuinMmuUEx6qZbwBv2hLRF8xhbg8WK4nEwxrRtPC88QSyN0r/c/s6r6QOFFbiaaVZcTlZKpt3gDbPz6q9qJMNPZyfpJG0kJI7bV6/wBptcNQcL9wh+ZmyLj0OQDU+7dqItS+kRmjJNsSRjOCzMfV7c2BLhmWjTEChyon0Dwpqai1RxP2CxrffRmP3anBwIDAQAB",
- "RawSubject": "MB0xGzAZBgNVBAMMEioubG9naWNhaGVhbHRoLm9yZw==",
- "RawIssuer": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "Signature": "GE7uuNo6VOqpAXMsjQ+8i81sVAwp3Bc4jHNb5C0JjSkmabM0Wi5j1anJW2NRW7g/E3Yw6apy26vJN+fcjmVy36B1kXlk3nHPWY7A/pj9DAF3jrXZGnnlqtEdmY7JI3qyjNjqVR8pGoZawQ5Jq4GzqaxrCJwdIFoN5bAsWS8U2r0pTaDEAgBm8Ig032PG5L22h3/FgNZe2iqzEolPlH1YDmOMvEJ+DqFPamFxofg0Uy64si9WiF9xETQncTMXTUb4DzDaH++YcElyeDutXjH3MkMRfPLsVK0bJis8eyF/DxjllS2xdpu8hMpO81wNO2KD4V49RzyFkhDbkm0gHW61PA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26896718084987105712424649359497857781939776872717468683978155637746257215499021470349970988339566575676760846885076831729531027507529066970870403310324380393417735893022072179494775167564421874325236796705165007524050504302380060458697401950754660880328298733571850499514448029271466007480105805347771100750817823875907895773106342710116763756368148402141779264674889033245108376215416210306416743606177394777918692206509394288953263325831505326093688372090049902223282179991822050258371230607553730263316519439064647844893197691900489801227745237518700641825406379579419156372088488971079841452780233494646796756743",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 21086622482032331400955200856357498854,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": null,
- "Organization": null,
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "*.logicahealth.org",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "*.logicahealth.org"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2022-02-16T00:00:00Z",
- "NotAfter": "2023-03-17T23:59:59Z",
- "KeyUsage": 5,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFFmkZgZSoHuVkjyjlAcnlnRb+T3Q"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBTNnWeVzTbuvsgtvy9p2Fxb8aDBXw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 17
- ],
- "Critical": false,
- "Value": "MBSCEioubG9naWNhaGVhbHRoLm9yZw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIFoA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 37
- ],
- "Critical": false,
- "Value": "MBQGCCsGAQUFBwMBBggrBgEFBQcDAg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwuc2NhMWIuYW1hem9udHJ1c3QuY29tL3NjYTFiLTEuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGcwLQYIKwYBBQUHMAGGIWh0dHA6Ly9vY3NwLnNjYTFiLmFtYXpvbnRydXN0LmNvbTA2BggrBgEFBQcwAoYqaHR0cDovL2NydC5zY2ExYi5hbWF6b250cnVzdC5jb20vc2NhMWIuY3J0"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAA="
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 4,
- 1,
- 11129,
- 2,
- 4,
- 2
- ],
- "Critical": false,
- "Value": "BIIBawFpAHYA6D7Q2j71BjUy51covIlryQPTy9ERa+zraeF3fW0GvW4AAAF+/+awkwAABAMARzBFAiEAwT88+TXCC1O4T6ZWu1eRNHccjV9RTl30ID9T3KBsl4ICIFFI/1M8506KOxVVcjGpte4SQhuzn2Yr3O7Y1sbflCavAHcANc8ZG7+xbFe/D61MbULLu7YnICZR6j/hKu+oA8M71kwAAAF+/+awtgAABAMASDBGAiEA356EfiXADS6B/mZHVfWFCnH7uoOUr2HouHyOM/52+QUCIQCapvYoPi+72cKWBgtfwg46jHSeO7vsWW+IFJHqOKvtjwB2ALNzdwfhhFD4Y4bWBancEQlKeS2xZwwLh9zwAw55NqWaAAABfv/msNEAAAQDAEcwRQIgH449TQogI194p2C0CoUlFc8WjlCHSLR4/wbFlnXEa8ECIQDm27lsYGTd2mvTcVRmQES35SYHWPccVO0T7ir2xsxo5A=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": [
- 1,
- 2
- ],
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": false,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "zZ1nlc027r7ILb8vadhcW/GgwV8=",
- "AuthorityKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "OCSPServer": [
- "http://ocsp.sca1b.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.sca1b.amazontrust.com/sca1b.crt"
- ],
- "DNSNames": [
- "*.logicahealth.org"
- ],
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.sca1b.amazontrust.com/sca1b-1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIESTCCAzGgAwIBAgITBn+UV4WH6Kx33rJTMlu8mYtWDTANBgkqhkiG9w0BAQsFADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1MTAyMjAwMDAwMFoXDTI1MTAxOTAwMDAwMFowRjELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEVMBMGA1UECxMMU2VydmVyIENBIDFCMQ8wDQYDVQQDEwZBbWF6b24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCThZn3c68asg3Wuw6MLAd5tES6BIoSMzoKcG5blPVo+sDORrMd4f2AbnZcMzPa43j4wNxhplty6aUKk4T1qe9BOwKFjwK6zmxxLVYo7bHViXsPlJ6qOMpFge5blDP+18x+B26A0piiQOuPkfyDyeR4xQghfj66Yo19V+emU3nazfvpFA+ROz6WoVmB5x+F2pV8xeKNR7u6azDdU5YVX1TawprmxRC1+WsAYmz6qP+z8ArDITC2FMVy2fw0IjKOtEXc/VfmtTFch5+AfGYMGMqqvJ6LcXiAhqG5TI+Dr0RtM88k+8XUBCeQ8IGKuANaL7TiItKZYxK1MMuTJtV9IblAgMBAAGjggE7MIIBNzASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUWaRmBlKge5WSPKOUByeWdFv5PdAwHwYDVR0jBBgwFoAUhBjMhTTsvAyUlC4IWZzHshBOCggwewYIKwYBBQUHAQEEbzBtMC8GCCsGAQUFBzABhiNodHRwOi8vb2NzcC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbTA6BggrBgEFBQcwAoYuaHR0cDovL2NydC5yb290Y2ExLmFtYXpvbnRydXN0LmNvbS9yb290Y2ExLmNlcjA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY3JsMBMGA1UdIAQMMAowCAYGZ4EMAQIBMA0GCSqGSIb3DQEBCwUAA4IBAQCFkr41u3nPo4FCHOTjY3NTOVI159Gt/a6ZiqyJEi+752+a1U5y6iAwYfmXss2lJwJFqMp2PphKg5625kXg8kP2CN5t6G7bMQcT8C8xDZNtYTd7WPD8UZiRKAJPBXa30/AbwuZe0GaFEQ8ugcYQgSn+IGBI8/LwhBNTZTUVEWuCUUBVV18YtbAiPq3yXqMB48Oz+ctBWuZSkbvkNodPLamkB2g1upRyzQ7qDn1X8nn8N8V7YJ6y68AtkHcNSRAnpTitxBKjtKPISLMVCx7i4hncxHZSyLyKQXhw2W2Xs0qLeC1etA+jTGDK4UfLeC0SF7FSi8o5LL21L8IzApar2pR/",
- "RawTBSCertificate": "MIIDMaADAgECAhMGf5RXhYforHfeslMyW7yZi1YNMA0GCSqGSIb3DQEBCwUAMDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDEwHhcNMTUxMDIyMDAwMDAwWhcNMjUxMDE5MDAwMDAwWjBGMQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRUwEwYDVQQLEwxTZXJ2ZXIgQ0EgMUIxDzANBgNVBAMTBkFtYXpvbjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMJOFmfdzrxqyDda7DowsB3m0RLoEihIzOgpwbluU9Wj6wM5Gsx3h/YBudlwzM9rjePjA3GGmW3LppQqThPWp70E7AoWPArrObHEtVijtsdWJew+Unqo4ykWB7luUM/7XzH4HboDSmKJA64+R/IPJ5HjFCCF+PrpijX1X56ZTedrN++kUD5E7PpahWYHnH4XalXzF4o1Hu7prMN1TlhVfVNrCmubFELX5awBibPqo/7PwCsMhMLYUxXLZ/DQiMo60Rdz9V+a1MVyHn4B8ZgwYyqq8notxeICGoblMj4OvRG0zzyT7xdQEJ5DwgYq4A1ovtOIi0pljErUwy5Mm1X0huUCAwEAAaOCATswggE3MBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBRZpGYGUqB7lZI8o5QHJ5Z0W/k90DAfBgNVHSMEGDAWgBSEGMyFNOy8DJSULghZnMeyEE4KCDB7BggrBgEFBQcBAQRvMG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2VyMD8GA1UdHwQ4MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmwwEwYDVR0gBAwwCjAIBgZngQwBAgE=",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwk4WZ93OvGrIN1rsOjCwHebREugSKEjM6CnBuW5T1aPrAzkazHeH9gG52XDMz2uN4+MDcYaZbcumlCpOE9anvQTsChY8Cus5scS1WKO2x1Yl7D5SeqjjKRYHuW5Qz/tfMfgdugNKYokDrj5H8g8nkeMUIIX4+umKNfVfnplN52s376RQPkTs+lqFZgecfhdqVfMXijUe7umsw3VOWFV9U2sKa5sUQtflrAGJs+qj/s/AKwyEwthTFctn8NCIyjrRF3P1X5rUxXIefgHxmDBjKqryei3F4gIahuUyPg69EbTPPJPvF1AQnkPCBirgDWi+04iLSmWMStTDLkybVfSG5QIDAQAB",
- "RawSubject": "MEYxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xFTATBgNVBAsTDFNlcnZlciBDQSAxQjEPMA0GA1UEAxMGQW1hem9u",
- "RawIssuer": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "Signature": "hZK+Nbt5z6OBQhzk42NzUzlSNefRrf2umYqsiRIvu+dvmtVOcuogMGH5l7LNpScCRajKdj6YSoOetuZF4PJD9gjebehu2zEHE/AvMQ2TbWE3e1jw/FGYkSgCTwV2t9PwG8LmXtBmhREPLoHGEIEp/iBgSPPy8IQTU2U1FRFrglFAVVdfGLWwIj6t8l6jAePDs/nLQVrmUpG75DaHTy2ppAdoNbqUcs0O6g59V/J5/DfFe2CesuvALZB3DUkQJ6U4rcQSo7SjyEizFQse4uIZ3MR2Usi8ikF4cNltl7NKi3gtXrQPo0xgyuFHy3gtEhexUovKOSy9tS/CMwKWq9qUfw==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "24528737555851895213919827617064808536856788789868126310716752303420041319710819680867697306230985630039655096548324364189962675576756038921107965025585889330528490649228935527969954506874750514159926943451238689552458142167021149788529783891257271028002485075630471793111207960868638365698705018555597520367289025831586046483446904825820575805338475813865444295353094097022678376192149453480223428943386514159000527368947588174705227657134217583008630047462959260157651883088072156905420231950318110240318878613016990846576820326568049365612395397183597930457965295993595011597251067348997341253617591444999389873893",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918209630989264145272943054026349679957517,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": [
- "Server CA 1B"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Server CA 1B"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-10-22T00:00:00Z",
- "NotAfter": "2025-10-19T00:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAYBAf8CAQA="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBRZpGYGUqB7lZI8o5QHJ5Z0W/k90A=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFIQYzIU07LwMlJQuCFmcx7IQTgoI"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MG0wLwYIKwYBBQUHMAGGI2h0dHA6Ly9vY3NwLnJvb3RjYTEuYW1hem9udHJ1c3QuY29tMDoGCCsGAQUFBzAChi5odHRwOi8vY3J0LnJvb3RjYTEuYW1hem9udHJ1c3QuY29tL3Jvb3RjYTEuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDYwNKAyoDCGLmh0dHA6Ly9jcmwucm9vdGNhMS5hbWF6b250cnVzdC5jb20vcm9vdGNhMS5jcmw="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAowCAYGZ4EMAQIB"
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": 0,
- "MaxPathLenZero": true,
- "SubjectKeyId": "WaRmBlKge5WSPKOUByeWdFv5PdA=",
- "AuthorityKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "OCSPServer": [
- "http://ocsp.rootca1.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootca1.amazontrust.com/rootca1.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootca1.amazontrust.com/rootca1.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 23,
- 140,
- 1,
- 2,
- 1
- ]
- ]
- },
- {
- "Raw": "MIIEkjCCA3qgAwIBAgITBn+USionzfP6wq4rAfkI7rnExjANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTE1MDUyNTEyMDAwMFoXDTM3MTIzMTAxMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaOCATEwggEtMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSEGMyFNOy8DJSULghZnMeyEE4KCDAfBgNVHSMEGDAWgBScXwDfqgHXMCs4iKK4bUqc8hGRgzB4BggrBgEFBQcBAQRsMGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2VyMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3JsMBEGA1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQsFAAOCAQEAYjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "RawTBSCertificate": "MIIDeqADAgECAhMGf5RKKifN8/rCrisB+QjuucTGMA0GCSqGSIb3DQEBCwUAMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwHhcNMTUwNTI1MTIwMDAwWhcNMzcxMjMxMDEwMDAwWjA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQABo4IBMTCCAS0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMB8GA1UdIwQYMBaAFJxfAN+qAdcwKziIorhtSpzyEZGDMHgGCCsGAQUFBwEBBGwwajAuBggrBgEFBQcwAYYiaHR0cDovL29jc3Aucm9vdGcyLmFtYXpvbnRydXN0LmNvbTA4BggrBgEFBQcwAoYsaHR0cDovL2NydC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jZXIwPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2NybC5yb290ZzIuYW1hem9udHJ1c3QuY29tL3Jvb3RnMi5jcmwwEQYDVR0gBAowCDAGBgRVHSAA",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsniAccp41eNxr0eAUHR9btjXiHb0mWj3WCFg+XSEAS+sAi2G06BDek6ypNA2ugG+jdtIyAcXNkz07ogjxz7rN/W1GfhJaLDe17l2OB1hnqT+gjal5UpW5EXh+f20Fvp02pybNTkv+rAgUAZsetCAsqb5r+xHGY9QOAfcooc5WPi61an5SGcwlu6UeF5viaNRwDCGZqFFZrpU66PDkflI3P/R6DAtfS10cDXXiCT3nsRZbrtzhxfyMkYouEP6tx2qyrTynyQOLUv3cVxeaf/qlQLLOIquUDhv2/stYhvFxx5U4XfgZ8gPnIcj1j9AIH8ggMSATD47JCaOBK5smsiqDQIDAQAB",
- "RawSubject": "MDkxCzAJBgNVBAYTAlVTMQ8wDQYDVQQKEwZBbWF6b24xGTAXBgNVBAMTEEFtYXpvbiBSb290IENBIDE=",
- "RawIssuer": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "Signature": "YjdCXLwQtT6LLOkMm2xF4gcAevnFWAu5CIw+7bMlPLVvUOTNNWqnkzSWMiGpSESrnO09tKpzbeR/FoCJbM8oAxiDR3mjEH4wW6w7sGDgd9QIpuEdfF7Au/maeyKdpwAJfqxGF4PcnCZXmTA5YpaP7dreqsXMGz7KQ2hsVxa81Q4gLv7/wmpdLqBKbRRYh5TmOTFffHPLkIhqhBGWJ6bt2YFGpn6jcgAKUj6DiAdjd4lpFw85hdKrCEVN0FE6/V1dN2RMfjCyVSRCnTawXZwXgWHxyvkQAiSr6w10kY17RSlQOYiypok1JR4UakcjMS9cmvqtmg5iUaQqqcT5NJ0hGA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "22529839904807742196558773392430766620630713202204326167346456925862066285712069978308045976033918808540171076811098215136401323342247576789054764683787147408289170989302937775178809187827657352584557953877946352196797789035355954596527030584944622221752357105572088106020206921431118198373122638305846252087992561841631797199384157902018140720267433956687491591657652730221337591680012205319549572614035105482287002884850178224609018864719685310905426619874727796905080238179726224664042154200651710137931048812546957419686875805576245376866031854569863410951649630469236463991472642618512857920826701027482532358669",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 144918191876577076464031512351042010504348870,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Amazon"
- ],
- "OrganizationalUnit": null,
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Amazon Root CA 1",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Amazon"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Amazon Root CA 1"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2015-05-25T12:00:00Z",
- "NotAfter": "2037-12-31T01:00:00Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBSEGMyFNOy8DJSULghZnMeyEE4KCA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFJxfAN+qAdcwKziIorhtSpzyEZGD"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MGowLgYIKwYBBQUHMAGGImh0dHA6Ly9vY3NwLnJvb3RnMi5hbWF6b250cnVzdC5jb20wOAYIKwYBBQUHMAKGLGh0dHA6Ly9jcnQucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY2Vy"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MDQwMqAwoC6GLGh0dHA6Ly9jcmwucm9vdGcyLmFtYXpvbnRydXN0LmNvbS9yb290ZzIuY3Js"
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "hBjMhTTsvAyUlC4IWZzHshBOCgg=",
- "AuthorityKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "OCSPServer": [
- "http://ocsp.rootg2.amazontrust.com"
- ],
- "IssuingCertificateURL": [
- "http://crt.rootg2.amazontrust.com/rootg2.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://crl.rootg2.amazontrust.com/rootg2.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- },
- {
- "Raw": "MIIEdTCCA12gAwIBAgIJAKcOSkw0grd/MA0GCSqGSIb3DQEBCwUAMGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wOTA5MDIwMDAwMDBaFw0zNDA2MjgxNzM5MTZaMIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVDDrEKvlO4vW+GZdfjohTsR8/y8+fIBNtKTrID30892t2OGPZNmCom15cAICyL1l/9of5JUOG52kbUpqQ4XHj2C0NTm/2yEnZtvMaVq4rtnQU68/7JuMauh2WLmo7WJSJR1b/JaCTcFOD2oR0FMNnngRoOt+OQFodSk7PQ5E751bWAHDLUu57fa4657wx+UX2wmDPE1kCK4DMNEffud6QZW0CzyyRpqbn3oUYSXxmTqM6bam17jQuug0DuDPfR+uxa40l2ZvOgdFFRjKWcIfeAg5JQ4W2bHO7ZOphQazJ1FTfhy/HIrImzJ9ZVGif/L4qL8RVHHVAYBeFAlU5i38FAgMBAAGjgfAwge0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMB8GA1UdIwQYMBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjnME8GCCsGAQUFBwEBBEMwQTAcBggrBgEFBQcwAYYQaHR0cDovL28uc3MyLnVzLzAhBggrBgEFBQcwAoYVaHR0cDovL3guc3MyLnVzL3guY2VyMCYGA1UdHwQfMB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQELBQADggEBACMd44pXyn3pF3lM8R5V/cxTbj5HD9/GVfKyBDbtgB9TxF00KGu+x1X8Z+rLP3+QsjPNG1gQggL4+C/1E2DUBc7xgQjB3ad1l08YuW3e95ORCLp+QCztweq7dp4zBncdDQh/U90bZKuCJ/Fp1U1ervShw3WnWEQt8jxwmKy6abaVd38PMV4s/KCHOkdp8Hlf9BRUpJVeEXgSYCfOn8J3/yNTd126/+pZ59vPr5KW7ySaNRB6nJHGDn2Z9j8Z3/VyVOEVqQdZe4O/Ui5GjLIAZHYcSNPYeehuVsyuLAOQ1xk4meTKCRlb/weWsKh/NEnfVqn3sF/tM+2MR7cwA130A4w=",
- "RawTBSCertificate": "MIIDXaADAgECAgkApw5KTDSCt38wDQYJKoZIhvcNAQELBQAwaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA5MDkwMjAwMDAwMFoXDTM0MDYyODE3MzkxNlowgZgxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaOB8DCB7TAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUnF8A36oB1zArOIiiuG1KnPIRkYMwHwYDVR0jBBgwFoAUv1+30c7dH4b0W1Ws3NcQwg6piOcwTwYIKwYBBQUHAQEEQzBBMBwGCCsGAQUFBzABhhBodHRwOi8vby5zczIudXMvMCEGCCsGAQUFBzAChhVodHRwOi8veC5zczIudXMveC5jZXIwJgYDVR0fBB8wHTAboBmgF4YVaHR0cDovL3Muc3MyLnVzL3IuY3JsMBEGA1UdIAQKMAgwBgYEVR0gAA==",
- "RawSubjectPublicKeyInfo": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1Qw6xCr5TuL1vhmXX46IU7EfP8vPnyATbSk6yA99PPdrdjhj2TZgqJteXACAsi9Zf/aH+SVDhudpG1KakOFx49gtDU5v9shJ2bbzGlauK7Z0FOvP+ybjGrodli5qO1iUiUdW/yWgk3BTg9qEdBTDZ54EaDrfjkBaHUpOz0ORO+dW1gBwy1Lue32uOue8MflF9sJgzxNZAiuAzDRH37nekGVtAs8skaam596FGEl8Zk6jOm2pte40LroNA7gz30frsWuNJdmbzoHRRUYylnCH3gIOSUOFtmxzu2TqYUGsydRU34cvxyKyJsyfWVRon/y+Ki/EVRx1QGAXhQJVOYt/BQIDAQAB",
- "RawSubject": "MIGYMQswCQYDVQQGEwJVUzEQMA4GA1UECBMHQXJpem9uYTETMBEGA1UEBxMKU2NvdHRzZGFsZTElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjE7MDkGA1UEAxMyU3RhcmZpZWxkIFNlcnZpY2VzIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IC0gRzI=",
- "RawIssuer": "MGgxCzAJBgNVBAYTAlVTMSUwIwYDVQQKExxTdGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQLEylTdGFyZmllbGQgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eQ==",
- "Signature": "Ix3jilfKfekXeUzxHlX9zFNuPkcP38ZV8rIENu2AH1PEXTQoa77HVfxn6ss/f5CyM80bWBCCAvj4L/UTYNQFzvGBCMHdp3WXTxi5bd73k5EIun5ALO3B6rt2njMGdx0NCH9T3Rtkq4In8WnVTV6u9KHDdadYRC3yPHCYrLpptpV3fw8xXiz8oIc6R2nweV/0FFSklV4ReBJgJ86fwnf/I1N3Xbr/6lnn28+vkpbvJJo1EHqckcYOfZn2Pxnf9XJU4RWpB1l7g79SLkaMsgBkdhxI09h56G5WzK4sA5DXGTiZ5MoJGVv/B5awqH80Sd9WqfewX+0z7YxHtzADXfQDjA==",
- "SignatureAlgorithm": 4,
- "PublicKeyAlgorithm": 1,
- "PublicKey": {
- "N": "26894789576491863019171445242018370132029525033879210664513024255165308689836081694724912552986436241602345929261854187816625921774943728567119070351838976265193901442169339571326613928339955106648223197498035701437846440970934704192382084561469274550003268570741310868032789070264835003681318445644941362885752628282968349509706358865971392279088395067847314610178969555804359319567178098112935181143559364150874524817692694181296058297355335204675211145990489303168553611700020424738364579606192390834705213026692659672388567853246354560726855054573503174641583891075106464210711468427779853334564691648681991700229",
- "E": 65537
- },
- "Version": 3,
- "SerialNumber": 12037640545166866303,
- "Issuer": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": [
- "Starfield Class 2 Certification Authority"
- ],
- "Locality": null,
- "Province": null,
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 11
- ],
- "Value": "Starfield Class 2 Certification Authority"
- }
- ],
- "ExtraNames": null
- },
- "Subject": {
- "Country": [
- "US"
- ],
- "Organization": [
- "Starfield Technologies, Inc."
- ],
- "OrganizationalUnit": null,
- "Locality": [
- "Scottsdale"
- ],
- "Province": [
- "Arizona"
- ],
- "StreetAddress": null,
- "PostalCode": null,
- "SerialNumber": "",
- "CommonName": "Starfield Services Root Certificate Authority - G2",
- "Names": [
- {
- "Type": [
- 2,
- 5,
- 4,
- 6
- ],
- "Value": "US"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 8
- ],
- "Value": "Arizona"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 7
- ],
- "Value": "Scottsdale"
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 10
- ],
- "Value": "Starfield Technologies, Inc."
- },
- {
- "Type": [
- 2,
- 5,
- 4,
- 3
- ],
- "Value": "Starfield Services Root Certificate Authority - G2"
- }
- ],
- "ExtraNames": null
- },
- "NotBefore": "2009-09-02T00:00:00Z",
- "NotAfter": "2034-06-28T17:39:16Z",
- "KeyUsage": 97,
- "Extensions": [
- {
- "Id": [
- 2,
- 5,
- 29,
- 19
- ],
- "Critical": true,
- "Value": "MAMBAf8="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 15
- ],
- "Critical": true,
- "Value": "AwIBhg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 14
- ],
- "Critical": false,
- "Value": "BBScXwDfqgHXMCs4iKK4bUqc8hGRgw=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 35
- ],
- "Critical": false,
- "Value": "MBaAFL9ft9HO3R+G9FtVrNzXEMIOqYjn"
- },
- {
- "Id": [
- 1,
- 3,
- 6,
- 1,
- 5,
- 5,
- 7,
- 1,
- 1
- ],
- "Critical": false,
- "Value": "MEEwHAYIKwYBBQUHMAGGEGh0dHA6Ly9vLnNzMi51cy8wIQYIKwYBBQUHMAKGFWh0dHA6Ly94LnNzMi51cy94LmNlcg=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 31
- ],
- "Critical": false,
- "Value": "MB0wG6AZoBeGFWh0dHA6Ly9zLnNzMi51cy9yLmNybA=="
- },
- {
- "Id": [
- 2,
- 5,
- 29,
- 32
- ],
- "Critical": false,
- "Value": "MAgwBgYEVR0gAA=="
- }
- ],
- "ExtraExtensions": null,
- "UnhandledCriticalExtensions": null,
- "ExtKeyUsage": null,
- "UnknownExtKeyUsage": null,
- "BasicConstraintsValid": true,
- "IsCA": true,
- "MaxPathLen": -1,
- "MaxPathLenZero": false,
- "SubjectKeyId": "nF8A36oB1zArOIiiuG1KnPIRkYM=",
- "AuthorityKeyId": "v1+30c7dH4b0W1Ws3NcQwg6piOc=",
- "OCSPServer": [
- "http://o.ss2.us/"
- ],
- "IssuingCertificateURL": [
- "http://x.ss2.us/x.cer"
- ],
- "DNSNames": null,
- "EmailAddresses": null,
- "IPAddresses": null,
- "URIs": null,
- "PermittedDNSDomainsCritical": false,
- "PermittedDNSDomains": null,
- "ExcludedDNSDomains": null,
- "PermittedIPRanges": null,
- "ExcludedIPRanges": null,
- "PermittedEmailAddresses": null,
- "ExcludedEmailAddresses": null,
- "PermittedURIDomains": null,
- "ExcludedURIDomains": null,
- "CRLDistributionPoints": [
- "http://s.ss2.us/r.crl"
- ],
- "PolicyIdentifiers": [
- [
- 2,
- 5,
- 29,
- 32,
- 0
- ]
- ]
- }
- ],
- "VerifiedChains": null,
- "SignedCertificateTimestamps": null,
- "OCSPResponse": null,
- "TLSUnique": "KGYau2ehxG6kGY5o"
- }
- },
- "ErrType": "",
- "ErrMsg": ""
- }
- ]
-}
\ No newline at end of file
diff --git a/backend/pkg/hub/internal/fhir/manual/client.go b/backend/pkg/hub/internal/fhir/manual/client.go
deleted file mode 100644
index f26308c5..00000000
--- a/backend/pkg/hub/internal/fhir/manual/client.go
+++ /dev/null
@@ -1,164 +0,0 @@
-package manual
-
-import (
- "context"
- "fmt"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub/internal/fhir/base"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/fastenhealth/gofhir-models/fhir401"
- fhir401utils "github.com/fastenhealth/gofhir-models/fhir401/utils"
- "github.com/fastenhealth/gofhir-models/fhir430"
- fhir430utils "github.com/fastenhealth/gofhir-models/fhir430/utils"
- "github.com/samber/lo"
- "github.com/sirupsen/logrus"
- "io"
- "net/http"
- "os"
- "strings"
-)
-
-type ManualClient struct {
- Context context.Context
- AppConfig config.Interface
- Logger logrus.FieldLogger
-
- Source *models.Source
-}
-
-func (m ManualClient) GetRequest(resourceSubpath string, decodeModelPtr interface{}) error {
- panic("implement me")
-}
-
-func (m ManualClient) SyncAll(db database.DatabaseRepository) error {
- panic("implement me")
-}
-
-func (m ManualClient) SyncAllBundle(db database.DatabaseRepository, bundleFile *os.File) error {
-
- // we need to find the (most populated) patient record
- patientId, bundleType, err := m.ExtractPatientId(bundleFile)
- if err != nil {
- return fmt.Errorf("an error occurred while extracting patient id from bundle: %w", err)
- }
- // we need to add the patient id to the source
- m.Source.PatientId = patientId
-
- // we need to upsert Source
- err = db.CreateSource(m.Context, m.Source)
- if err != nil {
- return fmt.Errorf("an error occurred while creating manual source: %w", err)
- }
- // we need to parse the bundle into resources (might need to try a couple of different times)
- var resourceFhirList []models.ResourceFhir
- switch bundleType {
- case "fhir430":
- bundle430Data := fhir430.Bundle{}
- err := base.ParseBundle(bundleFile, &bundle430Data)
- if err != nil {
- return fmt.Errorf("an error occurred while parsing 4.3.0 bundle: %w", err)
- }
- client, _, err := base.NewFHIR430Client(m.Context, m.AppConfig, m.Logger, *m.Source, http.DefaultClient)
- if err != nil {
- return fmt.Errorf("an error occurred while creating 4.3.0 client: %w", err)
- }
- resourceFhirList, err = client.ProcessBundle(bundle430Data)
- if err != nil {
- return fmt.Errorf("an error occurred while processing 4.3.0 resources: %w", err)
- }
- case "fhir401":
- bundle401Data := fhir401.Bundle{}
- err := base.ParseBundle(bundleFile, &bundle401Data)
- if err != nil {
- return fmt.Errorf("an error occurred while parsing 4.0.1 bundle: %w", err)
- }
- client, _, err := base.NewFHIR401Client(m.Context, m.AppConfig, m.Logger, *m.Source, http.DefaultClient)
- if err != nil {
- return fmt.Errorf("an error occurred while creating 4.0.1 client: %w", err)
- }
- resourceFhirList, err = client.ProcessBundle(bundle401Data)
- if err != nil {
- return fmt.Errorf("an error occurred while processing 4.0.1 resources: %w", err)
- }
- }
- // we need to upsert all resources (and make sure they are associated with new Source)
- for _, apiModel := range resourceFhirList {
- err = db.UpsertResource(context.Background(), &apiModel)
- if err != nil {
- return fmt.Errorf("an error occurred while upserting resources: %w", err)
- }
- }
- return nil
-}
-
-func (m ManualClient) ExtractPatientId(bundleFile *os.File) (string, string, error) {
- // try from newest format to the oldest format
- bundle430Data := fhir430.Bundle{}
- bundle401Data := fhir401.Bundle{}
-
- var patientIds []string
-
- bundleType := "fhir430"
- if err := base.ParseBundle(bundleFile, &bundle430Data); err == nil {
- patientIds = lo.FilterMap[fhir430.BundleEntry, string](bundle430Data.Entry, func(bundleEntry fhir430.BundleEntry, _ int) (string, bool) {
- parsedResource, err := fhir430utils.MapToResource(bundleEntry.Resource, false)
- if err != nil {
- return "", false
- }
- typedResource := parsedResource.(base.ResourceInterface)
- resourceType, resourceId := typedResource.ResourceRef()
-
- if resourceId == nil || len(*resourceId) == 0 {
- return "", false
- }
- return *resourceId, resourceType == fhir430.ResourceTypePatient.String()
- })
- }
- bundleFile.Seek(0, io.SeekStart)
-
- //fallback
- if patientIds == nil || len(patientIds) == 0 {
- bundleType = "fhir401"
- //try parsing the bundle as a 401 bundle
- //TODO: find a better, more generic way to do this.
- err := base.ParseBundle(bundleFile, &bundle401Data)
- if err != nil {
- return "", "", err
- }
- patientIds = lo.FilterMap[fhir401.BundleEntry, string](bundle401Data.Entry, func(bundleEntry fhir401.BundleEntry, _ int) (string, bool) {
- parsedResource, err := fhir401utils.MapToResource(bundleEntry.Resource, false)
- if err != nil {
- return "", false
- }
- typedResource := parsedResource.(base.ResourceInterface)
- resourceType, resourceId := typedResource.ResourceRef()
-
- if resourceId == nil || len(*resourceId) == 0 {
- return "", false
- }
- return *resourceId, resourceType == fhir430.ResourceTypePatient.String()
- })
- }
- bundleFile.Seek(0, io.SeekStart)
-
- if patientIds == nil || len(patientIds) == 0 {
- return "", "", fmt.Errorf("could not determine patient id")
- } else {
- //reset reader
-
- return strings.TrimLeft(patientIds[0], "Patient/"), bundleType, nil
- }
-}
-
-func NewClient(ctx context.Context, appConfig config.Interface, globalLogger logrus.FieldLogger, source models.Source, testHttpClient ...*http.Client) (base.Client, *models.Source, error) {
- return ManualClient{
- Context: ctx,
- AppConfig: appConfig,
- Logger: globalLogger,
- Source: &models.Source{
- SourceType: pkg.SourceTypeManual,
- },
- }, nil, nil
-}
diff --git a/backend/pkg/models/base.go b/backend/pkg/models/base.go
deleted file mode 100644
index 2b7fb253..00000000
--- a/backend/pkg/models/base.go
+++ /dev/null
@@ -1,50 +0,0 @@
-package models
-
-import (
- "github.com/google/uuid"
- "gorm.io/gorm"
- "time"
-)
-
-type ModelBase struct {
- ID uuid.UUID `json:"id" gorm:"type:uuid;primary_key;"`
- CreatedAt time.Time `json:"created_at"`
- UpdatedAt time.Time `json:"updated_at"`
- DeletedAt *time.Time `json:"deleted_at,omitempty" gorm:"index"`
-}
-
-//https://medium.com/@the.hasham.ali/how-to-use-uuid-key-type-with-gorm-cc00d4ec7100
-
-func (base *ModelBase) BeforeCreate(tx *gorm.DB) error {
- base.ID = uuid.New()
- return nil
-}
-
-type OriginBase struct {
- ModelBase
- User *User `json:"user,omitempty" gorm:"-"`
- UserID uuid.UUID `json:"user_id"`
-
- Source *Source `json:"source,omitempty" gorm:"-"`
- SourceID uuid.UUID `json:"source_id" gorm:"not null;index:,unique,composite:source_resource_id"`
-
- SourceResourceType string `json:"source_resource_type" gorm:"not null;index:,unique,composite:source_resource_id"`
- SourceResourceID string `json:"source_resource_id" gorm:"not null;index:,unique,composite:source_resource_id"`
-}
-
-func (o OriginBase) GetSourceID() uuid.UUID {
- return o.SourceID
-}
-
-func (o OriginBase) GetSourceResourceType() string {
- return o.SourceResourceType
-}
-func (o OriginBase) GetSourceResourceID() string {
- return o.SourceResourceID
-}
-
-type OriginBaser interface {
- GetSourceID() uuid.UUID
- GetSourceResourceType() string
- GetSourceResourceID() string
-}
diff --git a/backend/pkg/models/resource_fhir.go b/backend/pkg/models/resource_fhir.go
deleted file mode 100644
index 49c070bd..00000000
--- a/backend/pkg/models/resource_fhir.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package models
-
-import (
- "gorm.io/datatypes"
-)
-
-type ResourceFhir struct {
- OriginBase
-
- //embedded data
- Payload datatypes.JSON `json:"payload" gorm:"payload"`
-}
-
-type ListResourceQueryOptions struct {
- SourceID string
- SourceResourceType string
-}
diff --git a/backend/pkg/models/source.go b/backend/pkg/models/source.go
deleted file mode 100644
index 9277fc9f..00000000
--- a/backend/pkg/models/source.go
+++ /dev/null
@@ -1,49 +0,0 @@
-package models
-
-import (
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
- "github.com/google/uuid"
-)
-
-// Source Data/Medical Provider Credentials
-type Source struct {
- ModelBase
- User User `json:"user,omitempty"`
- UserID uuid.UUID `json:"user_id" gorm:"uniqueIndex:idx_user_source_patient"`
- SourceType pkg.SourceType `json:"source_type" gorm:"uniqueIndex:idx_user_source_patient"`
- PatientId string `json:"patient_id" gorm:"uniqueIndex:idx_user_source_patient"`
-
- //oauth endpoints
- OauthAuthorizationEndpoint string `json:"oauth_authorization_endpoint"`
- OauthTokenEndpoint string `json:"oauth_token_endpoint"`
- OauthRegistrationEndpoint string `json:"oauth_registration_endpoint"`
- OauthIntrospectionEndpoint string `json:"oauth_introspection_endpoint"`
- OauthUserInfoEndpoint string `json:"oauth_userinfo_endpoint"`
- OauthTokenEndpointAuthMethods string `json:"oauth_token_endpoint_auth_methods_supported"`
-
- ApiEndpointBaseUrl string `json:"api_endpoint_base_url"`
- ClientId string `json:"client_id"`
- RedirectUri string `json:"redirect_uri"`
- Scopes string `json:"scopes"`
- AccessToken string `json:"access_token"`
- RefreshToken string `json:"refresh_token"`
- IdToken string `json:"id_token"`
- ExpiresAt int64 `json:"expires_at"`
- CodeChallenge string `json:"code_challenge"`
- CodeVerifier string `json:"code_verifier"`
-
- Confidential bool `json:"confidential"`
-}
-
-/*
-serverUrl: connectData.message.api_endpoint_base_url,
-clientId: connectData.message.client_id,
-redirectUri: connectData.message.redirect_uri,
-tokenUri: `${connectData.message.oauth_endpoint_base_url}/token`,
-scope: connectData.message.scopes.join(' '),
-tokenResponse: payload,
-expiresAt: getAccessTokenExpiration(payload, new BrowserAdapter()),
-codeChallenge: codeChallenge,
-codeVerifier: codeVerifier
-
-*/
diff --git a/backend/pkg/models/source_summary.go b/backend/pkg/models/source_summary.go
deleted file mode 100644
index 8b1290a5..00000000
--- a/backend/pkg/models/source_summary.go
+++ /dev/null
@@ -1,7 +0,0 @@
-package models
-
-type SourceSummary struct {
- Source *Source `json:"source,omitempty"`
- ResourceTypeCounts []map[string]interface{} `json:"resource_type_counts,omitempty"`
- Patient *ResourceFhir `json:"patient"`
-}
diff --git a/backend/pkg/models/summary.go b/backend/pkg/models/summary.go
deleted file mode 100644
index be21b1f2..00000000
--- a/backend/pkg/models/summary.go
+++ /dev/null
@@ -1,7 +0,0 @@
-package models
-
-type Summary struct {
- Sources []Source `json:"sources,omitempty"`
- Patients []ResourceFhir `json:"patients,omitempty"`
- ResourceTypeCounts []map[string]interface{} `json:"resource_type_counts,omitempty"`
-}
diff --git a/backend/pkg/models/user.go b/backend/pkg/models/user.go
index b30da746..e9483dca 100644
--- a/backend/pkg/models/user.go
+++ b/backend/pkg/models/user.go
@@ -1,26 +1,6 @@
package models
-import "golang.org/x/crypto/bcrypt"
-
type User struct {
- ModelBase
- Name string `json:"name"`
- Username string `json:"username" gorm:"unique"`
+ Username string `json:"username"`
Password string `json:"password"`
}
-
-func (user *User) HashPassword(password string) error {
- bytes, err := bcrypt.GenerateFromPassword([]byte(password), 14)
- if err != nil {
- return err
- }
- user.Password = string(bytes)
- return nil
-}
-func (user *User) CheckPassword(providedPassword string) error {
- err := bcrypt.CompareHashAndPassword([]byte(user.Password), []byte(providedPassword))
- if err != nil {
- return err
- }
- return nil
-}
diff --git a/backend/pkg/web/handler/auth.go b/backend/pkg/web/handler/auth.go
index 24d24cf0..33801753 100644
--- a/backend/pkg/web/handler/auth.go
+++ b/backend/pkg/web/handler/auth.go
@@ -1,9 +1,6 @@
package handler
import (
- "fmt"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/auth"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
"github.com/gin-gonic/gin"
@@ -12,57 +9,17 @@ import (
func AuthSignup(c *gin.Context) {
databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
- appConfig := c.MustGet("CONFIG").(config.Interface)
var user models.User
if err := c.ShouldBindJSON(&user); err != nil {
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
+ c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error()})
return
}
err := databaseRepo.CreateUser(c, &user)
if err != nil {
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
+ c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error()})
return
}
- // return JWT
- tokenString, err := auth.GenerateJWT(appConfig.GetString("web.jwt.encryptionkey"), user.Username, user.ID.String())
- if err != nil {
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- return
- }
-
- c.JSON(http.StatusOK, gin.H{"success": true, "data": tokenString})
-}
-
-func AuthSignin(c *gin.Context) {
- databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
- appConfig := c.MustGet("CONFIG").(config.Interface)
-
- var user models.User
- if err := c.ShouldBindJSON(&user); err != nil {
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- return
- }
-
- foundUser, err := databaseRepo.GetUserByEmail(c, user.Username)
- if err != nil || foundUser == nil {
- c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": fmt.Sprintf("could not find user: %s", user.Username)})
- return
- }
-
- err = foundUser.CheckPassword(user.Password)
- if err != nil {
- c.JSON(http.StatusUnauthorized, gin.H{"success": false, "error": fmt.Sprintf("username or password does not match: %s", user.Username)})
- return
- }
-
- // return JWT
- tokenString, err := auth.GenerateJWT(appConfig.GetString("web.jwt.encryptionkey"), user.Username, user.ID.String())
- if err != nil {
- c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": "an error occurred generating JWT token"})
- return
- }
-
- c.JSON(http.StatusOK, gin.H{"success": true, "data": tokenString})
+ c.JSON(http.StatusOK, gin.H{"success": true})
}
diff --git a/backend/pkg/web/handler/hello_world.go b/backend/pkg/web/handler/hello_world.go
deleted file mode 100644
index f5c05931..00000000
--- a/backend/pkg/web/handler/hello_world.go
+++ /dev/null
@@ -1,35 +0,0 @@
-package handler
-
-import (
- //"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/gin-gonic/gin"
- //"github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- //"github.com/sirupsen/logrus"
- "net/http"
-)
-
-func GetHelloWorld(c *gin.Context) {
- //logger := c.MustGet("LOGGER").(*logrus.Entry)
- //appConfig := c.MustGet("CONFIG").(config.Interface)
-
- //device, err := deviceRepo.GetDeviceDetails(c, c.Param("wwn"))
- //if err != nil {
- // logger.Errorln("An error occurred while retrieving device details", err)
- // c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- // return
- //}
- //
- //durationKey, exists := c.GetQuery("duration_key")
- //if !exists {
- // durationKey = "forever"
- //}
- //
- //smartResults, err := deviceRepo.GetSmartAttributeHistory(c, c.Param("wwn"), durationKey, nil)
- //if err != nil {
- // logger.Errorln("An error occurred while retrieving device smart results", err)
- // c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- // return
- //}
-
- c.JSON(http.StatusOK, gin.H{"success": true, "data": map[string]interface{}{"hello": "world"}})
-}
diff --git a/backend/pkg/web/handler/resource_fhir.go b/backend/pkg/web/handler/resource_fhir.go
deleted file mode 100644
index 73d50b9e..00000000
--- a/backend/pkg/web/handler/resource_fhir.go
+++ /dev/null
@@ -1,51 +0,0 @@
-package handler
-
-import (
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/gin-gonic/gin"
- "github.com/sirupsen/logrus"
- "net/http"
- "strings"
-)
-
-func ListResourceFhir(c *gin.Context) {
- logger := c.MustGet("LOGGER").(*logrus.Entry)
- databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
-
- listResourceQueryOptions := models.ListResourceQueryOptions{}
- if len(c.Query("sourceResourceType")) > 0 {
- listResourceQueryOptions.SourceResourceType = c.Query("sourceResourceType")
- }
- if len(c.Query("sourceID")) > 0 {
- listResourceQueryOptions.SourceID = c.Query("sourceID")
- }
-
- wrappedResourceModels, err := databaseRepo.ListResources(c, listResourceQueryOptions)
-
- if err != nil {
- logger.Errorln("An error occurred while retrieving resources", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- return
- }
-
- c.JSON(http.StatusOK, gin.H{"success": true, "data": wrappedResourceModels})
-}
-
-//this endpoint retrieves a specific resource by its ID
-func GetResourceFhir(c *gin.Context) {
- logger := c.MustGet("LOGGER").(*logrus.Entry)
- databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
-
- resourceId := strings.Trim(c.Param("resourceId"), "/")
- sourceId := strings.Trim(c.Param("sourceId"), "/")
- wrappedResourceModel, err := databaseRepo.GetResourceBySourceId(c, sourceId, resourceId)
-
- if err != nil {
- logger.Errorln("An error occurred while retrieving resource", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- return
- }
-
- c.JSON(http.StatusOK, gin.H{"success": true, "data": wrappedResourceModel})
-}
diff --git a/backend/pkg/web/handler/source.go b/backend/pkg/web/handler/source.go
deleted file mode 100644
index 12e1b8f1..00000000
--- a/backend/pkg/web/handler/source.go
+++ /dev/null
@@ -1,202 +0,0 @@
-package handler
-
-import (
- "fmt"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/hub"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/models"
- "github.com/gin-gonic/gin"
- "github.com/sirupsen/logrus"
- "io/ioutil"
- "net/http"
- "net/url"
- "strings"
-)
-
-func SourceSync(c *gin.Context) {
- logger := c.MustGet("LOGGER").(*logrus.Entry)
- databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
-
- logger.Infof("Get Source Credentials: %v", c.Param("sourceId"))
-
- sourceCred, err := databaseRepo.GetSource(c, c.Param("sourceId"))
- if err != nil {
- logger.Errorln("An error occurred while retrieving source credential", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- return
- }
-
- // after creating the source, we should do a bulk import
- err = syncSourceResources(c, logger, databaseRepo, *sourceCred)
- if err != nil {
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- return
- }
- c.JSON(http.StatusOK, gin.H{"success": true, "data": sourceCred})
-}
-
-func CreateManualSource(c *gin.Context) {
- logger := c.MustGet("LOGGER").(*logrus.Entry)
- databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
-
- // single file
- file, err := c.FormFile("file")
- if err != nil {
- c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": "could not extract file from form"})
- return
- }
- fmt.Printf("Uploaded filename: %s", file.Filename)
-
- // create a temporary file to store this uploaded file
- bundleFile, err := ioutil.TempFile("", file.Filename)
- if err != nil {
- c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": "could not create temp file"})
- return
- }
-
- // Upload the file to specific bundleFile.
- err = c.SaveUploadedFile(file, bundleFile.Name())
- if err != nil {
- c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": "could not save temp file"})
- return
- }
-
- // We cannot save the "Source" object yet, as we do not know the patientID
-
- // create a "manual" client, which we can use to parse the
- manualSourceClient, _, err := hub.NewClient(pkg.SourceTypeManual, c, nil, logger, models.Source{})
- if err != nil {
- logger.Errorln("An error occurred while initializing hub client using manual source without credentials", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- return
- }
-
- err = manualSourceClient.SyncAllBundle(databaseRepo, bundleFile)
- if err != nil {
- logger.Errorln("An error occurred while processing bundle", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error()})
- return
- }
-
- c.JSON(http.StatusOK, gin.H{"success": true, "data": fmt.Sprintf("'%s' uploaded!", file.Filename)})
-}
-
-func GetSource(c *gin.Context) {
- logger := c.MustGet("LOGGER").(*logrus.Entry)
- databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
-
- sourceCred, err := databaseRepo.GetSource(c, c.Param("sourceId"))
- if err != nil {
- logger.Errorln("An error occurred while retrieving source credential", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- return
- }
- c.JSON(http.StatusOK, gin.H{"success": true, "data": sourceCred})
-}
-
-func GetSourceSummary(c *gin.Context) {
- logger := c.MustGet("LOGGER").(*logrus.Entry)
- databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
-
- sourceSummary, err := databaseRepo.GetSourceSummary(c, c.Param("sourceId"))
- if err != nil {
- logger.Errorln("An error occurred while retrieving source summary", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- return
- }
- c.JSON(http.StatusOK, gin.H{"success": true, "data": sourceSummary})
-}
-
-func ListSource(c *gin.Context) {
- logger := c.MustGet("LOGGER").(*logrus.Entry)
- databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
-
- sourceCreds, err := databaseRepo.GetSources(c)
- if err != nil {
- logger.Errorln("An error occurred while listing source credentials", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- return
- }
- c.JSON(http.StatusOK, gin.H{"success": true, "data": sourceCreds})
-}
-
-func RawRequestSource(c *gin.Context) {
- logger := c.MustGet("LOGGER").(*logrus.Entry)
- databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
-
- //!!!!!!INSECURE!!!!!!S
- //We're setting the username to a user provided value, this is insecure, but required for calling databaseRepo fns
- c.Set("AUTH_USERNAME", c.Param("username"))
-
- foundSource, err := databaseRepo.GetSource(c, c.Param("sourceId"))
- if err != nil {
- logger.Errorf("An error occurred while finding source credential: %v", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error()})
- return
- }
-
- if foundSource == nil {
- logger.Errorf("Did not source credentials for %s", c.Param("sourceType"))
- c.JSON(http.StatusNotFound, gin.H{"success": false, "error": err.Error()})
- return
- }
-
- client, updatedSource, err := hub.NewClient(foundSource.SourceType, c, nil, logger, *foundSource)
- if err != nil {
- logger.Errorf("Could not initialize source client %v", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error()})
- return
- }
- if updatedSource != nil {
- err := databaseRepo.CreateSource(c, updatedSource)
- if err != nil {
- logger.Errorf("An error occurred while updating source credential %v", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error()})
- return
- }
- }
-
- var resp map[string]interface{}
-
- parsedUrl, err := url.Parse(strings.TrimSuffix(c.Param("path"), "/"))
- if err != nil {
- logger.Errorf("Error parsing request, %v", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error()})
- return
- }
- //make sure we include all query string parameters with the raw request.
- parsedUrl.RawQuery = c.Request.URL.Query().Encode()
-
- err = client.GetRequest(parsedUrl.String(), &resp)
- if err != nil {
- logger.Errorf("Error making raw request, %v", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false, "error": err.Error(), "data": resp})
- return
- }
- c.JSON(http.StatusOK, gin.H{"success": true, "data": resp})
-}
-
-////// private functions
-func syncSourceResources(c *gin.Context, logger *logrus.Entry, databaseRepo database.DatabaseRepository, sourceCred models.Source) error {
- // after creating the source, we should do a bulk import
- sourceClient, updatedSource, err := hub.NewClient(sourceCred.SourceType, c, nil, logger, sourceCred)
- if err != nil {
- logger.Errorln("An error occurred while initializing hub client using source credential", err)
- return err
- }
- if updatedSource != nil {
- err := databaseRepo.CreateSource(c, updatedSource)
- if err != nil {
- logger.Errorln("An error occurred while updating source credential", err)
- return err
- }
- }
-
- err = sourceClient.SyncAll(databaseRepo)
- if err != nil {
- logger.Errorln("An error occurred while bulk import of resources from source", err)
- return err
- }
- return nil
-}
diff --git a/backend/pkg/web/handler/summary.go b/backend/pkg/web/handler/summary.go
deleted file mode 100644
index 182b5edc..00000000
--- a/backend/pkg/web/handler/summary.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package handler
-
-import (
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/database"
- "github.com/gin-gonic/gin"
- "github.com/sirupsen/logrus"
- "net/http"
-)
-
-func GetSummary(c *gin.Context) {
- logger := c.MustGet("LOGGER").(*logrus.Entry)
- databaseRepo := c.MustGet("REPOSITORY").(database.DatabaseRepository)
-
- summary, err := databaseRepo.GetSummary(c)
- if err != nil {
- logger.Errorln("An error occurred while retrieving summary", err)
- c.JSON(http.StatusInternalServerError, gin.H{"success": false})
- return
- }
- c.JSON(http.StatusOK, gin.H{"success": true, "data": summary})
-}
diff --git a/backend/pkg/web/middleware/require_auth.go b/backend/pkg/web/middleware/require_auth.go
deleted file mode 100644
index bb378acf..00000000
--- a/backend/pkg/web/middleware/require_auth.go
+++ /dev/null
@@ -1,47 +0,0 @@
-package middleware
-
-import (
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/auth"
- "github.com/fastenhealth/fastenhealth-onprem/backend/pkg/config"
- "github.com/gin-gonic/gin"
- "log"
- "net/http"
- "strings"
-)
-
-func RequireAuth() gin.HandlerFunc {
- return func(c *gin.Context) {
- appConfig := c.MustGet("CONFIG").(config.Interface)
-
- authHeader := c.GetHeader("Authorization")
- authHeaderParts := strings.Split(authHeader, " ")
-
- if len(authHeaderParts) != 2 {
- log.Println("Authentication header is invalid: " + authHeader)
- c.JSON(http.StatusUnauthorized, gin.H{"success": false, "error": "request does not contain a valid token"})
- c.Abort()
- return
- }
-
- tokenString := authHeaderParts[1]
-
- if tokenString == "" {
- c.JSON(http.StatusUnauthorized, gin.H{"success": false, "error": "request does not contain an access token"})
- c.Abort()
- return
- }
- claim, err := auth.ValidateToken(appConfig.GetString("web.jwt.encryptionkey"), tokenString)
- if err != nil {
- c.JSON(http.StatusUnauthorized, gin.H{"success": false, "error": err.Error()})
- c.Abort()
- return
- }
-
- //todo, is this shared between all sessions??
- c.Set("AUTH_TOKEN", tokenString)
- c.Set("AUTH_USERNAME", claim.Username)
- c.Set("AUTH_USERID", claim.UserId)
-
- c.Next()
- }
-}
diff --git a/backend/pkg/web/server.go b/backend/pkg/web/server.go
index 03d906f9..cfa6d1b8 100644
--- a/backend/pkg/web/server.go
+++ b/backend/pkg/web/server.go
@@ -41,30 +41,7 @@ func (ae *AppEngine) Setup(logger *logrus.Entry) *gin.Engine {
})
api.POST("/auth/signup", handler.AuthSignup)
- api.POST("/auth/signin", handler.AuthSignin)
-
- secure := api.Group("/secure").Use(middleware.RequireAuth())
- {
- secure.GET("/summary", handler.GetSummary)
-
- secure.POST("/source/manual", handler.CreateManualSource)
- secure.GET("/source", handler.ListSource)
- secure.GET("/source/:sourceId", handler.GetSource)
- secure.POST("/source/:sourceId/sync", handler.SourceSync)
- secure.GET("/source/:sourceId/summary", handler.GetSourceSummary)
- secure.GET("/resource/fhir", handler.ListResourceFhir) //
- secure.GET("/resource/fhir/:sourceId/:resourceId", handler.GetResourceFhir)
- }
-
api.GET("/metadata/source", handler.GetMetadataSource)
-
- if ae.Config.GetString("log.level") == "DEBUG" {
- //in debug mode, this endpoint lets us request data directly from the source api
- ae.Logger.Warningf("***INSECURE*** ***INSECURE*** DEBUG mode enables developer functionality, including unauthenticated raw api requests")
-
- //http://localhost:9090/api/raw/test@test.com/436d7277-ad56-41ce-9823-44e353d1b3f6/Patient/smart-1288992
- api.GET("/raw/:username/:sourceId/*path", handler.RawRequestSource)
- }
}
}
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 00000000..cc2fb3b2
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,14 @@
+version: "3.9"
+services:
+ couchdb:
+ build:
+ context: ./docker/couchdb
+ dockerfile: Dockerfile
+# environment:
+# - COUCHDB_USER=admin
+# - COUCHDB_PASSWORD=password
+ ports:
+ - "5984:5984"
+ volumes:
+ - ./.couchdb/data:/opt/couchdb/data
+ - ./.couchdb/config:/opt/couchdb/etc/local.d
diff --git a/docker/couchdb/Dockerfile b/docker/couchdb/Dockerfile
new file mode 100644
index 00000000..7fbc2096
--- /dev/null
+++ b/docker/couchdb/Dockerfile
@@ -0,0 +1,3 @@
+FROM couchdb:3.2
+
+COPY local.ini /opt/couchdb/etc/
diff --git a/docker/couchdb/local.ini b/docker/couchdb/local.ini
new file mode 100644
index 00000000..fada0515
--- /dev/null
+++ b/docker/couchdb/local.ini
@@ -0,0 +1,108 @@
+; CouchDB Configuration Settings
+
+; Custom settings should be made in this file. They will override settings
+; in default.ini, but unlike changes made to default.ini, this file won't be
+; overwritten on server upgrade.
+
+[cors]
+origins = *
+headers = accept, authorization, content-type, origin, referer
+credentials = true
+methods = GET, PUT, POST, HEAD, DELETE
+
+[couchdb]
+;max_document_size = 4294967296 ; bytes
+;os_process_timeout = 5000
+single_node=true
+
+[couch_peruser]
+; If enabled, couch_peruser ensures that a private per-user database
+; exists for each document in _users. These databases are writable only
+; by the corresponding user. Databases are in the following form:
+; userdb-{hex encoded username}
+enable = true
+; If set to true and a user is deleted, the respective database gets
+; deleted as well.
+;delete_dbs = true
+; Set a default q value for peruser-created databases that is different from
+; cluster / q
+;q = 1
+
+[chttpd]
+;port = 5984
+;bind_address = 127.0.0.1
+; Options for the MochiWeb HTTP server.
+;server_options = [{backlog, 128}, {acceptor_pool_size, 16}]
+; For more socket options, consult Erlang's module 'inet' man page.
+;socket_options = [{sndbuf, 262144}, {nodelay, true}]
+bind_address = 0.0.0.0
+enable_cors = true
+x_forwarded_host = X-Forwarded-Host
+
+[httpd]
+; NOTE that this only configures the "backend" node-local port, not the
+; "frontend" clustered port. You probably don't want to change anything in
+; this section.
+; Uncomment next line to trigger basic-auth popup on unauthorized requests.
+;WWW-Authenticate = Basic realm="administrator"
+
+; Uncomment next line to set the configuration modification whitelist. Only
+; whitelisted values may be changed via the /_config URLs. To allow the admin
+; to change this value over HTTP, remember to include {httpd,config_whitelist}
+; itself. Excluding it from the list would require editing this file to update
+; the whitelist.
+;config_whitelist = [{httpd,config_whitelist}, {log,level}, {etc,etc}]
+enable_cors = true
+
+[chttpd_auth]
+; If you set this to true, you should also uncomment the WWW-Authenticate line
+; above. If you don't configure a WWW-Authenticate header, CouchDB will send
+; Basic realm="server" in order to prevent you getting logged out.
+; require_valid_user = false
+allow_persistent_cookies = true
+;cookie_domain = localhost:5984
+
+[ssl]
+;enable = true
+;cert_file = /full/path/to/server_cert.pem
+;key_file = /full/path/to/server_key.pem
+;password = somepassword
+; set to true to validate peer certificates
+;verify_ssl_certificates = false
+; Set to true to fail if the client does not send a certificate. Only used if verify_ssl_certificates is true.
+;fail_if_no_peer_cert = false
+; Path to file containing PEM encoded CA certificates (trusted
+; certificates used for verifying a peer certificate). May be omitted if
+; you do not want to verify the peer.
+;cacert_file = /full/path/to/cacertf
+; The verification fun (optional) if not specified, the default
+; verification fun will be used.
+;verify_fun = {Module, VerifyFun}
+; maximum peer certificate depth
+;ssl_certificate_max_depth = 1
+;
+; Reject renegotiations that do not live up to RFC 5746.
+;secure_renegotiate = true
+; The cipher suites that should be supported.
+; Can be specified in erlang format "{ecdhe_ecdsa,aes_128_cbc,sha256}"
+; or in OpenSSL format "ECDHE-ECDSA-AES128-SHA256".
+;ciphers = ["ECDHE-ECDSA-AES128-SHA256", "ECDHE-ECDSA-AES128-SHA"]
+; The SSL/TLS versions to support
+;tls_versions = [tlsv1, 'tlsv1.1', 'tlsv1.2']
+
+; To enable Virtual Hosts in CouchDB, add a vhost = path directive. All requests to
+; the Virual Host will be redirected to the path. In the example below all requests
+; to http://example.com/ are redirected to /database.
+; If you run CouchDB on a specific port, include the port number in the vhost:
+; example.com:5984 = /database
+[vhosts]
+;example.com = /database/
+
+; To create an admin account uncomment the '[admins]' section below and add a
+; line in the format 'username = password'. When you next start CouchDB, it
+; will change the password to a hash (so that your passwords don't linger
+; around in plain-text files). You can add more admin accounts with more
+; 'username = password' lines. Don't forget to restart CouchDB after
+; changing this.
+[admins]
+admin = mysecretpassword
diff --git a/go.mod b/go.mod
index 6db8042c..fbe0618d 100644
--- a/go.mod
+++ b/go.mod
@@ -4,40 +4,25 @@ go 1.18
require (
github.com/analogj/go-util v0.0.0-20210417161720-39b497cca03b
- github.com/fastenhealth/gofhir-models v0.0.4
github.com/gin-gonic/gin v1.8.1
- github.com/glebarez/sqlite v1.4.6
- github.com/golang-jwt/jwt v3.2.2+incompatible
+ github.com/go-kivik/couchdb/v3 v3.3.0
+ github.com/go-kivik/kivik/v3 v3.2.3
github.com/golang/mock v1.4.4
- github.com/google/uuid v1.3.0
- github.com/samber/lo v1.27.1
- github.com/seborama/govcr v4.5.0+incompatible
github.com/sirupsen/logrus v1.9.0
github.com/spf13/viper v1.12.0
- github.com/stretchr/testify v1.7.1
github.com/urfave/cli/v2 v2.11.2
- golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
- golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
- gorm.io/datatypes v1.0.7
- gorm.io/gorm v1.23.8
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
- github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
- github.com/glebarez/go-sqlite v1.17.3 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/go-playground/validator/v10 v10.10.0 // indirect
- github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/goccy/go-json v0.9.7 // indirect
- github.com/golang/protobuf v1.5.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
- github.com/jinzhu/inflection v1.0.0 // indirect
- github.com/jinzhu/now v1.1.5 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kvz/logstreamer v0.0.0-20150507115422-a635b98146f0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
@@ -50,8 +35,6 @@ require (
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
- github.com/pmezard/go-difflib v1.0.0 // indirect
- github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
@@ -60,19 +43,14 @@ require (
github.com/subosito/gotenv v1.3.0 // indirect
github.com/ugorji/go/codec v1.2.7 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
- golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
- golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect
- golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
+ golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect
+ golang.org/x/net v0.0.0-20221004154528-8021a29435af // indirect
+ golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.3.7 // indirect
- google.golang.org/appengine v1.6.7 // indirect
+ golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/ini.v1 v1.66.4 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
- gorm.io/driver/mysql v1.3.2 // indirect
- modernc.org/libc v1.16.8 // indirect
- modernc.org/mathutil v1.4.1 // indirect
- modernc.org/memory v1.1.1 // indirect
- modernc.org/sqlite v1.17.3 // indirect
)
diff --git a/go.sum b/go.sum
index b865734a..fd829d86 100644
--- a/go.sum
+++ b/go.sum
@@ -1,3 +1,4 @@
+bou.ke/monkey v1.0.1/go.mod h1:FgHuK96Rv2Nlf+0u1OOVDpCMdsWyOFmeeketDHE7LIg=
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=
@@ -36,11 +37,9 @@ cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RX
cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0=
cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo=
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
-github.com/Azure/azure-sdk-for-go/sdk/azcore v0.19.0/go.mod h1:h6H6c8enJmmocHUbLiiGY6sx7f9i+X3m1CHdd5c6Rdw=
-github.com/Azure/azure-sdk-for-go/sdk/azidentity v0.11.0/go.mod h1:HcM1YX14R7CJcghJGOYCgdezslRSVzqwLf/q+4Y2r/0=
-github.com/Azure/azure-sdk-for-go/sdk/internal v0.7.0/go.mod h1:yqy467j36fJxcRV2TzfVZ1pCb5vxm4BtZPUdYWe/Xo8=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
+github.com/Masterminds/semver/v3 v3.1.1 h1:hLg3sBzpNErnxhQtUy/mmLR2I9foDujNK030IGemrRc=
github.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs=
github.com/analogj/go-util v0.0.0-20210417161720-39b497cca03b h1:Y/+MfmdKPPpVY7C6ggt/FpltFSitlpUtyJEdcQyFXQg=
github.com/analogj/go-util v0.0.0-20210417161720-39b497cca03b/go.mod h1:bRSzJXgXnT5+Ihah7RSC7Cvp16UmoLn3wq6ROciS1Ow=
@@ -52,31 +51,23 @@ github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDk
github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
-github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ=
-github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=
-github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=
github.com/cpuguy83/go-md2man/v2 v2.0.2 h1:p1EgwI/C7NhT0JmVkwCD2ZBK8j4aeHQX2pMHHBfMQ6w=
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
-github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
-github.com/denisenkom/go-mssqldb v0.12.0 h1:VtrkII767ttSPNRfFekePK3sctr+joXgO58stqQbtUA=
-github.com/denisenkom/go-mssqldb v0.12.0/go.mod h1:iiK0YP1ZeepvmBQk/QpLEhhTNJgfzrpArPY/aFvc9yU=
-github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ=
-github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk=
github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=
github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po=
github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
-github.com/fastenhealth/gofhir-models v0.0.4 h1:Q//StwNXGfK+WAS2DckGBHAP1R4cHMRZEF/sLGgmR04=
-github.com/fastenhealth/gofhir-models v0.0.4/go.mod h1:xB8ikGxu3bUq2b1JYV+CZpHqBaLXpOizFR0eFBCunis=
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
github.com/fatih/color v1.13.0 h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w=
github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk=
+github.com/flimzy/diff v0.1.5/go.mod h1:lFJtC7SPsK0EroDmGTSrdtWKAxOk3rO+q+e04LL05Hs=
+github.com/flimzy/testy v0.1.17-0.20190521133342-95b386c3ece6/go.mod h1:3szguN8NXqgq9bt9Gu8TQVj698PJWmyx/VY1frwwKrM=
github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE=
github.com/fsnotify/fsnotify v1.5.4 h1:jRbGcIw6P2Meqdwuo0H1p6JVLbL5DHKAKlYndzMwVZI=
github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU=
@@ -84,15 +75,17 @@ github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE
github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI=
github.com/gin-gonic/gin v1.8.1 h1:4+fr/el88TOO3ewCmQr8cx/CtZ/umlIRIs5M4NTNjf8=
github.com/gin-gonic/gin v1.8.1/go.mod h1:ji8BvRH1azfM+SYow9zQ6SZMvR8qOMZHmsCuWR9tTTk=
-github.com/glebarez/go-sqlite v1.17.3 h1:Rji9ROVSTTfjuWD6j5B+8DtkNvPILoUC3xRhkQzGxvk=
-github.com/glebarez/go-sqlite v1.17.3/go.mod h1:Hg+PQuhUy98XCxWEJEaWob8x7lhJzhNYF1nZbUiRGIY=
-github.com/glebarez/sqlite v1.4.6 h1:D5uxD2f6UJ82cHnVtO2TZ9pqsLyto3fpDKHIk2OsR8A=
-github.com/glebarez/sqlite v1.4.6/go.mod h1:WYEtEFjhADPaPJqL/PGlbQQGINBA3eUAfDNbKFJf/zA=
github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
-github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY=
-github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A=
+github.com/go-kivik/couchdb/v3 v3.3.0 h1:xipDIw66Sqei550OzSXWlLmJ9y01fMbBLkX0F/snjnw=
+github.com/go-kivik/couchdb/v3 v3.3.0/go.mod h1:idTUN/G5HGE+YP2EgW+dvZ5ODkdhvddcU7ZzFZfwN6Q=
+github.com/go-kivik/kivik/v3 v3.0.1/go.mod h1:7tmQDvkta/pcijpUjLMsQ9HJUELiKD5zm6jQ3Gb9cxE=
+github.com/go-kivik/kivik/v3 v3.2.0/go.mod h1:chqVuHKAU9j2C7qL0cAH2FCO26oL+0B4aIBeCRMnLa8=
+github.com/go-kivik/kivik/v3 v3.2.3 h1:ZFGR3hMDa+AUmPUCQxq4da3+3C4awdFQwdOtjLS+MxM=
+github.com/go-kivik/kivik/v3 v3.2.3/go.mod h1:chqVuHKAU9j2C7qL0cAH2FCO26oL+0B4aIBeCRMnLa8=
+github.com/go-kivik/kiviktest/v3 v3.0.4 h1:mHX/9gpz5VdSOOOs7sN0/6iLK6jQcLiYbteEd33cKNo=
+github.com/go-kivik/kiviktest/v3 v3.0.4/go.mod h1:sqsz3M2sJxTxAUdOj+2SU21y4phcpYc0FJIn+hbf1D0=
github.com/go-playground/assert/v2 v2.0.1 h1:MsBgLAaY856+nPRTKrp3/OZK38U/wa0CcBYNjji3q3A=
github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=
github.com/go-playground/locales v0.14.0 h1:u50s323jtVGugKlcYeyzC0etD1HifMjqmJqb8WugfUU=
@@ -101,19 +94,8 @@ github.com/go-playground/universal-translator v0.18.0 h1:82dyy6p4OuJq4/CByFNOn/j
github.com/go-playground/universal-translator v0.18.0/go.mod h1:UvRDBj+xPUEGrFYl+lu/H90nyDXpg0fqeB/AQUGNTVA=
github.com/go-playground/validator/v10 v10.10.0 h1:I7mrTYv78z8k8VXa/qJlOlEXn/nBh+BF8dHX5nt/dr0=
github.com/go-playground/validator/v10 v10.10.0/go.mod h1:74x4gJWsvQexRdW8Pn3dXSGrTK4nAUsbPlLADvpJkos=
-github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE=
-github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
-github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
github.com/goccy/go-json v0.9.7 h1:IcB+Aqpx/iMHu5Yooh7jEzJk1JZ7Pjtmys2ukPr7EeM=
github.com/goccy/go-json v0.9.7/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
-github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
-github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=
-github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=
-github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0=
-github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 h1:au07oEsX2xN0ktxqI+Sida1w446QrXBRJ0nee3SNZlA=
-github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0=
-github.com/golang-sql/sqlexp v0.0.0-20170517235910-f1bb20e5a188 h1:+eHOFJl1BaXrQxKX+T06f78590z4qA2ZzBTqahsKSE4=
-github.com/golang-sql/sqlexp v0.0.0-20170517235910-f1bb20e5a188/go.mod h1:vXjM/+wXQnTPR4KqTKDgJukSZ6amVRtWMPEjE6sQoK8=
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
@@ -141,8 +123,6 @@ github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QD
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
-github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=
-github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
@@ -153,7 +133,6 @@ github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg=
@@ -173,85 +152,29 @@ github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLe
github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
-github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
-github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g=
+github.com/gopherjs/gopherjs v0.0.0-20180825215210-0210a2f0f73c/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
+github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 h1:l5lAOZEym3oK3SQ2HBHWsJUfbNBiTXJDeW2QDxw9AQ0=
+github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
-github.com/jackc/chunkreader v1.0.0 h1:4s39bBR8ByfqH+DKm8rQA3E1LHZWB9XWcrz8fqaZbe0=
-github.com/jackc/chunkreader v1.0.0/go.mod h1:RT6O25fNZIuasFJRyZ4R/Y2BbhasbmZXF9QQ7T3kePo=
-github.com/jackc/chunkreader/v2 v2.0.0/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk=
-github.com/jackc/chunkreader/v2 v2.0.1 h1:i+RDz65UE+mmpjTfyz0MoVTnzeYxroil2G82ki7MGG8=
-github.com/jackc/chunkreader/v2 v2.0.1/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk=
-github.com/jackc/pgconn v0.0.0-20190420214824-7e0022ef6ba3/go.mod h1:jkELnwuX+w9qN5YIfX0fl88Ehu4XC3keFuOJJk9pcnA=
-github.com/jackc/pgconn v0.0.0-20190824142844-760dd75542eb/go.mod h1:lLjNuW/+OfW9/pnVKPazfWOgNfH2aPem8YQ7ilXGvJE=
-github.com/jackc/pgconn v0.0.0-20190831204454-2fabfa3c18b7/go.mod h1:ZJKsE/KZfsUgOEh9hBm+xYTstcNHg7UPMVJqRfQxq4s=
-github.com/jackc/pgconn v1.8.0/go.mod h1:1C2Pb36bGIP9QHGBYCjnyhqu7Rv3sGshaQUvmfGIB/o=
-github.com/jackc/pgconn v1.9.0/go.mod h1:YctiPyvzfU11JFxoXokUOOKQXQmDMoJL9vJzHH8/2JY=
-github.com/jackc/pgconn v1.9.1-0.20210724152538-d89c8390a530/go.mod h1:4z2w8XhRbP1hYxkpTuBjTS3ne3J48K83+u0zoyvg2pI=
-github.com/jackc/pgconn v1.11.0 h1:HiHArx4yFbwl91X3qqIHtUFoiIfLNJXCQRsnzkiwwaQ=
-github.com/jackc/pgconn v1.11.0/go.mod h1:4z2w8XhRbP1hYxkpTuBjTS3ne3J48K83+u0zoyvg2pI=
-github.com/jackc/pgio v1.0.0 h1:g12B9UwVnzGhueNavwioyEEpAmqMe1E/BN9ES+8ovkE=
-github.com/jackc/pgio v1.0.0/go.mod h1:oP+2QK2wFfUWgr+gxjoBH9KGBb31Eio69xUb0w5bYf8=
-github.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2/go.mod h1:fGZlG77KXmcq05nJLRkk0+p82V8B8Dw8KN2/V9c/OAE=
-github.com/jackc/pgmock v0.0.0-20201204152224-4fe30f7445fd/go.mod h1:hrBW0Enj2AZTNpt/7Y5rr2xe/9Mn757Wtb2xeBzPv2c=
-github.com/jackc/pgmock v0.0.0-20210724152146-4ad1a8207f65/go.mod h1:5R2h2EEX+qri8jOWMbJCtaPWkrrNc7OHwsp2TCqp7ak=
-github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM=
-github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg=
-github.com/jackc/pgproto3 v1.1.0 h1:FYYE4yRw+AgI8wXIinMlNjBbp/UitDJwfj5LqqewP1A=
-github.com/jackc/pgproto3 v1.1.0/go.mod h1:eR5FA3leWg7p9aeAqi37XOTgTIbkABlvcPB3E5rlc78=
-github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190420180111-c116219b62db/go.mod h1:bhq50y+xrl9n5mRYyCBFKkpRVTLYJVWeCc+mEAI3yXA=
-github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190609003834-432c2951c711/go.mod h1:uH0AWtUmuShn0bcesswc4aBTWGvw0cAxIJp+6OB//Wg=
-github.com/jackc/pgproto3/v2 v2.0.0-rc3/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM=
-github.com/jackc/pgproto3/v2 v2.0.0-rc3.0.20190831210041-4c03ce451f29/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM=
-github.com/jackc/pgproto3/v2 v2.0.6/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA=
-github.com/jackc/pgproto3/v2 v2.1.1/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA=
-github.com/jackc/pgproto3/v2 v2.2.0 h1:r7JypeP2D3onoQTCxWdTpCtJ4D+qpKr0TxvoyMhZ5ns=
-github.com/jackc/pgproto3/v2 v2.2.0/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA=
-github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b h1:C8S2+VttkHFdOOCXJe+YGfa4vHYwlt4Zx+IVXQ97jYg=
-github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E=
-github.com/jackc/pgtype v0.0.0-20190421001408-4ed0de4755e0/go.mod h1:hdSHsc1V01CGwFsrv11mJRHWJ6aifDLfdV3aVjFF0zg=
-github.com/jackc/pgtype v0.0.0-20190824184912-ab885b375b90/go.mod h1:KcahbBH1nCMSo2DXpzsoWOAfFkdEtEJpPbVLq8eE+mc=
-github.com/jackc/pgtype v0.0.0-20190828014616-a8802b16cc59/go.mod h1:MWlu30kVJrUS8lot6TQqcg7mtthZ9T0EoIBFiJcmcyw=
-github.com/jackc/pgtype v1.8.1-0.20210724151600-32e20a603178/go.mod h1:C516IlIV9NKqfsMCXTdChteoXmwgUceqaLfjg2e3NlM=
-github.com/jackc/pgtype v1.10.0 h1:ILnBWrRMSXGczYvmkYD6PsYyVFUNLTnIUJHHDLmqk38=
-github.com/jackc/pgtype v1.10.0/go.mod h1:LUMuVrfsFfdKGLw+AFFVv6KtHOFMwRgDDzBt76IqCA4=
-github.com/jackc/pgx/v4 v4.0.0-20190420224344-cc3461e65d96/go.mod h1:mdxmSJJuR08CZQyj1PVQBHy9XOp5p8/SHH6a0psbY9Y=
-github.com/jackc/pgx/v4 v4.0.0-20190421002000-1b8f0016e912/go.mod h1:no/Y67Jkk/9WuGR0JG/JseM9irFbnEPbuWV2EELPNuM=
-github.com/jackc/pgx/v4 v4.0.0-pre1.0.20190824185557-6972a5742186/go.mod h1:X+GQnOEnf1dqHGpw7JmHqHc1NxDoalibchSk9/RWuDc=
-github.com/jackc/pgx/v4 v4.12.1-0.20210724153913-640aa07df17c/go.mod h1:1QD0+tgSXP7iUjYm9C1NxKhny7lq6ee99u/z+IHFcgs=
-github.com/jackc/pgx/v4 v4.15.0 h1:B7dTkXsdILD3MF987WGGCcg+tvLW6bZJdEcqVFeU//w=
-github.com/jackc/pgx/v4 v4.15.0/go.mod h1:D/zyOyXiaM1TmVWnOM18p0xdDtdakRBa0RsVGI3U3bw=
-github.com/jackc/puddle v0.0.0-20190413234325-e4ced69a3a2b/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=
-github.com/jackc/puddle v0.0.0-20190608224051-11cab39313c9/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=
-github.com/jackc/puddle v1.1.3/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=
-github.com/jackc/puddle v1.2.1/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=
-github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E=
-github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc=
-github.com/jinzhu/now v1.1.4/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8=
-github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ=
-github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8=
github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=
github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk=
-github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8=
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
-github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
-github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg=
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0=
github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
-github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
@@ -259,27 +182,16 @@ github.com/kvz/logstreamer v0.0.0-20150507115422-a635b98146f0 h1:3tLzEnUizyN9YLW
github.com/kvz/logstreamer v0.0.0-20150507115422-a635b98146f0/go.mod h1:8/LTPeDLaklcUjgSQBHbhBF1ibKAFxzS5o+H7USfMSA=
github.com/leodido/go-urn v1.2.1 h1:BqpAaACuzVSgi/VLzGZIobT2z4v53pjosyNd9Yv6n/w=
github.com/leodido/go-urn v1.2.1/go.mod h1:zt4jvISO2HfUBqxjfIshjdMTYS56ZS/qv49ictyFfxY=
-github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
-github.com/lib/pq v1.1.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
-github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
-github.com/lib/pq v1.10.2/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
github.com/magiconair/properties v1.8.6 h1:5ibWZ6iY0NctNGWo87LalDlEZ6R41TqbbDamhfG/Qzo=
github.com/magiconair/properties v1.8.6/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60=
github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU=
-github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ=
-github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=
github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=
github.com/mattn/go-colorable v0.1.12 h1:jF+Du6AlPIjs2BiUiQlKOX0rt3SujHxPnksPKZbaA40=
github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4=
-github.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=
github.com/mattn/go-isatty v0.0.6/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=
-github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=
github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y=
github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
-github.com/mattn/go-sqlite3 v1.14.9/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
-github.com/mattn/go-sqlite3 v1.14.12 h1:TJ1bhYJPV44phC+IMu1u2K/i5RriLTPe+yc68XDJ1Z0=
-github.com/mattn/go-sqlite3 v1.14.12/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=
@@ -289,39 +201,33 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
-github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8=
+github.com/otiai10/copy v1.0.2/go.mod h1:c7RpqBkwMom4bYTSkLSym4VSJz/XtncWRAj/J4PEIMY=
+github.com/otiai10/copy v1.7.0 h1:hVoPiN+t+7d2nzzwMiDHPSOogsWAStewq3TwU05+clE=
+github.com/otiai10/copy v1.7.0/go.mod h1:rmRl6QPdJj6EiUqXQ/4Nn2lLXoNQjFCQbbNrxgc/t3U=
+github.com/otiai10/curr v0.0.0-20150429015615-9b4961190c95/go.mod h1:9qAhocn7zKJG+0mI8eUu6xqkFDYS2kb2saOteoSB3cE=
+github.com/otiai10/curr v0.0.0-20190513014714-f5a3d24e5776/go.mod h1:3HNVkVOU7vZeFXocWuvtcS0XSFLcf2XUSDHkq9t1jU4=
+github.com/otiai10/curr v1.0.0/go.mod h1:LskTG5wDwr8Rs+nNQ+1LlxRjAtTZZjtJW4rMXl6j4vs=
+github.com/otiai10/mint v1.2.4/go.mod h1:d+b7n/0R3tdyUYYylALXpWQ/kTN+QobSq/4SRGBkR3M=
+github.com/otiai10/mint v1.3.0/go.mod h1:F5AjcsTsWUqX+Na9fpHb52P8pcRX2CI6A3ctIT91xUo=
+github.com/otiai10/mint v1.3.3/go.mod h1:/yxELlJQ0ufhjUwhshSj+wFjZ78CnZ48/1wtmBH1OTc=
github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8=
github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
github.com/pelletier/go-toml/v2 v2.0.1 h1:8e3L2cCQzLFi2CR4g7vGFuFxX7Jl1kKX8gW+iV0GUKU=
github.com/pelletier/go-toml/v2 v2.0.1/go.mod h1:r9LEWfGN8R5k0VXJ+0BkIe7MYkRdwZOjgMj2KwnJFUo=
-github.com/pkg/browser v0.0.0-20180916011732-0a3d74bf9ce4/go.mod h1:4OwLy04Bl9Ef3GJJCoec+30X3LQs/0/m4HFRt/2LUSA=
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
+github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
-github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 h1:OdAsTTz6OkFY5QxjkYwrChwuRruF69c169dPK26NUlk=
-github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo=
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
github.com/rogpeppe/go-internal v1.8.0 h1:FCbCCtXNOY3UtUuHUYaghJg4y7Fd14rXifAYUAtL9R8=
github.com/rogpeppe/go-internal v1.8.0/go.mod h1:WmiCO8CzOY8rg0OYDC4/i/2WRWAB6poM+XZ2dLUbcbE=
-github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ=
-github.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OKkWU=
-github.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc=
github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
-github.com/samber/lo v1.27.1 h1:sTXwkRiIFIQG+G0HeAvOEnGjqWeWtI9cg5/n51KrxPg=
-github.com/samber/lo v1.27.1/go.mod h1:it33p9UtPMS7z72fP4gw/EIfQB2eI8ke7GR2wc6+Rhg=
-github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0=
-github.com/seborama/govcr v4.5.0+incompatible h1:XvdHtXi0d4cUAn+0aWolvwfS3nmhNC8Z+yMQwn/M64I=
-github.com/seborama/govcr v4.5.0+incompatible/go.mod h1:EgcISudCCYDLzbiAImJ8i7kk4+wTA44Kp+j4S0LhASI=
-github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4=
-github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o=
-github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=
-github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=
github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0=
github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
github.com/spf13/afero v1.8.2 h1:xehSyVa0YnHWsJ49JFljMpg1HX19V6NDZ1fkm1Xznbo=
@@ -335,8 +241,6 @@ github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An
github.com/spf13/viper v1.12.0 h1:CZ7eSOd3kZoaYDLbXnmzgQI5RlciuXBMA+18HwHRfZQ=
github.com/spf13/viper v1.12.0/go.mod h1:b6COn30jlNxbm/V2IqWiNWkJ+vZNiMNksliPCiuKtSI=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
-github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
-github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE=
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
@@ -347,7 +251,6 @@ github.com/stretchr/testify v1.7.1 h1:5TQK59W5E3v0r2duFAb7P95B6hEeOyEnHRa8MjYSMT
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/subosito/gotenv v1.3.0 h1:mjC+YW8QpAdXibNi+vNWgzmgBH4+5l5dCXv8cNysBLI=
github.com/subosito/gotenv v1.3.0/go.mod h1:YzJjq/33h7nrwdY+iHMhEOEEbW0ovIz0tB6t6PwAXzs=
-github.com/thoas/go-funk v0.9.1 h1:O549iLZqPpTUQ10ykd26sZhzD+rmR5pWhuElrhbC20M=
github.com/ugorji/go v1.2.7/go.mod h1:nF9osbDWLy6bDVv/Rtoh6QgnvNDpmCalQV5urGCCS6M=
github.com/ugorji/go/codec v1.2.7 h1:YPXUKf7fYbp/y8xloBqZOw2qaVggbfwMlI8WM3wZUJ0=
github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY=
@@ -359,40 +262,24 @@ github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
-github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q=
+gitlab.com/flimzy/testy v0.0.3/go.mod h1:YObF4cq711ubd/3U0ydRQQVz7Cnq/ChgJpVwNr/AJac=
+gitlab.com/flimzy/testy v0.9.1 h1:c255KNz+9lqkMAmC4TYngLP1mOkBJ30KziNgz9r7apk=
+gitlab.com/flimzy/testy v0.9.1/go.mod h1:4Yy2aelUY6IgRmd3jHgGWewZLNMQZWQTlwyuMW642Mc=
go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
-go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
-go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
-go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
-go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
-go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=
-go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4=
-go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU=
-go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA=
-go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
-go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=
-go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM=
golang.org/x/crypto v0.0.0-20190228161510-8dd112bcdc25/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
-golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE=
golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
-golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
-golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
-golang.org/x/crypto v0.0.0-20201203163018-be400aefbc4c/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
-golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
-golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
-golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 h1:kUhD7nTDoI3fVd9G4ORWrbV5NY0liEs/Jg2pv5f+bBA=
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
@@ -405,8 +292,6 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0
golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4=
golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM=
golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU=
-golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 h1:3MTrJm4PyNL9NBqvYDSj3DHl46qQakyfqfWo4jgfaEM=
-golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17/go.mod h1:lgLbSvA5ygNOMpwM/9anMpWVlVJ7Z+cHWq/eFuinpGE=
golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=
golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
@@ -442,7 +327,6 @@ golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
-golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
@@ -459,14 +343,12 @@ golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81R
golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
+golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
-golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
-golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
-golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
-golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 h1:NWy5+hlRbC7HK+PmcXVUmW1IMyFce7to56IUvhUFm7Y=
-golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
+golang.org/x/net v0.0.0-20221004154528-8021a29435af h1:wv66FM3rLZGPdxpYL+ApnDe2HzHcTFta3z5nsc13wI4=
+golang.org/x/net v0.0.0-20221004154528-8021a29435af/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
@@ -476,8 +358,6 @@ golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ
golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A=
-golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 h1:OSnWWcOd/CtWQC2cYSBgbTSJv3ciqd8r54ySIW2y3RE=
-golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -489,22 +369,17 @@ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJ
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
-golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190228124157-a34e9553db1e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
@@ -528,19 +403,15 @@ golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7w
golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20220405052023-b1e9470b6e64/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 h1:0A+M6Uqn+Eje4kHMK80dtF3JCXC4ykBgQG4Fe06QRhQ=
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
+golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 h1:WIoqL4EROvwiPdUtaip4VcDdpZ4kha7wBWZrbVKCIZg=
+golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
@@ -563,18 +434,14 @@ golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3
golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
-golang.org/x/tools v0.0.0-20190425163242-31fd60d6bfdc/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20190823170909-c4a336ef6a2f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
-golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
@@ -582,7 +449,6 @@ golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtn
golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
-golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
@@ -603,18 +469,17 @@ golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc
golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE=
golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
-golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0=
-golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
+golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk=
+golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8=
google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=
google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=
google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg=
@@ -640,7 +505,6 @@ google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7
google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0=
google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
-google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c=
google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc=
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE=
@@ -705,7 +569,6 @@ google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpAD
google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4=
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
-google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
google.golang.org/protobuf v1.28.0 h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw=
google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
@@ -713,31 +576,15 @@ gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
-gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s=
gopkg.in/ini.v1 v1.66.4 h1:SsAcf+mM7mRZo2nJNGt8mZCjG8ZRaNGMURJw7BsIST4=
gopkg.in/ini.v1 v1.66.4/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
-gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-gorm.io/datatypes v1.0.7 h1:8NhJN4+annFjwV1WufDhFiPjdUvV1lSGUdg1UCjQIWY=
-gorm.io/datatypes v1.0.7/go.mod h1:l9qkCuy0CdzDEop9HKUdcnC9gHC2sRlaFtHkTzsZRqg=
-gorm.io/driver/mysql v1.3.2 h1:QJryWiqQ91EvZ0jZL48NOpdlPdMjdip1hQ8bTgo4H7I=
-gorm.io/driver/mysql v1.3.2/go.mod h1:ChK6AHbHgDCFZyJp0F+BmVGb06PSIoh9uVYKAlRbb2U=
-gorm.io/driver/postgres v1.3.4 h1:evZ7plF+Bp+Lr1mO5NdPvd6M/N98XtwHixGB+y7fdEQ=
-gorm.io/driver/postgres v1.3.4/go.mod h1:y0vEuInFKJtijuSGu9e5bs5hzzSzPK+LancpKpvbRBw=
-gorm.io/driver/sqlite v1.3.1 h1:bwfE+zTEWklBYoEodIOIBwuWHpnx52Z9zJFW5F33WLk=
-gorm.io/driver/sqlite v1.3.1/go.mod h1:wJx0hJspfycZ6myN38x1O/AqLtNS6c5o9TndewFbELg=
-gorm.io/driver/sqlserver v1.3.1 h1:F5t6ScMzOgy1zukRTIZgLZwKahgt3q1woAILVolKpOI=
-gorm.io/driver/sqlserver v1.3.1/go.mod h1:w25Vrx2BG+CJNUu/xKbFhaKlGxT/nzRkhWCCoptX8tQ=
-gorm.io/gorm v1.23.1/go.mod h1:l2lP/RyAtc1ynaTjFksBde/O8v9oOGIApu2/xRitmZk=
-gorm.io/gorm v1.23.6/go.mod h1:l2lP/RyAtc1ynaTjFksBde/O8v9oOGIApu2/xRitmZk=
-gorm.io/gorm v1.23.8 h1:h8sGJ+biDgBA1AD1Ha9gFCx7h8npU7AsLdlkX0n2TpE=
-gorm.io/gorm v1.23.8/go.mod h1:l2lP/RyAtc1ynaTjFksBde/O8v9oOGIApu2/xRitmZk=
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
@@ -745,32 +592,6 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh
honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
-lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk=
-modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI=
-modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc=
-modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw=
-modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ=
-modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ=
-modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ=
-modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM=
-modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA=
-modernc.org/libc v1.16.0/go.mod h1:N4LD6DBE9cf+Dzf9buBlzVJndKr/iJHG97vGLHYnb5A=
-modernc.org/libc v1.16.1/go.mod h1:JjJE0eu4yeK7tab2n4S1w8tlWd9MxXLRzheaRnAKymU=
-modernc.org/libc v1.16.7/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU=
-modernc.org/libc v1.16.8 h1:Ux98PaOMvolgoFX/YwusFOHBnanXdGRmWgI8ciI2z4o=
-modernc.org/libc v1.16.8/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU=
-modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E=
-modernc.org/mathutil v1.4.1 h1:ij3fYGe8zBF4Vu+g0oT7mB06r8sqGWKuJu1yXeR4by8=
-modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E=
-modernc.org/memory v1.1.1 h1:bDOL0DIDLQv7bWhP3gMvIrnoFw+Eo6F7a2QK9HPDiFU=
-modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw=
-modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0=
-modernc.org/sqlite v1.17.3 h1:iE+coC5g17LtByDYDWKpR6m2Z9022YrSh3bumwOnIrI=
-modernc.org/sqlite v1.17.3/go.mod h1:10hPVYar9C0kfXuTWGz8s0XtB8uAGymUy51ZzStYe3k=
-modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw=
-modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw=
-modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM=
-modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8=
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=