diff --git a/src/loader/BasePackageLoader.ts b/src/loader/BasePackageLoader.ts index cc6e0a2..d140aa6 100644 --- a/src/loader/BasePackageLoader.ts +++ b/src/loader/BasePackageLoader.ts @@ -73,7 +73,7 @@ export class BasePackageLoader implements PackageLoader { this.log('error', `Failed to load ${name}#${version}`); return LoadStatus.FAILED; } - this.log('info', `Loaded ${packageLabel} with ${stats.resourceCount} resources`); + this.log('info', `Loaded ${stats.name}#${stats.version} with ${stats.resourceCount} resources`); return LoadStatus.LOADED; } @@ -126,7 +126,7 @@ export class BasePackageLoader implements PackageLoader { this.loadResourceFromCache(resourcePath, packageName, packageVersion); } catch { // swallow this error because some JSON files will not be resources - this.log('info', `JSON file at path ${resourcePath} was not FHIR resource`); + this.log('debug', `JSON file at path ${resourcePath} was not FHIR resource`); } }); } diff --git a/test/loader/BasePackageLoader.test.ts b/test/loader/BasePackageLoader.test.ts index 7a4d93b..5b13d30 100644 --- a/test/loader/BasePackageLoader.test.ts +++ b/test/loader/BasePackageLoader.test.ts @@ -10,13 +10,13 @@ import { CurrentBuildClient } from '../../src/current'; import { loggerSpy } from '../testhelpers'; import fs from 'fs-extra'; - describe('BasePackageLoader', () => { let loader: BasePackageLoader; const packageDBMock = mock(); const packageCacheMock = mock(); const registryClientMock = mock(); const currentBuildClientMock = mock(); + let loadPackageFromCacheSpy: jest.SpyInstance; beforeEach(() => { loggerSpy.reset(); @@ -24,6 +24,10 @@ describe('BasePackageLoader', () => { mockReset(packageCacheMock); mockReset(registryClientMock); mockReset(currentBuildClientMock); + loadPackageFromCacheSpy = jest.spyOn( + BasePackageLoader.prototype as any, + 'loadPackageFromCache' + ); loader = new BasePackageLoader( packageDBMock, packageCacheMock, @@ -33,16 +37,35 @@ describe('BasePackageLoader', () => { ); }); - function setupLoadPackage(name?: string, version?: string, loadStatus?: string, tarball?: Readable, packageJsonPath?: string, resourceAtPath?: string, - currentBuildDate?: string, resourceInfo?: object) : any { - const pkgVars = { - name : name, + afterEach(() => { + loadPackageFromCacheSpy.mockRestore(); + }); + + function setupLoadPackage( + name?: string, + version?: string, + loadStatus?: string, + tarball?: Readable, + packageBasePath?: string, + resourcePath?: string, + currentBuildDate?: string + ): any { + const pkgVars: any = { + name: name, version: version, - tarball: tarball? tarball : Readable.from([`${name}$${version}-data`]), - packageJsonPath: packageJsonPath? packageJsonPath : `Package/json/path/${name}/${version}`, - resourceAtPath: resourceAtPath? resourceAtPath : {'resource' : `${packageJsonPath}`, 'date': '20240824230227', 'resourceType': 'resourceTypeName'}, - currentBuildDate: currentBuildDate? new Promise((resolve) => resolve(currentBuildDate)) : new Promise((resolve) => resolve('20240824230227')), - resourceInfo: resourceInfo? resourceInfo : undefined + tarball: tarball ? tarball : Readable.from([`${name}$${version}-data`]), + packageBasePath: packageBasePath ?? `Package/json/path/${name}/${version}`, + currentBuildDate: currentBuildDate + ? new Promise(resolve => resolve(currentBuildDate)) + : new Promise(resolve => resolve('20240824230227')) + }; + pkgVars.packageJsonPath = path.join(pkgVars.packageBasePath, 'package', 'package.json'); + pkgVars.resourcePath = + resourcePath ?? path.join(pkgVars.packageBasePath, 'package', 'Resource-Name.json'); + pkgVars.resourceInfo = { + resource: `${pkgVars.resourcePath}`, + date: '20240824230227', + resourceType: 'resourceTypeName' }; // the initial load status for if a package is loaded if (loadStatus == 'loaded') { @@ -53,8 +76,36 @@ describe('BasePackageLoader', () => { return pkgVars; } + function setupPackageWithFixture(name: string, version: string, fixtureFile: string) { + const fixturePath = path.resolve(__dirname, 'fixtures', fixtureFile); + const pkg = setupLoadPackage( + name, + version, + 'not-loaded', + undefined, + path.resolve(__dirname, 'fixtures'), + fixturePath, + '2024-05-24T16:27:17-04:00' + ); + packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValue(true); + packageCacheMock.getPackagePath + .calledWith(pkg.name, pkg.version) + .mockReturnValue(pkg.packageBasePath); + packageCacheMock.getPackageJSONPath + .calledWith(pkg.name, pkg.version) + .mockReturnValue(pkg.packageJsonPath); + packageCacheMock.getPotentialResourcePaths + .calledWith(pkg.name, pkg.version) + .mockReturnValue([pkg.resourcePath]); + const resourceJSON = fs.readJsonSync(fixturePath); + packageCacheMock.getResourceAtPath.calledWith(pkg.resourcePath).mockReturnValue(resourceJSON); + packageDBMock.getPackageStats + .calledWith(pkg.name, pkg.version) + .mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 1 }); + return fixturePath; + } + describe('#loadPackage', () => { - // current and dev it('should return LOADED when the package is already loaded', async () => { const pkg = setupLoadPackage('some.ig', '1.2.3', 'loaded'); @@ -64,90 +115,151 @@ describe('BasePackageLoader', () => { expect(loader.getPackageLoadStatus).toHaveBeenCalledWith('some.ig', '1.2.3'); expect(packageDBMock.savePackageInfo).not.toHaveBeenCalled(); }); - + it('should use current version if dev version was not found in the cache', async () => { const pkg = setupLoadPackage('some.ig', 'dev', 'not-loaded'); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValueOnce(false); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, 'current').mockReturnValueOnce(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValueOnce(pkg.resourceAtPath); - currentBuildClientMock.getCurrentBuildDate.calledWith(pkg.name, undefined).mockReturnValueOnce(pkg.currentBuildDate); - currentBuildClientMock.downloadCurrentBuild.calledWith(pkg.name, 'current').mockResolvedValue(pkg.tarball); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValueOnce({ name: pkg.name, version: pkg.version, resourceCount: 5 }); + packageCacheMock.isPackageInCache + .calledWith(pkg.name, pkg.version) + .mockReturnValueOnce(false); + packageCacheMock.getPackageJSONPath + .calledWith(pkg.name, 'current') + .mockReturnValueOnce(pkg.packageJsonPath); + packageCacheMock.getResourceAtPath + .calledWith(pkg.packageJsonPath) + .mockReturnValueOnce(pkg.resourcePath); + currentBuildClientMock.getCurrentBuildDate + .calledWith(pkg.name, undefined) + .mockReturnValueOnce(pkg.currentBuildDate); + currentBuildClientMock.downloadCurrentBuild + .calledWith(pkg.name, 'current') + .mockResolvedValue(pkg.tarball); + loadPackageFromCacheSpy.mockReturnValueOnce({ + name: pkg.name, + version: 'current', + resourceCount: 5 + }); const result = await loader.loadPackage(pkg.name, pkg.version); expect(loader.getPackageLoadStatus).toHaveBeenCalledWith(pkg.name, pkg.version); - expect(loggerSpy.getMessageAtIndex(-2, 'info')).toBe('Falling back to some.ig#current since some.ig#dev is not locally cached. To avoid this, add some.ig#dev to your local FHIR cache by building it locally with the HL7 FHIR IG Publisher.'); + expect(loggerSpy.getMessageAtIndex(-2, 'info')).toBe( + 'Falling back to some.ig#current since some.ig#dev is not locally cached. To avoid this, add some.ig#dev to your local FHIR cache by building it locally with the HL7 FHIR IG Publisher.' + ); expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', 'current'); expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#current with 5 resources'); expect(result).toBe(LoadStatus.LOADED); }); - - it('should successfully download current version to cache that is missing or stale', async () => { - const pkg = setupLoadPackage('some.ig', 'current', 'not-loaded'); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, 'current').mockReturnValueOnce(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValueOnce(pkg.resourceAtPath); - currentBuildClientMock.getCurrentBuildDate.calledWith(pkg.name, undefined).mockReturnValueOnce(pkg.currentBuildDate); - currentBuildClientMock.downloadCurrentBuild.calledWith(pkg.name, 'current').mockResolvedValue(pkg.tarball); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValueOnce({ name: pkg.name, version: pkg.version, resourceCount: 5 }); - - const result = await loader.loadPackage('some.ig', 'current'); - expect(loader.getPackageLoadStatus).toHaveBeenCalledWith('some.ig', 'current'); - expect(loggerSpy.getMessageAtIndex(-1, 'debug')).toBe('Cached package date for some.ig#current (2024-08-24T23:02:27) matches last build date (2024-08-24T23:02:27), so the cached package will be used'); - expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#current with 5 resources'); - expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', 'current'); - expect(result).toBe(LoadStatus.LOADED); - }); - it('should not successfully download current version to cache that is missing or stale', async () => { - const pkg = setupLoadPackage('some.ig', 'current', 'not-loaded', undefined, undefined, undefined, '20200824230227'); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, 'current').mockReturnValueOnce(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValueOnce(pkg.resourceAtPath); - currentBuildClientMock.getCurrentBuildDate.calledWith(pkg.name, undefined).mockReturnValueOnce(pkg.currentBuildDate); - currentBuildClientMock.downloadCurrentBuild.mockRejectedValue(new Error('error with download current build')); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockImplementation(() => {throw new Error('load pkg from cache error');}); + it('should not successfully download current version to cache that is missing or stale if the package can not be downloaded', async () => { + const pkg = setupLoadPackage( + 'some.ig', + 'current', + 'not-loaded', + undefined, + undefined, + undefined, + '20200824230227' + ); + packageCacheMock.getPackageJSONPath + .calledWith(pkg.name, 'current') + .mockReturnValueOnce(pkg.packageJsonPath); + packageCacheMock.getResourceAtPath + .calledWith(pkg.packageJsonPath) + .mockReturnValueOnce(pkg.resourceInfo); + currentBuildClientMock.getCurrentBuildDate + .calledWith(pkg.name, undefined) + .mockReturnValueOnce(pkg.currentBuildDate); + currentBuildClientMock.downloadCurrentBuild.mockRejectedValue( + new Error('error with download current build') + ); + loadPackageFromCacheSpy.mockImplementation(() => { + throw new Error('load pkg from cache error'); + }); const result = await loader.loadPackage('some.ig', 'current'); expect(result).toBe(LoadStatus.FAILED); expect(loader.getPackageLoadStatus).toHaveBeenCalledWith('some.ig', 'current'); - expect(loggerSpy.getMessageAtIndex(-1, 'debug')).toBe('Cached package date for some.ig#current (2024-08-24T23:02:27) does not match last build date (2020-08-24T23:02:27)'); - expect(loggerSpy.getMessageAtIndex(-2, 'error')).toBe('Failed to download some.ig#current from current builds'); + expect(loggerSpy.getMessageAtIndex(-1, 'debug')).toBe( + 'Cached package date for some.ig#current (2024-08-24T23:02:27) does not match last build date (2020-08-24T23:02:27)' + ); + expect(loggerSpy.getMessageAtIndex(-2, 'error')).toBe( + 'Failed to download some.ig#current from current builds' + ); expect(loggerSpy.getMessageAtIndex(-1, 'error')).toBe('Failed to load some.ig#current'); expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', 'current'); }); it('should successfully load current package in cache when current version is not missing or stale', async () => { const pkg = setupLoadPackage('some.ig', 'current', 'not-loaded'); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, 'current').mockReturnValueOnce(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValueOnce(pkg.resourceAtPath); - currentBuildClientMock.getCurrentBuildDate.calledWith(pkg.name, undefined).mockReturnValueOnce(pkg.currentBuildDate); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValueOnce({ name: pkg.name, version: pkg.version, resourceCount: 5 }); + packageCacheMock.getPackageJSONPath + .calledWith(pkg.name, 'current') + .mockReturnValueOnce(pkg.packageJsonPath); + packageCacheMock.getResourceAtPath + .calledWith(pkg.packageJsonPath) + .mockReturnValueOnce(pkg.resourceInfo); + currentBuildClientMock.getCurrentBuildDate + .calledWith(pkg.name, undefined) + .mockReturnValueOnce(pkg.currentBuildDate); + loadPackageFromCacheSpy.mockReturnValueOnce({ + name: pkg.name, + version: pkg.version, + resourceCount: 5 + }); const result = await loader.loadPackage('some.ig', 'current'); expect(loader.getPackageLoadStatus).toHaveBeenCalledWith('some.ig', 'current'); - expect(loggerSpy.getMessageAtIndex(-1, 'debug')).toBe('Cached package date for some.ig#current (2024-08-24T23:02:27) matches last build date (2024-08-24T23:02:27), so the cached package will be used'); + expect(packageCacheMock.getPackageJSONPath).toHaveBeenCalledWith('some.ig', 'current'); + expect(packageCacheMock.getResourceAtPath).toHaveBeenCalled(); + expect(currentBuildClientMock.getCurrentBuildDate).toHaveBeenCalled(); expect(currentBuildClientMock.downloadCurrentBuild).not.toHaveBeenCalled(); expect(packageCacheMock.cachePackageTarball).not.toHaveBeenCalled(); expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', 'current'); + expect(loggerSpy.getMessageAtIndex(-1, 'debug')).toBe( + 'Cached package date for some.ig#current (2024-08-24T23:02:27) matches last build date (2024-08-24T23:02:27), so the cached package will be used' + ); expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#current with 5 resources'); expect(result).toBe(LoadStatus.LOADED); }); + it('should successfully load a current branch of a package when the cached version is not missing or stale', async () => { + const bonusPkg = setupLoadPackage('some.ig', 'current$bonus-items', 'not-loaded'); + packageCacheMock.getPackageJSONPath + .calledWith(bonusPkg.name, 'current$bonus-items') + .mockReturnValueOnce(bonusPkg.packageJsonPath); + packageCacheMock.getResourceAtPath + .calledWith(bonusPkg.packageJsonPath) + .mockReturnValueOnce(bonusPkg.resourceInfo); + currentBuildClientMock.getCurrentBuildDate + .calledWith(bonusPkg.name, 'bonus-items') + .mockReturnValueOnce(bonusPkg.currentBuildDate); + loadPackageFromCacheSpy.mockReturnValueOnce({ + name: bonusPkg.name, + version: bonusPkg.version, + resourceCount: 7 + }); + + const result = await loader.loadPackage('some.ig', 'current$bonus-items'); + expect(loader.getPackageLoadStatus).toHaveBeenCalledWith('some.ig', 'current$bonus-items'); + expect(loggerSpy.getMessageAtIndex(-1, 'debug')).toBe( + 'Cached package date for some.ig#current$bonus-items (2024-08-24T23:02:27) matches last build date (2024-08-24T23:02:27), so the cached package will be used' + ); + expect(currentBuildClientMock.downloadCurrentBuild).not.toHaveBeenCalled(); + expect(packageCacheMock.cachePackageTarball).not.toHaveBeenCalled(); + expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', 'current$bonus-items'); + expect(loggerSpy.getLastMessage('info')).toBe( + 'Loaded some.ig#current$bonus-items with 7 resources' + ); + expect(result).toBe(LoadStatus.LOADED); + }); // non-current it('should use dev version if dev version and was found in the cache', async () => { const pkg = setupLoadPackage('some.ig', 'dev', 'not-loaded'); packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValueOnce(true); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValueOnce({ name: pkg.name, version: pkg.version, resourceCount: 5 }); + loadPackageFromCacheSpy.mockReturnValueOnce({ + name: pkg.name, + version: pkg.version, + resourceCount: 5 + }); const result = await loader.loadPackage(pkg.name, pkg.version); expect(loader.getPackageLoadStatus).toHaveBeenCalledWith(pkg.name, pkg.version); @@ -156,118 +268,103 @@ describe('BasePackageLoader', () => { expect(result).toBe(LoadStatus.LOADED); }); - it('should load a specific package with branch from the registry when it is not in the cache', async () => { - const pkg = setupLoadPackage('some.ig', 'specific-branch$1.2.3', 'not-loaded'); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValueOnce(false); - registryClientMock.download.calledWith(pkg.name, pkg.version).mockResolvedValue(pkg.tarball); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValueOnce({ name: pkg.name, version: pkg.version, resourceCount: 5 }); - - const result = await loader.loadPackage(pkg.name, pkg.version); - expect(result).toBe(LoadStatus.LOADED); - expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#specific-branch$1.2.3 with 5 resources'); - expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', 'specific-branch$1.2.3'); - }); - - it('should load a versioned package without branch from the registry when it is not in the cache', async () => { - const pkg = setupLoadPackage('some.ig', '1.2.3', 'not-loaded'); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValueOnce(false); - registryClientMock.download.calledWith(pkg.name, pkg.version).mockResolvedValue(pkg.tarball); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValueOnce({ name: pkg.name, version: pkg.version, resourceCount: 5 }); - - const result = await loader.loadPackage(pkg.name, pkg.version); - expect(result).toBe(LoadStatus.LOADED); - expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#1.2.3 with 5 resources'); - expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', '1.2.3'); - }); - it('should load a patch versioned package from the registry when it is not in the cache', async () => { const pkg = setupLoadPackage('some.ig', '1.2.x', 'not-loaded'); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValueOnce(false); + packageCacheMock.isPackageInCache + .calledWith(pkg.name, pkg.version) + .mockReturnValueOnce(false); registryClientMock.download.calledWith(pkg.name, pkg.version).mockResolvedValue(pkg.tarball); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValueOnce({ name: pkg.name, version: '1.2.3', resourceCount: 5 }); - + loadPackageFromCacheSpy.mockReturnValueOnce({ + name: pkg.name, + version: '1.2.3', + resourceCount: 5 + }); + const result = await loader.loadPackage(pkg.name, pkg.version); expect(result).toBe(LoadStatus.LOADED); - expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#1.2.x with 5 resources'); //TODO: this logs patch, not version number + expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#1.2.3 with 5 resources'); expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', '1.2.x'); }); it('should load a latest versioned package from the registry when it is not in the cache', async () => { const pkg = setupLoadPackage('some.ig', 'latest', 'not-loaded'); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValueOnce(false); + packageCacheMock.isPackageInCache + .calledWith(pkg.name, pkg.version) + .mockReturnValueOnce(false); registryClientMock.download.calledWith(pkg.name, pkg.version).mockResolvedValue(pkg.tarball); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValueOnce({ name: pkg.name, version: 'latest', resourceCount: 5 }); - + loadPackageFromCacheSpy.mockReturnValueOnce({ + name: pkg.name, + version: '1.2.3', + resourceCount: 5 + }); + const result = await loader.loadPackage(pkg.name, pkg.version); expect(result).toBe(LoadStatus.LOADED); - expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#latest with 5 resources'); // TODO: should this log version number + expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#1.2.3 with 5 resources'); expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', 'latest'); }); it('should log error when a versioned package is unable to be downloaded from the registry', async () => { const pkg = setupLoadPackage('some.ig', '1.2.3', 'not-loaded'); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValueOnce(false); - - registryClientMock.download.calledWith(pkg.name, pkg.version).mockImplementation(() => { throw new Error('error with download current build');}); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockImplementation(() => {throw new Error('load pkg from cache error');}); - + packageCacheMock.isPackageInCache + .calledWith(pkg.name, pkg.version) + .mockReturnValueOnce(false); + + registryClientMock.download.calledWith(pkg.name, pkg.version).mockImplementation(() => { + throw new Error('error with download current build'); + }); + loadPackageFromCacheSpy.mockImplementation(() => { + throw new Error('load pkg from cache error'); + }); + const result = await loader.loadPackage(pkg.name, pkg.version); expect(result).toBe(LoadStatus.FAILED); - expect(loggerSpy.getMessageAtIndex(-2, 'error')).toBe('Failed to download some.ig#1.2.3 from registry'); + expect(loggerSpy.getMessageAtIndex(-2, 'error')).toBe( + 'Failed to download some.ig#1.2.3 from registry' + ); expect(loggerSpy.getLastMessage('error')).toBe('Failed to load some.ig#1.2.3'); expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', '1.2.3'); }); - - - // methods USED by loadPackage: isCurrentVersionMissingOrStale it('should successfully download package when current version in cache out of date', async () => { - const pkg = setupLoadPackage('some.ig', 'current', 'not-loaded', undefined, undefined, undefined, '20200824230227'); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, 'current').mockReturnValueOnce(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValueOnce(pkg.resourceAtPath); - currentBuildClientMock.getCurrentBuildDate.calledWith(pkg.name, undefined).mockReturnValueOnce(pkg.currentBuildDate); - currentBuildClientMock.downloadCurrentBuild.calledWith(pkg.name, 'current').mockResolvedValue(pkg.tarball); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 5 }); - - const result = await loader.loadPackage('some.ig', 'current'); - expect(packageCacheMock.getPackageJSONPath).toHaveBeenCalledWith('some.ig', 'current'); - expect(packageCacheMock.getResourceAtPath).toHaveBeenCalled(); - expect(currentBuildClientMock.getCurrentBuildDate).toHaveBeenCalled(); - expect(loggerSpy.getMessageAtIndex(-1, 'debug')).toBe('Cached package date for some.ig#current (2024-08-24T23:02:27) does not match last build date (2020-08-24T23:02:27)'); - expect(loggerSpy.getMessageAtIndex(-2, 'info')).toBe('Cached package some.ig#current is out of date and will be replaced by the most recent current build.'); - expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#current with 5 resources'); - expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', 'current'); - expect(result).toBe(LoadStatus.LOADED); - }); - - it('should successfully use cached package when current version in cache is up to date', async () => { - const pkg = setupLoadPackage('some.ig', 'current', 'not-loaded'); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, 'current').mockReturnValueOnce(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValueOnce(pkg.resourceAtPath); - currentBuildClientMock.getCurrentBuildDate.calledWith(pkg.name, undefined).mockReturnValueOnce(pkg.currentBuildDate); - currentBuildClientMock.downloadCurrentBuild.calledWith(pkg.name, 'current').mockResolvedValue(pkg.tarball); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 5 }); + const pkg = setupLoadPackage( + 'some.ig', + 'current', + 'not-loaded', + undefined, + undefined, + undefined, + '20200824230227' + ); + packageCacheMock.getPackageJSONPath + .calledWith(pkg.name, 'current') + .mockReturnValueOnce(pkg.packageJsonPath); + packageCacheMock.getResourceAtPath + .calledWith(pkg.packageJsonPath) + .mockReturnValueOnce(pkg.resourceInfo); + currentBuildClientMock.getCurrentBuildDate + .calledWith(pkg.name, undefined) + .mockReturnValueOnce(pkg.currentBuildDate); + currentBuildClientMock.downloadCurrentBuild + .calledWith(pkg.name, 'current') + .mockResolvedValue(pkg.tarball); + loadPackageFromCacheSpy.mockReturnValue({ + name: pkg.name, + version: pkg.version, + resourceCount: 5 + }); const result = await loader.loadPackage('some.ig', 'current'); expect(packageCacheMock.getPackageJSONPath).toHaveBeenCalledWith('some.ig', 'current'); expect(packageCacheMock.getResourceAtPath).toHaveBeenCalled(); expect(currentBuildClientMock.getCurrentBuildDate).toHaveBeenCalled(); - expect(loggerSpy.getMessageAtIndex(-1, 'debug')).toBe('Cached package date for some.ig#current (2024-08-24T23:02:27) matches last build date (2024-08-24T23:02:27), so the cached package will be used'); + expect(loggerSpy.getMessageAtIndex(-1, 'debug')).toBe( + 'Cached package date for some.ig#current (2024-08-24T23:02:27) does not match last build date (2020-08-24T23:02:27)' + ); + expect(loggerSpy.getMessageAtIndex(-2, 'info')).toBe( + 'Cached package some.ig#current is out of date and will be replaced by the most recent current build.' + ); expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#current with 5 resources'); expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', 'current'); expect(result).toBe(LoadStatus.LOADED); @@ -275,31 +372,47 @@ describe('BasePackageLoader', () => { it('should successfully create date for string in messages logged', async () => { const pkg = setupLoadPackage('some.ig', 'current', 'not-loaded'); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, 'current').mockReturnValueOnce(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValueOnce(pkg.resourceAtPath); - currentBuildClientMock.getCurrentBuildDate.calledWith(pkg.name, undefined).mockReturnValueOnce(pkg.currentBuildDate); - currentBuildClientMock.downloadCurrentBuild.calledWith(pkg.name, 'current').mockResolvedValue(pkg.tarball); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 5 }); + packageCacheMock.getPackageJSONPath + .calledWith(pkg.name, 'current') + .mockReturnValueOnce(pkg.packageJsonPath); + packageCacheMock.getResourceAtPath + .calledWith(pkg.packageJsonPath) + .mockReturnValueOnce(pkg.resourceInfo); + currentBuildClientMock.getCurrentBuildDate + .calledWith(pkg.name, undefined) + .mockReturnValueOnce(pkg.currentBuildDate); + currentBuildClientMock.downloadCurrentBuild + .calledWith(pkg.name, 'current') + .mockResolvedValue(pkg.tarball); + loadPackageFromCacheSpy.mockReturnValue({ + name: pkg.name, + version: pkg.version, + resourceCount: 5 + }); await loader.loadPackage('some.ig', 'current'); expect(loggerSpy.getMessageAtIndex(-1, 'debug')).toContain('2024-08-24T23:02:27'); - expect('2024-08-24T23:02:27'.replace('-', '').replace('-', '').replace(':', '').replace('T', '').replace(':','')).toBe('20240824230227'); }); it('should catch error and assume stale version if packageJSONPath was not found', async () => { const pkg = setupLoadPackage('some.ig', 'current', 'not-loaded'); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, 'current').mockReturnValueOnce(undefined); - currentBuildClientMock.downloadCurrentBuild.calledWith(pkg.name, 'current').mockResolvedValue(pkg.tarball); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 5 }); + packageCacheMock.getPackageJSONPath + .calledWith(pkg.name, 'current') + .mockReturnValueOnce(undefined); + currentBuildClientMock.downloadCurrentBuild + .calledWith(pkg.name, 'current') + .mockResolvedValue(pkg.tarball); + loadPackageFromCacheSpy.mockReturnValue({ + name: pkg.name, + version: pkg.version, + resourceCount: 5 + }); const result = await loader.loadPackage('some.ig', 'current'); expect(packageCacheMock.getPackageJSONPath).toHaveBeenCalledWith('some.ig', 'current'); expect(packageCacheMock.getResourceAtPath).not.toHaveBeenCalled(); expect(currentBuildClientMock.getCurrentBuildDate).not.toHaveBeenCalled(); + expect(currentBuildClientMock.downloadCurrentBuild).toHaveBeenCalled(); expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#current with 5 resources'); expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', 'current'); expect(result).toBe(LoadStatus.LOADED); @@ -307,243 +420,268 @@ describe('BasePackageLoader', () => { it('should catch error and assume stale version if cachedPackageDate was not found', async () => { const pkg = setupLoadPackage('some.ig', 'current', 'not-loaded'); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, 'current').mockReturnValueOnce(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValueOnce(undefined); - currentBuildClientMock.downloadCurrentBuild.calledWith(pkg.name, 'current').mockResolvedValue(pkg.tarball); - const loadPackageFromCacheSpy = jest - .spyOn(BasePackageLoader.prototype as any, 'loadPackageFromCache') - .mockReturnValueOnce({ name: pkg.name, version: pkg.version, resourceCount: 5 }); + packageCacheMock.getPackageJSONPath + .calledWith(pkg.name, 'current') + .mockReturnValueOnce(pkg.packageJsonPath); + packageCacheMock.getResourceAtPath + .calledWith(pkg.packageJsonPath) + .mockReturnValueOnce(undefined); + currentBuildClientMock.downloadCurrentBuild + .calledWith(pkg.name, 'current') + .mockResolvedValue(pkg.tarball); + loadPackageFromCacheSpy.mockReturnValueOnce({ + name: pkg.name, + version: pkg.version, + resourceCount: 5 + }); const result = await loader.loadPackage('some.ig', 'current'); expect(packageCacheMock.getPackageJSONPath).toHaveBeenCalledWith('some.ig', 'current'); expect(packageCacheMock.getResourceAtPath).toHaveBeenCalledWith(pkg.packageJsonPath); expect(currentBuildClientMock.getCurrentBuildDate).not.toHaveBeenCalled(); + expect(currentBuildClientMock.downloadCurrentBuild).toHaveBeenCalled(); expect(loggerSpy.getLastMessage('info')).toBe('Loaded some.ig#current with 5 resources'); expect(loadPackageFromCacheSpy).toHaveBeenCalledWith('some.ig', 'current'); expect(result).toBe(LoadStatus.LOADED); }); - + it('should throw error if package is not cached on final load', async () => { - const humanBeingResourcePath = path.resolve(__dirname, 'fixtures', 'StructureDefinition-human-being-logical-model.json'); - const pkg = setupLoadPackage('human-being-logical-model', '1.0.0', 'not-loaded', undefined, - humanBeingResourcePath, undefined, '20240824230227'); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValueOnce(true).mockReturnValueOnce(false); + const humanBeingResourcePath = path.resolve( + __dirname, + 'fixtures', + 'StructureDefinition-human-being-logical-model.json' + ); + const pkg = setupLoadPackage( + 'human-being-logical-model', + '1.0.0', + 'not-loaded', + undefined, + path.resolve(__dirname, 'fixtures'), + humanBeingResourcePath, + '20240824230227' + ); + packageCacheMock.isPackageInCache + .calledWith(pkg.name, pkg.version) + .mockReturnValueOnce(true) + .mockReturnValueOnce(false); const result = await loader.loadPackage('human-being-logical-model', '1.0.0'); expect(result).toBe(LoadStatus.FAILED); - expect(loggerSpy.getMessageAtIndex(-1, 'error')).toBe('Failed to load human-being-logical-model#1.0.0'); + expect(loggerSpy.getMessageAtIndex(-1, 'error')).toBe( + 'Failed to load human-being-logical-model#1.0.0' + ); expect(packageCacheMock.getPackagePath).not.toHaveBeenCalled(); }); - - it('should use non local package paths to find package with logical flavor', async () => { - const humanBeingResourcePath = path.resolve(__dirname, 'fixtures', 'StructureDefinition-human-being-logical-model.json'); - const pkg = setupLoadPackage('human-being-logical-model', '1.0.0', 'not-loaded', undefined, - humanBeingResourcePath, undefined, '2024-05-24T16:27:17-04:00', - {resourceType: 'StructureDefinition', id: 'human-being-logical-model'}); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValue(true); - packageCacheMock.getPackagePath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPotentialResourcePaths.calledWith(pkg.name, pkg.version).mockReturnValue([pkg.packageJsonPath]); - const humanBeingJSON = fs.readJsonSync(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValue(humanBeingJSON); - packageDBMock.getPackageStats.calledWith(pkg.name, pkg.version).mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 1 }); + it('should use non local package paths to find package with logical flavor', async () => { + const fixturePath = setupPackageWithFixture( + 'human-being-logical-model', + '1.0.0', + 'StructureDefinition-human-being-logical-model.json' + ); const result = await loader.loadPackage('human-being-logical-model', '1.0.0'); expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); - expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith( - { - resourceType: 'StructureDefinition', - id: 'human-being-logical-model', - url: 'http://example.org/fhir/locals/StructureDefinition/human-being-logical-model', - name: 'Human', - version: '1.0.0', - sdKind: 'logical', - sdDerivation: 'specialization', - sdType: 'http://example.org/fhir/locals/StructureDefinition/human-being-logical-model', - sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/Base', - sdAbstract: false, - sdCharacteristics: [ - 'can-be-target', - ], - sdFlavor: 'Logical', - packageName: 'human-being-logical-model', - packageVersion: '1.0.0', - resourcePath: humanBeingResourcePath, - } - ); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith({ + resourceType: 'StructureDefinition', + id: 'human-being-logical-model', + url: 'http://example.org/fhir/locals/StructureDefinition/human-being-logical-model', + name: 'Human', + version: '1.0.0', + sdKind: 'logical', + sdDerivation: 'specialization', + sdType: 'http://example.org/fhir/locals/StructureDefinition/human-being-logical-model', + sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/Base', + sdAbstract: false, + sdCharacteristics: ['can-be-target'], + sdFlavor: 'Logical', + packageName: 'human-being-logical-model', + packageVersion: '1.0.0', + resourcePath: fixturePath + }); expect(result).toBe(LoadStatus.LOADED); }); - // TODO: is this expected behavior for local it('should use LOCAL package paths to find package', async () => { - const humanBeingResourcePath = path.resolve(__dirname, 'fixtures', 'StructureDefinition-human-being-logical-model.json'); - const pkg = setupLoadPackage('LOCAL', 'LOCAL', 'not-loaded', undefined, - humanBeingResourcePath, undefined, '2024-05-24T16:27:17-04:00', - {resourceType: 'StructureDefinition', id: 'human-being-logical-model'}); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValue(true); - packageCacheMock.getPackagePath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPotentialResourcePaths.calledWith(pkg.name, pkg.version).mockReturnValue([pkg.packageJsonPath]); - const humanBeingJSON = fs.readJsonSync(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValue(humanBeingJSON); - packageDBMock.getPackageStats.calledWith(pkg.name, pkg.version).mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 1 }); - + const fixturePath = setupPackageWithFixture( + 'LOCAL', + 'LOCAL', + 'StructureDefinition-human-being-logical-model.json' + ); const result = await loader.loadPackage('LOCAL', 'LOCAL'); expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); - expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith( - { - resourceType: 'StructureDefinition', - id: 'human-being-logical-model', - url: 'http://example.org/fhir/locals/StructureDefinition/human-being-logical-model', - name: 'Human', - version: '1.0.0', - sdKind: 'logical', - sdDerivation: 'specialization', - sdType: 'http://example.org/fhir/locals/StructureDefinition/human-being-logical-model', - sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/Base', - sdAbstract: false, - sdCharacteristics: [ - 'can-be-target', - ], - sdFlavor: 'Logical', - packageName: 'LOCAL', - packageVersion: 'LOCAL', - resourcePath: humanBeingResourcePath, - } + expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith({ + resourceType: 'StructureDefinition', + id: 'human-being-logical-model', + url: 'http://example.org/fhir/locals/StructureDefinition/human-being-logical-model', + name: 'Human', + version: '1.0.0', + sdKind: 'logical', + sdDerivation: 'specialization', + sdType: 'http://example.org/fhir/locals/StructureDefinition/human-being-logical-model', + sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/Base', + sdAbstract: false, + sdCharacteristics: ['can-be-target'], + sdFlavor: 'Logical', + packageName: 'LOCAL', + packageVersion: 'LOCAL', + resourcePath: fixturePath + }); + expect(result).toBe(LoadStatus.LOADED); + }); + + it('should find a logical that uses the logical-target extension to set its characteristics', async () => { + const fixturePath = setupPackageWithFixture( + 'LOCAL', + 'LOCAL', + 'StructureDefinition-FuturePlanet.json' ); + const result = await loader.loadPackage('LOCAL', 'LOCAL'); + expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith({ + resourceType: 'StructureDefinition', + id: 'FuturePlanet', + url: 'http://hl7.org/planet/logicals/StructureDefinition/FuturePlanet', + name: 'FuturePlanet', + sdKind: 'logical', + sdDerivation: 'specialization', + sdType: 'http://hl7.org/planet/logicals/StructureDefinition/FuturePlanet', + sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/Basic', + sdAbstract: false, + sdCharacteristics: ['can-be-target'], + sdFlavor: 'Logical', + packageName: 'LOCAL', + packageVersion: 'LOCAL', + resourcePath: fixturePath + }); expect(result).toBe(LoadStatus.LOADED); }); - + it('should use non local package paths to find package with profile flavor', async () => { - const resourceProfileFlavor = path.resolve(__dirname, 'fixtures', 'StructureDefinition-valued-observation.json'); - const pkg = setupLoadPackage('valued-observation', '1.0.0', 'not-loaded', undefined, - resourceProfileFlavor, undefined, '2024-05-24T16:27:17-04:00', - {resourceType: 'StructureDefinition', id: 'valued-observation'}); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValue(true); - packageCacheMock.getPackagePath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPotentialResourcePaths.calledWith(pkg.name, pkg.version).mockReturnValue([pkg.packageJsonPath]); - const humanBeingJSON = fs.readJsonSync(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValue(humanBeingJSON); - packageDBMock.getPackageStats.calledWith(pkg.name, pkg.version).mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 1 }); - + const fixturePath = setupPackageWithFixture( + 'valued-observation', + '1.0.0', + 'StructureDefinition-valued-observation.json' + ); const result = await loader.loadPackage('valued-observation', '1.0.0'); expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); expect(packageDBMock.saveResourceInfo).toHaveBeenCalled(); - expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith( - { - resourceType: 'StructureDefinition', - id: 'valued-observation', - url: 'http://example.org/fhir/locals/StructureDefinition/valued-observation', - name: 'ValuedObservationProfile', - version: '1.0.0', - sdKind: 'resource', - sdDerivation: 'constraint', - sdType: 'Observation', - sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/Observation', - sdAbstract: false, - sdFlavor: 'Profile', - packageName: 'valued-observation', - packageVersion: '1.0.0', - resourcePath: resourceProfileFlavor, - } - ); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith({ + resourceType: 'StructureDefinition', + id: 'valued-observation', + url: 'http://example.org/fhir/locals/StructureDefinition/valued-observation', + name: 'ValuedObservationProfile', + version: '1.0.0', + sdKind: 'resource', + sdDerivation: 'constraint', + sdType: 'Observation', + sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/Observation', + sdAbstract: false, + sdFlavor: 'Profile', + packageName: 'valued-observation', + packageVersion: '1.0.0', + resourcePath: fixturePath + }); expect(result).toBe(LoadStatus.LOADED); }); it('should use non local package paths to find package with resource flavor', async () => { - const resourceResourceFlavor = path.resolve(__dirname, 'fixtures', 'StructureDefinition-Condition.json'); - const pkg = setupLoadPackage('Condition', '4.0.1', 'not-loaded', undefined, - resourceResourceFlavor, undefined, '2024-05-24T16:27:17-04:00', - {resourceType: 'StructureDefinition', id: 'Condition'}); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValue(true); - packageCacheMock.getPackagePath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPotentialResourcePaths.calledWith(pkg.name, pkg.version).mockReturnValue([pkg.packageJsonPath]); - const humanBeingJSON = fs.readJsonSync(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValue(humanBeingJSON); - packageDBMock.getPackageStats.calledWith(pkg.name, pkg.version).mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 1 }); - + const fixturePath = setupPackageWithFixture( + 'Condition', + '4.0.1', + 'StructureDefinition-Condition.json' + ); const result = await loader.loadPackage('Condition', '4.0.1'); expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); expect(packageDBMock.saveResourceInfo).toHaveBeenCalled(); - expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith( - { - resourceType: 'StructureDefinition', - id: 'Condition', - url: 'http://hl7.org/fhir/StructureDefinition/Condition', - name: 'Condition', - version: '4.0.2', - sdKind: 'resource', - sdDerivation: 'specialization', - sdType: 'Condition', - sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/DomainResource', - sdAbstract: false, - sdFlavor: 'Resource', - packageName: 'Condition', - packageVersion: '4.0.1', - resourcePath: resourceResourceFlavor, - } + expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith({ + resourceType: 'StructureDefinition', + id: 'Condition', + url: 'http://hl7.org/fhir/StructureDefinition/Condition', + name: 'Condition', + version: '4.0.2', + sdKind: 'resource', + sdDerivation: 'specialization', + sdType: 'Condition', + sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/DomainResource', + sdAbstract: false, + sdFlavor: 'Resource', + packageName: 'Condition', + packageVersion: '4.0.1', + resourcePath: fixturePath + }); + expect(result).toBe(LoadStatus.LOADED); + }); + + it('should use non local package paths to find package with resource flavor where the resource has no derivation', async () => { + const fixturePath = setupPackageWithFixture( + 'Resource', + '4.0.1', + 'StructureDefinition-Resource.json' ); + const result = await loader.loadPackage('Resource', '4.0.1'); + expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalled(); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith({ + resourceType: 'StructureDefinition', + id: 'Resource', + url: 'http://hl7.org/fhir/StructureDefinition/Resource', + name: 'Resource', + version: '4.0.1', + sdKind: 'resource', + sdDerivation: 'specialization', + sdType: 'Resource', + sdAbstract: true, + sdFlavor: 'Resource', + packageName: 'Resource', + packageVersion: '4.0.1', + resourcePath: fixturePath + }); expect(result).toBe(LoadStatus.LOADED); }); - + it('should use non local package paths to find package with type flavor', async () => { - const resourceResourceFlavor = path.resolve(__dirname, 'fixtures', 'StructureDefinition-Address.json'); - const pkg = setupLoadPackage('Address', '4.0.1', 'not-loaded', undefined, - resourceResourceFlavor, undefined, '2024-05-24T16:27:17-04:00', - {resourceType: 'StructureDefinition', id: 'Address'}); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValue(true); - packageCacheMock.getPackagePath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageDBMock.savePackageInfo.mockImplementation(() => {}); // TODO - packageCacheMock.getPotentialResourcePaths.calledWith(pkg.name, pkg.version).mockReturnValue([pkg.packageJsonPath]); - const humanBeingJSON = fs.readJsonSync(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValue(humanBeingJSON); - packageDBMock.getPackageStats.calledWith(pkg.name, pkg.version).mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 1 }); - + const fixturePath = setupPackageWithFixture( + 'Address', + '4.0.1', + 'StructureDefinition-Address.json' + ); const result = await loader.loadPackage('Address', '4.0.1'); - expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); - expect(packageDBMock.saveResourceInfo).toHaveBeenCalled(); - expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith( - { - resourceType: 'StructureDefinition', - id: 'Address', - url: 'http://hl7.org/fhir/StructureDefinition/Address', + expect(packageDBMock.savePackageInfo).toHaveBeenCalledWith( + expect.objectContaining({ name: 'Address', - version: '4.0.1', - sdKind: 'complex-type', - sdDerivation: 'specialization', - sdType: 'Address', - sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/Element', - sdAbstract: false, - sdFlavor: 'Type', - packageName: 'Address', - packageVersion: '4.0.1', - resourcePath: resourceResourceFlavor, - } + version: '4.0.1' + }) ); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalled(); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith({ + resourceType: 'StructureDefinition', + id: 'Address', + url: 'http://hl7.org/fhir/StructureDefinition/Address', + name: 'Address', + version: '4.0.1', + sdKind: 'complex-type', + sdDerivation: 'specialization', + sdType: 'Address', + sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/Element', + sdAbstract: false, + sdFlavor: 'Type', + packageName: 'Address', + packageVersion: '4.0.1', + resourcePath: fixturePath + }); expect(result).toBe(LoadStatus.LOADED); }); - - it('should use non local package paths to find package with extension url of imposeprofile', async () => { - const resourceResourceFlavor = path.resolve(__dirname, 'fixtures', 'StructureDefinition-named-and-gendered-patient.json'); - const pkg = setupLoadPackage('named-and-gendered-patient', '0.1.0', 'not-loaded', undefined, - resourceResourceFlavor, undefined, '2024-05-24T16:27:17-04:00', - {resourceType: 'StructureDefinition', id: 'valued-observation'}); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValue(true); - packageCacheMock.getPackagePath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPotentialResourcePaths.calledWith(pkg.name, pkg.version).mockReturnValue([pkg.packageJsonPath]); - const humanBeingJSON = fs.readJsonSync(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValue(humanBeingJSON); - packageDBMock.getPackageStats.calledWith(pkg.name, pkg.version).mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 1 }); - - const result = await loader.loadPackage('named-and-gendered-patient', '0.1.0'); - expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); - expect(packageDBMock.saveResourceInfo).toHaveBeenCalled(); - expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith( - { + it('should use non local package paths to find package with extension url of imposeprofile', async () => { + const fixturePath = setupPackageWithFixture( + 'named-and-gendered-patient', + '0.1.0', + 'StructureDefinition-named-and-gendered-patient.json' + ); + const result = await loader.loadPackage('named-and-gendered-patient', '0.1.0'); + expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalled(); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith({ resourceType: 'StructureDefinition', id: 'named-and-gendered-patient', url: 'http://example.org/impose/StructureDefinition/named-and-gendered-patient', @@ -555,54 +693,53 @@ describe('BasePackageLoader', () => { sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/Patient', sdAbstract: false, sdFlavor: 'Profile', - sdImposeProfiles: ['http://example.org/impose/StructureDefinition/named-patient', 'http://example.org/impose/StructureDefinition/gendered-patient'], + sdImposeProfiles: [ + 'http://example.org/impose/StructureDefinition/named-patient', + 'http://example.org/impose/StructureDefinition/gendered-patient' + ], packageName: 'named-and-gendered-patient', packageVersion: '0.1.0', - resourcePath: resourceResourceFlavor, - } - ); - expect(result).toBe(LoadStatus.LOADED); - }); + resourcePath: fixturePath + }); + expect(result).toBe(LoadStatus.LOADED); + }); - // it('should use non local package paths to find package with extension url of logical-target', async () => { - // }); + it('should use non local package paths to find package with package json path that leads to non-existing resource', async () => { + const pkg = setupLoadPackage('empty-json-id', '0.1.0', 'not-loaded'); + packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValue(true); + packageCacheMock.getPackagePath + .calledWith(pkg.name, pkg.version) + .mockReturnValue(pkg.packageBasePath); + packageCacheMock.getPackageJSONPath + .calledWith(pkg.name, pkg.version) + .mockReturnValue(pkg.packageJsonPath); + packageCacheMock.getPotentialResourcePaths + .calledWith(pkg.name, pkg.version) + .mockReturnValue([pkg.resourcePath]); + packageCacheMock.getResourceAtPath.calledWith(pkg.resourcePath).mockImplementation(() => { + throw new Error('load resource at json path error'); + }); + packageDBMock.getPackageStats.calledWith(pkg.name, pkg.version).mockImplementation(() => { + throw new Error('get package stats error'); + }); - it('should use non local package paths to find package with package json path that leads to non-existing resource', async () => { - const pkg = setupLoadPackage('empty-json-id', '0.1.0', 'not-loaded'); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValue(true); - packageCacheMock.getPackagePath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPotentialResourcePaths.calledWith(pkg.name, pkg.version).mockReturnValue([pkg.packageJsonPath]); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockImplementation(() => {throw new Error('load resource at json path error');}); - packageDBMock.getPackageStats.calledWith(pkg.name, pkg.version).mockImplementation(() => {throw new Error('get package stats error');}); - - const result = await loader.loadPackage('empty-json-id', '0.1.0'); - expect(result).toBe(LoadStatus.FAILED); - // expect(loggerSpy.getLastMessage('info')).toBe('JSON file at path Package/json/path/empty-json-id/0.1.0 was not FHIR resource'); - expect(packageCacheMock.getPotentialResourcePaths).toHaveBeenCalled(); - expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); - expect(packageDBMock.saveResourceInfo).not.toHaveBeenCalled(); - - }); + const result = await loader.loadPackage('empty-json-id', '0.1.0'); + expect(result).toBe(LoadStatus.FAILED); + expect(packageCacheMock.getPotentialResourcePaths).toHaveBeenCalled(); + expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); + expect(packageDBMock.saveResourceInfo).not.toHaveBeenCalled(); + }); - it('should use non local package paths to find package with extension flavor', async () => { - const resourceResourceFlavor = path.resolve(__dirname, 'fixtures', 'StructureDefinition-patient-birthPlace.json'); - const pkg = setupLoadPackage('patient-birthPlace', '4.0.1', 'not-loaded', undefined, - resourceResourceFlavor, undefined, '2024-05-24T16:27:17-04:00', - {resourceType: 'StructureDefinition', id: 'patient-birthPlace'}); - packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValue(true); - packageCacheMock.getPackagePath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPackageJSONPath.calledWith(pkg.name, pkg.version).mockReturnValue(pkg.packageJsonPath); - packageCacheMock.getPotentialResourcePaths.calledWith(pkg.name, pkg.version).mockReturnValue([pkg.packageJsonPath]); - const humanBeingJSON = fs.readJsonSync(pkg.packageJsonPath); - packageCacheMock.getResourceAtPath.calledWith(pkg.packageJsonPath).mockReturnValue(humanBeingJSON); - packageDBMock.getPackageStats.calledWith(pkg.name, pkg.version).mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 1 }); - - const result = await loader.loadPackage('patient-birthPlace', '4.0.1'); - expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); - expect(packageDBMock.saveResourceInfo).toHaveBeenCalled(); - expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith( - { + it('should use non local package paths to find package with extension flavor', async () => { + const fixturePath = setupPackageWithFixture( + 'patient-birthPlace', + '4.0.1', + 'StructureDefinition-patient-birthPlace.json' + ); + const result = await loader.loadPackage('patient-birthPlace', '4.0.1'); + expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalled(); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith({ resourceType: 'StructureDefinition', id: 'patient-birthPlace', url: 'http://hl7.org/fhir/StructureDefinition/patient-birthPlace', @@ -616,18 +753,74 @@ describe('BasePackageLoader', () => { sdFlavor: 'Extension', packageName: 'patient-birthPlace', packageVersion: '4.0.1', - resourcePath: resourceResourceFlavor, - } - ); - expect(result).toBe(LoadStatus.LOADED); + resourcePath: fixturePath + }); + expect(result).toBe(LoadStatus.LOADED); + }); + + it('should show an info message when a JSON file in a loaded package is not a FHIR resource', async () => { + const resourceResourceFlavor = path.resolve( + __dirname, + 'fixtures', + 'StructureDefinition-patient-birthPlace.json' + ); + const birthPlaceJSON = fs.readJsonSync(resourceResourceFlavor); + const pkg = setupLoadPackage('package-with-non-resource', '4.0.1', 'not-loaded'); + packageCacheMock.isPackageInCache.calledWith(pkg.name, pkg.version).mockReturnValue(true); + packageCacheMock.getPackagePath + .calledWith(pkg.name, pkg.version) + .mockReturnValue(pkg.packageBasePath); + packageCacheMock.getPackageJSONPath + .calledWith(pkg.name, pkg.version) + .mockReturnValue(pkg.packageJsonPath); + packageCacheMock.getPotentialResourcePaths + .calledWith(pkg.name, pkg.version) + .mockReturnValue([ + path.join(pkg.packageJsonPath, '1.json'), + path.join(pkg.packageJsonPath, '2.json') + ]); + packageCacheMock.getResourceAtPath + .calledWith(path.join(pkg.packageJsonPath, '1.json')) + .mockReturnValue(birthPlaceJSON); + packageCacheMock.getResourceAtPath + .calledWith(path.join(pkg.packageJsonPath, '2.json')) + .mockReturnValue({ blanket: 'cozy' }); + packageDBMock.getPackageStats + .calledWith(pkg.name, pkg.version) + .mockReturnValue({ name: pkg.name, version: pkg.version, resourceCount: 1 }); + + const result = await loader.loadPackage('package-with-non-resource', '4.0.1'); + // expect debug message for 2.json + expect(loggerSpy.getLastMessage('debug')).toBe( + `JSON file at path ${path.join(pkg.packageJsonPath, '2.json')} was not FHIR resource` + ); + expect(packageDBMock.savePackageInfo).toHaveBeenCalled(); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalledTimes(1); + expect(packageDBMock.saveResourceInfo).toHaveBeenCalledWith({ + resourceType: 'StructureDefinition', + id: 'patient-birthPlace', + url: 'http://hl7.org/fhir/StructureDefinition/patient-birthPlace', + name: 'birthPlace', + version: '4.0.1', + sdKind: 'complex-type', + sdDerivation: 'constraint', + sdType: 'Extension', + sdBaseDefinition: 'http://hl7.org/fhir/StructureDefinition/Extension', + sdAbstract: false, + sdFlavor: 'Extension', + packageName: 'package-with-non-resource', + packageVersion: '4.0.1', + resourcePath: path.join(pkg.packageJsonPath, '1.json') + }); + expect(result).toBe(LoadStatus.LOADED); + }); }); -}); describe('#getPackageLoadStatus', () => { it('should return LOADED status if package was previously loaded', async () => { const name = 'some.ig'; const version = '1.2.3'; - packageDBMock.findPackageInfo.calledWith(name, version).mockReturnValue({name, version}); + packageDBMock.findPackageInfo.calledWith(name, version).mockReturnValue({ name, version }); const result = loader.getPackageLoadStatus(name, version); expect(result).toBe(LoadStatus.LOADED); }); @@ -642,94 +835,241 @@ describe('BasePackageLoader', () => { }); describe('#findPackageInfos', () => { - it ('should return package info array', () => { + it('should return package info array', () => { const name = 'some.ig'; - const version = '1.2.3'; - loader.findPackageInfos = jest.fn().mockReturnValueOnce([{name, version}]); + packageDBMock.findPackageInfos.calledWith(name).mockReturnValueOnce([ + { name: 'some.ig', version: '1.2.3' }, + { name: 'some.ig', version: '2.3.4' } + ]); const result = loader.findPackageInfos(name); - expect(result[0].name).toBe(name); - expect(result[0].version).toBe(version); + expect(result).toEqual([ + { name: 'some.ig', version: '1.2.3' }, + { name: 'some.ig', version: '2.3.4' } + ]); }); }); describe('#findPackageInfo', () => { - it ('should return package info object', () => { + it('should return package info object', () => { const name = 'some.ig'; const version = '1.2.3'; - loader.findPackageInfo = jest.fn().mockReturnValueOnce({name, version}); + packageDBMock.findPackageInfo + .calledWith(name, version) + .mockReturnValueOnce({ name: 'some.ig', version: '1.2.3' }); const result = loader.findPackageInfo(name, version); - expect(result.name).toBe(name); - expect(result.version).toBe(version); + expect(result.name).toBe('some.ig'); + expect(result.version).toBe('1.2.3'); }); }); describe('#findPackageJSONs', () => { - it ('should return package json array', () => { + it('should return package json array', () => { const name = 'some.ig'; - loader.findPackageJSONs = jest.fn().mockReturnValueOnce([{'resource' : 'json/path/name', 'date': '20240824230227', 'resourceType': 'resourceTypeName'}]); + packageDBMock.findPackageInfos.calledWith(name).mockReturnValueOnce([ + { + name: 'some.ig', + version: '1.2.3', + packageJSONPath: '/first/package/package.json' + }, + { + name: 'some.ig', + version: '2.3.4' + }, + { + name: 'some.ig', + version: '3.4.5', + packageJSONPath: '/third/package/package.json' + } + ]); + packageCacheMock.getResourceAtPath + .calledWith('/first/package/package.json') + .mockReturnValueOnce({ id: 'some.ig', version: '1.2.3' }); + packageCacheMock.getResourceAtPath + .calledWith('/second/package/package.json') + .mockReturnValueOnce({ id: 'some.ig', version: '2.3.4' }); + packageCacheMock.getResourceAtPath + .calledWith('/third/package/package.json') + .mockReturnValueOnce({ id: 'some.ig', version: '3.4.5' }); const result = loader.findPackageJSONs(name); - expect(result[0].resource).toBe('json/path/name'); - expect(result[0].date).toBe('20240824230227'); - expect(result[0].resourceType).toBe('resourceTypeName'); + expect(packageCacheMock.getResourceAtPath).toHaveBeenCalledTimes(2); + expect(result).toHaveLength(2); + expect(result[0]).toEqual({ id: 'some.ig', version: '1.2.3' }); + expect(result[1]).toEqual({ id: 'some.ig', version: '3.4.5' }); }); }); describe('#findPackageJSON', () => { - it ('should return package json array', () => { + it('should return package json', () => { const name = 'some.ig'; const version = '1.2.3'; - loader.findPackageJSON = jest.fn().mockReturnValueOnce({'resource' : 'json/path/name', 'date': '20240824230227', 'resourceType': 'resourceTypeName'}); + packageDBMock.findPackageInfo.calledWith('some.ig', '1.2.3').mockReturnValueOnce({ + name: 'some.ig', + version: '1.2.3', + packageJSONPath: '/some/package/package.json' + }); + packageCacheMock.getResourceAtPath + .calledWith('/some/package/package.json') + .mockReturnValueOnce({ + date: '20240824230227', + resourceType: 'resourceTypeName' + }); const result = loader.findPackageJSON(name, version); - expect(result.resource).toBe('json/path/name'); - expect(result.date).toBe('20240824230227'); - expect(result.resourceType).toBe('resourceTypeName'); + expect(result).toEqual({ + date: '20240824230227', + resourceType: 'resourceTypeName' + }); + }); + + it('should return undefined when the info does not contain a packageJSONPath', () => { + const name = 'some.ig'; + const version = '1.2.3'; + packageDBMock.findPackageInfo.calledWith('some.ig', '1.2.3').mockReturnValueOnce({ + name: 'some.ig', + version: '1.2.3' + }); + packageCacheMock.getResourceAtPath + .calledWith('/some/package/package.json') + .mockReturnValueOnce({ + date: '20240824230227', + resourceType: 'resourceTypeName' + }); + const result = loader.findPackageJSON(name, version); + expect(result).toBeUndefined(); + }); + + it('should return undefined when no info is found', () => { + const name = 'some.ig'; + const version = '1.2.3'; + packageDBMock.findPackageInfo.calledWith('some.ig', '1.2.3').mockReturnValueOnce(undefined); + packageCacheMock.getResourceAtPath + .calledWith('/some/package/package.json') + .mockReturnValueOnce({ + date: '20240824230227', + resourceType: 'resourceTypeName' + }); + const result = loader.findPackageJSON(name, version); + expect(result).toBeUndefined(); }); }); describe('#findResourceInfos', () => { - it ('should return resource array', () => { - const name = 'some.ig'; - loader.findResourceInfos = jest.fn().mockReturnValueOnce([{'resource' : 'json/path/name', 'date': '20240824230227', 'resourceType': 'resourceTypeName'}]); - const result = loader.findResourceInfos(name); - expect(result[0].resourceType).toBe('resourceTypeName'); + it('should return resource array', () => { + const resourceInfos = [ + { + name: 'firstResource', + resourceType: 'StructureDefinition', + version: '1.2.3', + resourcePath: '/some/package/first-thing.json' + }, + { + name: 'secondResource', + resourceType: 'ValueSet', + version: '1.2.3' + }, + { + name: 'thirdResource', + resourceType: 'CodeSystem', + version: '1.2.3', + resourcePath: '/some/package/third-thing.json' + } + ]; + packageDBMock.findResourceInfos.calledWith('*').mockReturnValueOnce(resourceInfos); + const result = loader.findResourceInfos('*'); + expect(result).toHaveLength(3); + expect(result).toEqual(resourceInfos); }); }); describe('#findResourceInfo', () => { - it ('should return resource info', () => { - const name = 'some.ig'; - loader.findResourceInfo = jest.fn().mockReturnValueOnce({'resource' : 'json/path/name', 'date': '20240824230227', 'resourceType': 'resourceTypeName'}); - const result = loader.findResourceInfo(name); - expect(result.resourceType).toBe('resourceTypeName'); + it('should return resource info', () => { + packageDBMock.findResourceInfo.calledWith('firstResource').mockReturnValueOnce({ + name: 'firstResource', + resourceType: 'StructureDefinition', + version: '1.2.3', + resourcePath: '/some/package/first-thing.json' + }); + const result = loader.findResourceInfo('firstResource'); + expect(result).toEqual({ + name: 'firstResource', + resourceType: 'StructureDefinition', + version: '1.2.3', + resourcePath: '/some/package/first-thing.json' + }); }); }); describe('#findResourceJSONs', () => { - it ('should return resource json array', () => { - const name = 'some.ig'; - loader.findResourceJSONs = jest.fn().mockReturnValueOnce([{'resource' : 'json/path/name', 'date': '20240824230227', 'resourceType': 'resourceTypeName'}]); - const result = loader.findResourceJSONs(name); - expect(result[0].resource).toBe('json/path/name'); - expect(result[0].date).toBe('20240824230227'); - expect(result[0].resourceType).toBe('resourceTypeName'); + it('should return resource json array', () => { + const resourceInfos = [ + { + name: 'firstResource', + resourceType: 'StructureDefinition', + version: '1.2.3', + resourcePath: '/some/package/first-thing.json' + }, + { + name: 'secondResource', + resourceType: 'ValueSet', + version: '1.2.3' + }, + { + name: 'thirdResource', + resourceType: 'CodeSystem', + version: '1.2.3', + resourcePath: '/some/package/third-thing.json' + } + ]; + packageDBMock.findResourceInfos.calledWith('*').mockReturnValueOnce(resourceInfos); + packageCacheMock.getResourceAtPath + .calledWith('/some/package/first-thing.json') + .mockReturnValueOnce({ id: 'first-thing', version: '1.2.3' }); + packageCacheMock.getResourceAtPath + .calledWith('/some/package/second-thing.json') + .mockReturnValueOnce({ id: 'second-thing', version: '1.2.3' }); + packageCacheMock.getResourceAtPath + .calledWith('/some/package/third-thing.json') + .mockReturnValueOnce({ id: 'third-thing', version: '1.2.3' }); + const result = loader.findResourceJSONs('*'); + expect(result).toEqual([ + { id: 'first-thing', version: '1.2.3' }, + { id: 'third-thing', version: '1.2.3' } + ]); }); }); describe('#findResourceJSON', () => { - it ('should return resource json', () => { - const name = 'some.ig'; - loader.findResourceJSON = jest.fn().mockReturnValueOnce({'resource' : 'json/path/name', 'date': '20240824230227', 'resourceType': 'resourceTypeName'}); - const result = loader.findResourceJSON(name); - expect(result.resource).toBe('json/path/name'); - expect(result.date).toBe('20240824230227'); - expect(result.resourceType).toBe('resourceTypeName'); + it('should return resource json', () => { + packageDBMock.findResourceInfo.calledWith('firstResource').mockReturnValueOnce({ + name: 'firstResource', + resourceType: 'StructureDefinition', + version: '1.2.3', + resourcePath: '/some/package/first-thing.json' + }); + packageCacheMock.getResourceAtPath + .calledWith('/some/package/first-thing.json') + .mockReturnValueOnce({ id: 'first-thing', version: '1.2.3' }); + const result = loader.findResourceJSON('firstResource'); + expect(result).toEqual({ id: 'first-thing', version: '1.2.3' }); + }); + + it('should return undefined when the info does not contain a resourcePath', () => { + packageDBMock.findResourceInfo.calledWith('first-thing').mockReturnValueOnce({ + name: 'firstResource', + resourceType: 'StructureDefinition', + version: '1.2.3' + }); + packageCacheMock.getResourceAtPath + .calledWith('/some/package/first-thing.json') + .mockReturnValueOnce({ id: 'first-thing', version: '1.2.3' }); + const result = loader.findResourceJSON('firstResource'); + expect(result).toBeUndefined(); }); }); describe('#clear', () => { - it ('should return resource json', () => { + it('should clear the package DB', () => { loader.clear(); expect(packageDBMock.clear).toHaveBeenCalled(); }); }); -}); \ No newline at end of file +}); diff --git a/test/loader/DefaultPackageLoader.test.ts b/test/loader/DefaultPackageLoader.test.ts index b0e80ad..29a1892 100644 --- a/test/loader/DefaultPackageLoader.test.ts +++ b/test/loader/DefaultPackageLoader.test.ts @@ -1,35 +1,55 @@ import { loggerSpy } from '../testhelpers'; -import { mock } from 'jest-mock-extended'; -import { BasePackageLoader, BasePackageLoaderOptions } from '../../src/loader/BasePackageLoader'; -import { LoadStatus } from '../../src/loader/PackageLoader'; -import { PackageDB } from '../../src/db'; -import { PackageCache } from '../../src/cache'; -import { RegistryClient } from '../../src/registry'; -import { CurrentBuildClient } from '../../src/current'; +import { jest } from '@jest/globals'; +import { defaultPackageLoader, defaultPackageLoaderWithLocalResources } from '../../src/loader'; +import { BasePackageLoader } from '../../src/loader/BasePackageLoader'; +import { DiskBasedPackageCache } from '../../src/cache/DiskBasedPackageCache'; -describe('DefaultPackageLoader', () => { - - async function makeMyDefaultPackageLoader(options: BasePackageLoaderOptions) : Promise { - const packageDBMock = mock(); - const packageCacheMock = mock(); - const registryClientMock = mock(); - const currentBuildClientMock = mock(); - const loader = new BasePackageLoader( - packageDBMock, - packageCacheMock, - registryClientMock, - currentBuildClientMock, - { log: options.log } - ); - return loader; - } +jest.mock('sql.js', () => { + return () => { + class Database {} + return { + Database + }; + }; +}); +jest.mock('../../src/db/SQLJSPackageDB'); +jest.mock('../../src/cache/DiskBasedPackageCache', () => { + return { + DiskBasedPackageCache: jest.fn().mockImplementation(() => { + return {}; + }) + }; +}); +jest.mock('../../src/registry/DefaultRegistryClient'); +jest.mock('../../src/current/BuildDotFhirDotOrgClient'); - it('should create a package loader with mock default package loader' , async () => { - const loader = await makeMyDefaultPackageLoader({log: loggerSpy.log}); - loader.getPackageLoadStatus = jest.fn().mockReturnValueOnce(LoadStatus.LOADED); +describe('DefaultPackageLoader', () => { + beforeEach(() => { + (DiskBasedPackageCache as jest.Mock).mockClear(); + }); - const result = await loader.loadPackage('some.ig', '1.2.3'); - expect(result).toBe(LoadStatus.LOADED); - expect(loader.getPackageLoadStatus).toHaveBeenCalledWith('some.ig', '1.2.3'); + it('should create an instance of BasePackageLoader with no local resource folders', async () => { + const loader = await defaultPackageLoader({ log: loggerSpy.log }); + expect(loader).toBeInstanceOf(BasePackageLoader); + expect(DiskBasedPackageCache as jest.Mock).toHaveBeenCalledTimes(1); + expect(DiskBasedPackageCache as jest.Mock).toHaveBeenCalledWith(expect.any(String), [], { + log: loggerSpy.log }); -}); \ No newline at end of file + }); + + it('should create an instance of BasePackageLoader with specified local resource folders', async () => { + const loader = await defaultPackageLoaderWithLocalResources( + ['/some/folder', '/another/good/folder'], + { log: loggerSpy.log } + ); + expect(loader).toBeInstanceOf(BasePackageLoader); + expect(DiskBasedPackageCache as jest.Mock).toHaveBeenCalledTimes(1); + expect(DiskBasedPackageCache as jest.Mock).toHaveBeenCalledWith( + expect.any(String), + ['/some/folder', '/another/good/folder'], + { + log: loggerSpy.log + } + ); + }); +}); diff --git a/test/loader/fixtures/StructureDefinition-Address.json b/test/loader/fixtures/StructureDefinition-Address.json index 8d473da..8d6abd5 100644 --- a/test/loader/fixtures/StructureDefinition-Address.json +++ b/test/loader/fixtures/StructureDefinition-Address.json @@ -1 +1,695 @@ -{"resourceType":"StructureDefinition","id":"Address","meta":{"lastUpdated":"2019-11-01T09:29:23.356+11:00"},"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status","valueCode":"normative"},{"url":"http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version","valueCode":"4.0.0"}],"url":"http://hl7.org/fhir/StructureDefinition/Address","version":"4.0.1","name":"Address","status":"active","date":"2019-11-01T09:29:23+11:00","publisher":"HL7 FHIR Standard","contact":[{"telecom":[{"system":"url","value":"http://hl7.org/fhir"}]}],"description":"Base StructureDefinition for Address Type: An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.","purpose":"Need to be able to record postal addresses, along with notes about their use.","fhirVersion":"4.0.1","mapping":[{"identity":"v2","uri":"http://hl7.org/v2","name":"HL7 v2 Mapping"},{"identity":"rim","uri":"http://hl7.org/v3","name":"RIM Mapping"},{"identity":"servd","uri":"http://www.omg.org/spec/ServD/1.0/","name":"ServD"},{"identity":"vcard","uri":"http://w3.org/vcard","name":"vCard Mapping"}],"kind":"complex-type","abstract":false,"type":"Address","baseDefinition":"http://hl7.org/fhir/StructureDefinition/Element","derivation":"specialization","snapshot":{"element":[{"id":"Address","extension":[{"url":"http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status","valueCode":"normative"},{"url":"http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version","valueCode":"4.0.0"}],"path":"Address","short":"An address expressed using postal conventions (as opposed to GPS or other location definition formats)","definition":"An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.","comment":"Note: address is intended to describe postal addresses for administrative purposes, not to describe absolute geographical coordinates. Postal addresses are often used as proxies for physical locations (also see the [Location](location.html#) resource).","min":0,"max":"*","base":{"path":"Address","min":0,"max":"*"},"condition":["ele-1"],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"}],"isModifier":false,"mapping":[{"identity":"rim","map":"n/a"},{"identity":"v2","map":"XAD"},{"identity":"rim","map":"AD"},{"identity":"servd","map":"Address"}]},{"id":"Address.id","path":"Address.id","representation":["xmlAttr"],"short":"Unique id for inter-element referencing","definition":"Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.","min":0,"max":"1","base":{"path":"Element.id","min":0,"max":"1"},"type":[{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type","valueUrl":"string"}],"code":"http://hl7.org/fhirpath/System.String"}],"isModifier":false,"isSummary":false,"mapping":[{"identity":"rim","map":"n/a"}]},{"id":"Address.extension","path":"Address.extension","slicing":{"discriminator":[{"type":"value","path":"url"}],"description":"Extensions are always sliced by (at least) url","rules":"open"},"short":"Additional content defined by implementations","definition":"May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.","comment":"There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.","alias":["extensions","user content"],"min":0,"max":"*","base":{"path":"Element.extension","min":0,"max":"*"},"type":[{"code":"Extension"}],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"},{"key":"ext-1","severity":"error","human":"Must have either extensions or value[x], not both","expression":"extension.exists() != value.exists()","xpath":"exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])","source":"http://hl7.org/fhir/StructureDefinition/Extension"}],"isModifier":false,"isSummary":false,"mapping":[{"identity":"rim","map":"n/a"}]},{"id":"Address.use","path":"Address.use","short":"home | work | temp | old | billing - purpose of this address","definition":"The purpose of this address.","comment":"Applications can assume that an address is current unless it explicitly says that it is temporary or old.","requirements":"Allows an appropriate address to be chosen from a list of many.","min":0,"max":"1","base":{"path":"Address.use","min":0,"max":"1"},"type":[{"code":"code"}],"example":[{"label":"General","valueCode":"home"}],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"}],"isModifier":true,"isModifierReason":"This is labeled as \"Is Modifier\" because applications should not mistake a temporary or old address etc.for a current/permanent one","isSummary":true,"binding":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName","valueString":"AddressUse"}],"strength":"required","description":"The use of an address.","valueSet":"http://hl7.org/fhir/ValueSet/address-use|4.0.1"},"mapping":[{"identity":"v2","map":"XAD.7"},{"identity":"rim","map":"unique(./use)"},{"identity":"servd","map":"./AddressPurpose"}]},{"id":"Address.type","path":"Address.type","short":"postal | physical | both","definition":"Distinguishes between physical addresses (those you can visit) and mailing addresses (e.g. PO Boxes and care-of addresses). Most addresses are both.","comment":"The definition of Address states that \"address is intended to describe postal addresses, not physical locations\". However, many applications track whether an address has a dual purpose of being a location that can be visited as well as being a valid delivery destination, and Postal addresses are often used as proxies for physical locations (also see the [Location](location.html#) resource).","min":0,"max":"1","base":{"path":"Address.type","min":0,"max":"1"},"type":[{"code":"code"}],"example":[{"label":"General","valueCode":"both"}],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"}],"isModifier":false,"isSummary":true,"binding":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName","valueString":"AddressType"}],"strength":"required","description":"The type of an address (physical / postal).","valueSet":"http://hl7.org/fhir/ValueSet/address-type|4.0.1"},"mapping":[{"identity":"v2","map":"XAD.18"},{"identity":"rim","map":"unique(./use)"},{"identity":"vcard","map":"address type parameter"}]},{"id":"Address.text","path":"Address.text","short":"Text representation of the address","definition":"Specifies the entire address as it should be displayed e.g. on a postal label. This may be provided instead of or as well as the specific parts.","comment":"Can provide both a text representation and parts. Applications updating an address SHALL ensure that when both text and parts are present, no content is included in the text that isn't found in a part.","requirements":"A renderable, unencoded form.","min":0,"max":"1","base":{"path":"Address.text","min":0,"max":"1"},"type":[{"code":"string"}],"example":[{"label":"General","valueString":"137 Nowhere Street, Erewhon 9132"}],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"}],"isModifier":false,"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.1 + XAD.2 + XAD.3 + XAD.4 + XAD.5 + XAD.6"},{"identity":"rim","map":"./formatted"},{"identity":"vcard","map":"address label parameter"}]},{"id":"Address.line","path":"Address.line","short":"Street name, number, direction & P.O. Box etc.","definition":"This component contains the house number, apartment number, street name, street direction, P.O. Box number, delivery hints, and similar address information.","min":0,"max":"*","base":{"path":"Address.line","min":0,"max":"*"},"type":[{"code":"string"}],"orderMeaning":"The order in which lines should appear in an address label","example":[{"label":"General","valueString":"137 Nowhere Street"}],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"}],"isModifier":false,"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.1 + XAD.2 (note: XAD.1 and XAD.2 have different meanings for a company address than for a person address)"},{"identity":"rim","map":"AD.part[parttype = AL]"},{"identity":"vcard","map":"street"},{"identity":"servd","map":"./StreetAddress (newline delimitted)"}]},{"id":"Address.city","path":"Address.city","short":"Name of city, town etc.","definition":"The name of the city, town, suburb, village or other community or delivery center.","alias":["Municpality"],"min":0,"max":"1","base":{"path":"Address.city","min":0,"max":"1"},"type":[{"code":"string"}],"example":[{"label":"General","valueString":"Erewhon"}],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"}],"isModifier":false,"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.3"},{"identity":"rim","map":"AD.part[parttype = CTY]"},{"identity":"vcard","map":"locality"},{"identity":"servd","map":"./Jurisdiction"}]},{"id":"Address.district","path":"Address.district","short":"District name (aka county)","definition":"The name of the administrative area (county).","comment":"District is sometimes known as county, but in some regions 'county' is used in place of city (municipality), so county name should be conveyed in city instead.","alias":["County"],"min":0,"max":"1","base":{"path":"Address.district","min":0,"max":"1"},"type":[{"code":"string"}],"example":[{"label":"General","valueString":"Madison"}],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"}],"isModifier":false,"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.9"},{"identity":"rim","map":"AD.part[parttype = CNT | CPA]"}]},{"id":"Address.state","path":"Address.state","short":"Sub-unit of country (abbreviations ok)","definition":"Sub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (e.g. US 2 letter state codes).","alias":["Province","Territory"],"min":0,"max":"1","base":{"path":"Address.state","min":0,"max":"1"},"type":[{"code":"string"}],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"}],"isModifier":false,"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.4"},{"identity":"rim","map":"AD.part[parttype = STA]"},{"identity":"vcard","map":"region"},{"identity":"servd","map":"./Region"}]},{"id":"Address.postalCode","path":"Address.postalCode","short":"Postal code for area","definition":"A postal code designating a region defined by the postal service.","alias":["Zip"],"min":0,"max":"1","base":{"path":"Address.postalCode","min":0,"max":"1"},"type":[{"code":"string"}],"example":[{"label":"General","valueString":"9132"}],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"}],"isModifier":false,"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.5"},{"identity":"rim","map":"AD.part[parttype = ZIP]"},{"identity":"vcard","map":"code"},{"identity":"servd","map":"./PostalIdentificationCode"}]},{"id":"Address.country","path":"Address.country","short":"Country (e.g. can be ISO 3166 2 or 3 letter code)","definition":"Country - a nation as commonly understood or generally accepted.","comment":"ISO 3166 3 letter codes can be used in place of a human readable country name.","min":0,"max":"1","base":{"path":"Address.country","min":0,"max":"1"},"type":[{"code":"string"}],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"}],"isModifier":false,"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.6"},{"identity":"rim","map":"AD.part[parttype = CNT]"},{"identity":"vcard","map":"country"},{"identity":"servd","map":"./Country"}]},{"id":"Address.period","path":"Address.period","short":"Time period when address was/is in use","definition":"Time period when address was/is in use.","requirements":"Allows addresses to be placed in historical context.","min":0,"max":"1","base":{"path":"Address.period","min":0,"max":"1"},"type":[{"code":"Period"}],"example":[{"label":"General","valuePeriod":{"start":"2010-03-23","end":"2010-07-01"}}],"constraint":[{"key":"ele-1","severity":"error","human":"All FHIR elements must have a @value or children","expression":"hasValue() or (children().count() > id.count())","xpath":"@value|f:*|h:div","source":"http://hl7.org/fhir/StructureDefinition/Element"}],"isModifier":false,"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.12 / XAD.13 + XAD.14"},{"identity":"rim","map":"./usablePeriod[type=\"IVL\"]"},{"identity":"servd","map":"./StartDate and ./EndDate"}]}]},"differential":{"element":[{"id":"Address","extension":[{"url":"http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status","valueCode":"normative"},{"url":"http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version","valueCode":"4.0.0"}],"path":"Address","short":"An address expressed using postal conventions (as opposed to GPS or other location definition formats)","definition":"An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.","comment":"Note: address is intended to describe postal addresses for administrative purposes, not to describe absolute geographical coordinates. Postal addresses are often used as proxies for physical locations (also see the [Location](location.html#) resource).","min":0,"max":"*","mapping":[{"identity":"v2","map":"XAD"},{"identity":"rim","map":"AD"},{"identity":"servd","map":"Address"}]},{"id":"Address.use","path":"Address.use","short":"home | work | temp | old | billing - purpose of this address","definition":"The purpose of this address.","comment":"Applications can assume that an address is current unless it explicitly says that it is temporary or old.","requirements":"Allows an appropriate address to be chosen from a list of many.","min":0,"max":"1","type":[{"code":"code"}],"example":[{"label":"General","valueCode":"home"}],"isModifier":true,"isModifierReason":"This is labeled as \"Is Modifier\" because applications should not mistake a temporary or old address etc.for a current/permanent one","isSummary":true,"binding":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName","valueString":"AddressUse"}],"strength":"required","description":"The use of an address.","valueSet":"http://hl7.org/fhir/ValueSet/address-use|4.0.1"},"mapping":[{"identity":"v2","map":"XAD.7"},{"identity":"rim","map":"unique(./use)"},{"identity":"servd","map":"./AddressPurpose"}]},{"id":"Address.type","path":"Address.type","short":"postal | physical | both","definition":"Distinguishes between physical addresses (those you can visit) and mailing addresses (e.g. PO Boxes and care-of addresses). Most addresses are both.","comment":"The definition of Address states that \"address is intended to describe postal addresses, not physical locations\". However, many applications track whether an address has a dual purpose of being a location that can be visited as well as being a valid delivery destination, and Postal addresses are often used as proxies for physical locations (also see the [Location](location.html#) resource).","min":0,"max":"1","type":[{"code":"code"}],"example":[{"label":"General","valueCode":"both"}],"isSummary":true,"binding":{"extension":[{"url":"http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName","valueString":"AddressType"}],"strength":"required","description":"The type of an address (physical / postal).","valueSet":"http://hl7.org/fhir/ValueSet/address-type|4.0.1"},"mapping":[{"identity":"v2","map":"XAD.18"},{"identity":"rim","map":"unique(./use)"},{"identity":"vcard","map":"address type parameter"}]},{"id":"Address.text","path":"Address.text","short":"Text representation of the address","definition":"Specifies the entire address as it should be displayed e.g. on a postal label. This may be provided instead of or as well as the specific parts.","comment":"Can provide both a text representation and parts. Applications updating an address SHALL ensure that when both text and parts are present, no content is included in the text that isn't found in a part.","requirements":"A renderable, unencoded form.","min":0,"max":"1","type":[{"code":"string"}],"example":[{"label":"General","valueString":"137 Nowhere Street, Erewhon 9132"}],"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.1 + XAD.2 + XAD.3 + XAD.4 + XAD.5 + XAD.6"},{"identity":"rim","map":"./formatted"},{"identity":"vcard","map":"address label parameter"}]},{"id":"Address.line","path":"Address.line","short":"Street name, number, direction & P.O. Box etc.","definition":"This component contains the house number, apartment number, street name, street direction, P.O. Box number, delivery hints, and similar address information.","min":0,"max":"*","type":[{"code":"string"}],"orderMeaning":"The order in which lines should appear in an address label","example":[{"label":"General","valueString":"137 Nowhere Street"}],"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.1 + XAD.2 (note: XAD.1 and XAD.2 have different meanings for a company address than for a person address)"},{"identity":"rim","map":"AD.part[parttype = AL]"},{"identity":"vcard","map":"street"},{"identity":"servd","map":"./StreetAddress (newline delimitted)"}]},{"id":"Address.city","path":"Address.city","short":"Name of city, town etc.","definition":"The name of the city, town, suburb, village or other community or delivery center.","alias":["Municpality"],"min":0,"max":"1","type":[{"code":"string"}],"example":[{"label":"General","valueString":"Erewhon"}],"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.3"},{"identity":"rim","map":"AD.part[parttype = CTY]"},{"identity":"vcard","map":"locality"},{"identity":"servd","map":"./Jurisdiction"}]},{"id":"Address.district","path":"Address.district","short":"District name (aka county)","definition":"The name of the administrative area (county).","comment":"District is sometimes known as county, but in some regions 'county' is used in place of city (municipality), so county name should be conveyed in city instead.","alias":["County"],"min":0,"max":"1","type":[{"code":"string"}],"example":[{"label":"General","valueString":"Madison"}],"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.9"},{"identity":"rim","map":"AD.part[parttype = CNT | CPA]"}]},{"id":"Address.state","path":"Address.state","short":"Sub-unit of country (abbreviations ok)","definition":"Sub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (e.g. US 2 letter state codes).","alias":["Province","Territory"],"min":0,"max":"1","type":[{"code":"string"}],"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.4"},{"identity":"rim","map":"AD.part[parttype = STA]"},{"identity":"vcard","map":"region"},{"identity":"servd","map":"./Region"}]},{"id":"Address.postalCode","path":"Address.postalCode","short":"Postal code for area","definition":"A postal code designating a region defined by the postal service.","alias":["Zip"],"min":0,"max":"1","type":[{"code":"string"}],"example":[{"label":"General","valueString":"9132"}],"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.5"},{"identity":"rim","map":"AD.part[parttype = ZIP]"},{"identity":"vcard","map":"code"},{"identity":"servd","map":"./PostalIdentificationCode"}]},{"id":"Address.country","path":"Address.country","short":"Country (e.g. can be ISO 3166 2 or 3 letter code)","definition":"Country - a nation as commonly understood or generally accepted.","comment":"ISO 3166 3 letter codes can be used in place of a human readable country name.","min":0,"max":"1","type":[{"code":"string"}],"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.6"},{"identity":"rim","map":"AD.part[parttype = CNT]"},{"identity":"vcard","map":"country"},{"identity":"servd","map":"./Country"}]},{"id":"Address.period","path":"Address.period","short":"Time period when address was/is in use","definition":"Time period when address was/is in use.","requirements":"Allows addresses to be placed in historical context.","min":0,"max":"1","type":[{"code":"Period"}],"example":[{"label":"General","valuePeriod":{"start":"2010-03-23","end":"2010-07-01"}}],"isSummary":true,"mapping":[{"identity":"v2","map":"XAD.12 / XAD.13 + XAD.14"},{"identity":"rim","map":"./usablePeriod[type=\"IVL\"]"},{"identity":"servd","map":"./StartDate and ./EndDate"}]}]}} \ No newline at end of file +{ + "resourceType": "StructureDefinition", + "id": "Address", + "meta": { "lastUpdated": "2019-11-01T09:29:23.356+11:00" }, + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "normative" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version", + "valueCode": "4.0.0" + } + ], + "url": "http://hl7.org/fhir/StructureDefinition/Address", + "version": "4.0.1", + "name": "Address", + "status": "active", + "date": "2019-11-01T09:29:23+11:00", + "publisher": "HL7 FHIR Standard", + "contact": [{ "telecom": [{ "system": "url", "value": "http://hl7.org/fhir" }] }], + "description": "Base StructureDefinition for Address Type: An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.", + "purpose": "Need to be able to record postal addresses, along with notes about their use.", + "fhirVersion": "4.0.1", + "mapping": [ + { "identity": "v2", "uri": "http://hl7.org/v2", "name": "HL7 v2 Mapping" }, + { "identity": "rim", "uri": "http://hl7.org/v3", "name": "RIM Mapping" }, + { "identity": "servd", "uri": "http://www.omg.org/spec/ServD/1.0/", "name": "ServD" }, + { "identity": "vcard", "uri": "http://w3.org/vcard", "name": "vCard Mapping" } + ], + "kind": "complex-type", + "abstract": false, + "type": "Address", + "baseDefinition": "http://hl7.org/fhir/StructureDefinition/Element", + "derivation": "specialization", + "snapshot": { + "element": [ + { + "id": "Address", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "normative" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version", + "valueCode": "4.0.0" + } + ], + "path": "Address", + "short": "An address expressed using postal conventions (as opposed to GPS or other location definition formats)", + "definition": "An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.", + "comment": "Note: address is intended to describe postal addresses for administrative purposes, not to describe absolute geographical coordinates. Postal addresses are often used as proxies for physical locations (also see the [Location](location.html#) resource).", + "min": 0, + "max": "*", + "base": { "path": "Address", "min": 0, "max": "*" }, + "condition": ["ele-1"], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "mapping": [ + { "identity": "rim", "map": "n/a" }, + { "identity": "v2", "map": "XAD" }, + { "identity": "rim", "map": "AD" }, + { "identity": "servd", "map": "Address" } + ] + }, + { + "id": "Address.id", + "path": "Address.id", + "representation": ["xmlAttr"], + "short": "Unique id for inter-element referencing", + "definition": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", + "min": 0, + "max": "1", + "base": { "path": "Element.id", "min": 0, "max": "1" }, + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", + "valueUrl": "string" + } + ], + "code": "http://hl7.org/fhirpath/System.String" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [{ "identity": "rim", "map": "n/a" }] + }, + { + "id": "Address.extension", + "path": "Address.extension", + "slicing": { + "discriminator": [{ "type": "value", "path": "url" }], + "description": "Extensions are always sliced by (at least) url", + "rules": "open" + }, + "short": "Additional content defined by implementations", + "definition": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "alias": ["extensions", "user content"], + "min": 0, + "max": "*", + "base": { "path": "Element.extension", "min": 0, "max": "*" }, + "type": [{ "code": "Extension" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [{ "identity": "rim", "map": "n/a" }] + }, + { + "id": "Address.use", + "path": "Address.use", + "short": "home | work | temp | old | billing - purpose of this address", + "definition": "The purpose of this address.", + "comment": "Applications can assume that an address is current unless it explicitly says that it is temporary or old.", + "requirements": "Allows an appropriate address to be chosen from a list of many.", + "min": 0, + "max": "1", + "base": { "path": "Address.use", "min": 0, "max": "1" }, + "type": [{ "code": "code" }], + "example": [{ "label": "General", "valueCode": "home" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": true, + "isModifierReason": "This is labeled as \"Is Modifier\" because applications should not mistake a temporary or old address etc.for a current/permanent one", + "isSummary": true, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "AddressUse" + } + ], + "strength": "required", + "description": "The use of an address.", + "valueSet": "http://hl7.org/fhir/ValueSet/address-use|4.0.1" + }, + "mapping": [ + { "identity": "v2", "map": "XAD.7" }, + { "identity": "rim", "map": "unique(./use)" }, + { "identity": "servd", "map": "./AddressPurpose" } + ] + }, + { + "id": "Address.type", + "path": "Address.type", + "short": "postal | physical | both", + "definition": "Distinguishes between physical addresses (those you can visit) and mailing addresses (e.g. PO Boxes and care-of addresses). Most addresses are both.", + "comment": "The definition of Address states that \"address is intended to describe postal addresses, not physical locations\". However, many applications track whether an address has a dual purpose of being a location that can be visited as well as being a valid delivery destination, and Postal addresses are often used as proxies for physical locations (also see the [Location](location.html#) resource).", + "min": 0, + "max": "1", + "base": { "path": "Address.type", "min": 0, "max": "1" }, + "type": [{ "code": "code" }], + "example": [{ "label": "General", "valueCode": "both" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "AddressType" + } + ], + "strength": "required", + "description": "The type of an address (physical / postal).", + "valueSet": "http://hl7.org/fhir/ValueSet/address-type|4.0.1" + }, + "mapping": [ + { "identity": "v2", "map": "XAD.18" }, + { "identity": "rim", "map": "unique(./use)" }, + { "identity": "vcard", "map": "address type parameter" } + ] + }, + { + "id": "Address.text", + "path": "Address.text", + "short": "Text representation of the address", + "definition": "Specifies the entire address as it should be displayed e.g. on a postal label. This may be provided instead of or as well as the specific parts.", + "comment": "Can provide both a text representation and parts. Applications updating an address SHALL ensure that when both text and parts are present, no content is included in the text that isn't found in a part.", + "requirements": "A renderable, unencoded form.", + "min": 0, + "max": "1", + "base": { "path": "Address.text", "min": 0, "max": "1" }, + "type": [{ "code": "string" }], + "example": [{ "label": "General", "valueString": "137 Nowhere Street, Erewhon 9132" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.1 + XAD.2 + XAD.3 + XAD.4 + XAD.5 + XAD.6" }, + { "identity": "rim", "map": "./formatted" }, + { "identity": "vcard", "map": "address label parameter" } + ] + }, + { + "id": "Address.line", + "path": "Address.line", + "short": "Street name, number, direction & P.O. Box etc.", + "definition": "This component contains the house number, apartment number, street name, street direction, P.O. Box number, delivery hints, and similar address information.", + "min": 0, + "max": "*", + "base": { "path": "Address.line", "min": 0, "max": "*" }, + "type": [{ "code": "string" }], + "orderMeaning": "The order in which lines should appear in an address label", + "example": [{ "label": "General", "valueString": "137 Nowhere Street" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "v2", + "map": "XAD.1 + XAD.2 (note: XAD.1 and XAD.2 have different meanings for a company address than for a person address)" + }, + { "identity": "rim", "map": "AD.part[parttype = AL]" }, + { "identity": "vcard", "map": "street" }, + { "identity": "servd", "map": "./StreetAddress (newline delimitted)" } + ] + }, + { + "id": "Address.city", + "path": "Address.city", + "short": "Name of city, town etc.", + "definition": "The name of the city, town, suburb, village or other community or delivery center.", + "alias": ["Municpality"], + "min": 0, + "max": "1", + "base": { "path": "Address.city", "min": 0, "max": "1" }, + "type": [{ "code": "string" }], + "example": [{ "label": "General", "valueString": "Erewhon" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.3" }, + { "identity": "rim", "map": "AD.part[parttype = CTY]" }, + { "identity": "vcard", "map": "locality" }, + { "identity": "servd", "map": "./Jurisdiction" } + ] + }, + { + "id": "Address.district", + "path": "Address.district", + "short": "District name (aka county)", + "definition": "The name of the administrative area (county).", + "comment": "District is sometimes known as county, but in some regions 'county' is used in place of city (municipality), so county name should be conveyed in city instead.", + "alias": ["County"], + "min": 0, + "max": "1", + "base": { "path": "Address.district", "min": 0, "max": "1" }, + "type": [{ "code": "string" }], + "example": [{ "label": "General", "valueString": "Madison" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.9" }, + { "identity": "rim", "map": "AD.part[parttype = CNT | CPA]" } + ] + }, + { + "id": "Address.state", + "path": "Address.state", + "short": "Sub-unit of country (abbreviations ok)", + "definition": "Sub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (e.g. US 2 letter state codes).", + "alias": ["Province", "Territory"], + "min": 0, + "max": "1", + "base": { "path": "Address.state", "min": 0, "max": "1" }, + "type": [{ "code": "string" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.4" }, + { "identity": "rim", "map": "AD.part[parttype = STA]" }, + { "identity": "vcard", "map": "region" }, + { "identity": "servd", "map": "./Region" } + ] + }, + { + "id": "Address.postalCode", + "path": "Address.postalCode", + "short": "Postal code for area", + "definition": "A postal code designating a region defined by the postal service.", + "alias": ["Zip"], + "min": 0, + "max": "1", + "base": { "path": "Address.postalCode", "min": 0, "max": "1" }, + "type": [{ "code": "string" }], + "example": [{ "label": "General", "valueString": "9132" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.5" }, + { "identity": "rim", "map": "AD.part[parttype = ZIP]" }, + { "identity": "vcard", "map": "code" }, + { "identity": "servd", "map": "./PostalIdentificationCode" } + ] + }, + { + "id": "Address.country", + "path": "Address.country", + "short": "Country (e.g. can be ISO 3166 2 or 3 letter code)", + "definition": "Country - a nation as commonly understood or generally accepted.", + "comment": "ISO 3166 3 letter codes can be used in place of a human readable country name.", + "min": 0, + "max": "1", + "base": { "path": "Address.country", "min": 0, "max": "1" }, + "type": [{ "code": "string" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.6" }, + { "identity": "rim", "map": "AD.part[parttype = CNT]" }, + { "identity": "vcard", "map": "country" }, + { "identity": "servd", "map": "./Country" } + ] + }, + { + "id": "Address.period", + "path": "Address.period", + "short": "Time period when address was/is in use", + "definition": "Time period when address was/is in use.", + "requirements": "Allows addresses to be placed in historical context.", + "min": 0, + "max": "1", + "base": { "path": "Address.period", "min": 0, "max": "1" }, + "type": [{ "code": "Period" }], + "example": [ + { "label": "General", "valuePeriod": { "start": "2010-03-23", "end": "2010-07-01" } } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.12 / XAD.13 + XAD.14" }, + { "identity": "rim", "map": "./usablePeriod[type=\"IVL\"]" }, + { "identity": "servd", "map": "./StartDate and ./EndDate" } + ] + } + ] + }, + "differential": { + "element": [ + { + "id": "Address", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "normative" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version", + "valueCode": "4.0.0" + } + ], + "path": "Address", + "short": "An address expressed using postal conventions (as opposed to GPS or other location definition formats)", + "definition": "An address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations which might not be valid for mail delivery. There are a variety of postal address formats defined around the world.", + "comment": "Note: address is intended to describe postal addresses for administrative purposes, not to describe absolute geographical coordinates. Postal addresses are often used as proxies for physical locations (also see the [Location](location.html#) resource).", + "min": 0, + "max": "*", + "mapping": [ + { "identity": "v2", "map": "XAD" }, + { "identity": "rim", "map": "AD" }, + { "identity": "servd", "map": "Address" } + ] + }, + { + "id": "Address.use", + "path": "Address.use", + "short": "home | work | temp | old | billing - purpose of this address", + "definition": "The purpose of this address.", + "comment": "Applications can assume that an address is current unless it explicitly says that it is temporary or old.", + "requirements": "Allows an appropriate address to be chosen from a list of many.", + "min": 0, + "max": "1", + "type": [{ "code": "code" }], + "example": [{ "label": "General", "valueCode": "home" }], + "isModifier": true, + "isModifierReason": "This is labeled as \"Is Modifier\" because applications should not mistake a temporary or old address etc.for a current/permanent one", + "isSummary": true, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "AddressUse" + } + ], + "strength": "required", + "description": "The use of an address.", + "valueSet": "http://hl7.org/fhir/ValueSet/address-use|4.0.1" + }, + "mapping": [ + { "identity": "v2", "map": "XAD.7" }, + { "identity": "rim", "map": "unique(./use)" }, + { "identity": "servd", "map": "./AddressPurpose" } + ] + }, + { + "id": "Address.type", + "path": "Address.type", + "short": "postal | physical | both", + "definition": "Distinguishes between physical addresses (those you can visit) and mailing addresses (e.g. PO Boxes and care-of addresses). Most addresses are both.", + "comment": "The definition of Address states that \"address is intended to describe postal addresses, not physical locations\". However, many applications track whether an address has a dual purpose of being a location that can be visited as well as being a valid delivery destination, and Postal addresses are often used as proxies for physical locations (also see the [Location](location.html#) resource).", + "min": 0, + "max": "1", + "type": [{ "code": "code" }], + "example": [{ "label": "General", "valueCode": "both" }], + "isSummary": true, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "AddressType" + } + ], + "strength": "required", + "description": "The type of an address (physical / postal).", + "valueSet": "http://hl7.org/fhir/ValueSet/address-type|4.0.1" + }, + "mapping": [ + { "identity": "v2", "map": "XAD.18" }, + { "identity": "rim", "map": "unique(./use)" }, + { "identity": "vcard", "map": "address type parameter" } + ] + }, + { + "id": "Address.text", + "path": "Address.text", + "short": "Text representation of the address", + "definition": "Specifies the entire address as it should be displayed e.g. on a postal label. This may be provided instead of or as well as the specific parts.", + "comment": "Can provide both a text representation and parts. Applications updating an address SHALL ensure that when both text and parts are present, no content is included in the text that isn't found in a part.", + "requirements": "A renderable, unencoded form.", + "min": 0, + "max": "1", + "type": [{ "code": "string" }], + "example": [{ "label": "General", "valueString": "137 Nowhere Street, Erewhon 9132" }], + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.1 + XAD.2 + XAD.3 + XAD.4 + XAD.5 + XAD.6" }, + { "identity": "rim", "map": "./formatted" }, + { "identity": "vcard", "map": "address label parameter" } + ] + }, + { + "id": "Address.line", + "path": "Address.line", + "short": "Street name, number, direction & P.O. Box etc.", + "definition": "This component contains the house number, apartment number, street name, street direction, P.O. Box number, delivery hints, and similar address information.", + "min": 0, + "max": "*", + "type": [{ "code": "string" }], + "orderMeaning": "The order in which lines should appear in an address label", + "example": [{ "label": "General", "valueString": "137 Nowhere Street" }], + "isSummary": true, + "mapping": [ + { + "identity": "v2", + "map": "XAD.1 + XAD.2 (note: XAD.1 and XAD.2 have different meanings for a company address than for a person address)" + }, + { "identity": "rim", "map": "AD.part[parttype = AL]" }, + { "identity": "vcard", "map": "street" }, + { "identity": "servd", "map": "./StreetAddress (newline delimitted)" } + ] + }, + { + "id": "Address.city", + "path": "Address.city", + "short": "Name of city, town etc.", + "definition": "The name of the city, town, suburb, village or other community or delivery center.", + "alias": ["Municpality"], + "min": 0, + "max": "1", + "type": [{ "code": "string" }], + "example": [{ "label": "General", "valueString": "Erewhon" }], + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.3" }, + { "identity": "rim", "map": "AD.part[parttype = CTY]" }, + { "identity": "vcard", "map": "locality" }, + { "identity": "servd", "map": "./Jurisdiction" } + ] + }, + { + "id": "Address.district", + "path": "Address.district", + "short": "District name (aka county)", + "definition": "The name of the administrative area (county).", + "comment": "District is sometimes known as county, but in some regions 'county' is used in place of city (municipality), so county name should be conveyed in city instead.", + "alias": ["County"], + "min": 0, + "max": "1", + "type": [{ "code": "string" }], + "example": [{ "label": "General", "valueString": "Madison" }], + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.9" }, + { "identity": "rim", "map": "AD.part[parttype = CNT | CPA]" } + ] + }, + { + "id": "Address.state", + "path": "Address.state", + "short": "Sub-unit of country (abbreviations ok)", + "definition": "Sub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (e.g. US 2 letter state codes).", + "alias": ["Province", "Territory"], + "min": 0, + "max": "1", + "type": [{ "code": "string" }], + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.4" }, + { "identity": "rim", "map": "AD.part[parttype = STA]" }, + { "identity": "vcard", "map": "region" }, + { "identity": "servd", "map": "./Region" } + ] + }, + { + "id": "Address.postalCode", + "path": "Address.postalCode", + "short": "Postal code for area", + "definition": "A postal code designating a region defined by the postal service.", + "alias": ["Zip"], + "min": 0, + "max": "1", + "type": [{ "code": "string" }], + "example": [{ "label": "General", "valueString": "9132" }], + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.5" }, + { "identity": "rim", "map": "AD.part[parttype = ZIP]" }, + { "identity": "vcard", "map": "code" }, + { "identity": "servd", "map": "./PostalIdentificationCode" } + ] + }, + { + "id": "Address.country", + "path": "Address.country", + "short": "Country (e.g. can be ISO 3166 2 or 3 letter code)", + "definition": "Country - a nation as commonly understood or generally accepted.", + "comment": "ISO 3166 3 letter codes can be used in place of a human readable country name.", + "min": 0, + "max": "1", + "type": [{ "code": "string" }], + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.6" }, + { "identity": "rim", "map": "AD.part[parttype = CNT]" }, + { "identity": "vcard", "map": "country" }, + { "identity": "servd", "map": "./Country" } + ] + }, + { + "id": "Address.period", + "path": "Address.period", + "short": "Time period when address was/is in use", + "definition": "Time period when address was/is in use.", + "requirements": "Allows addresses to be placed in historical context.", + "min": 0, + "max": "1", + "type": [{ "code": "Period" }], + "example": [ + { "label": "General", "valuePeriod": { "start": "2010-03-23", "end": "2010-07-01" } } + ], + "isSummary": true, + "mapping": [ + { "identity": "v2", "map": "XAD.12 / XAD.13 + XAD.14" }, + { "identity": "rim", "map": "./usablePeriod[type=\"IVL\"]" }, + { "identity": "servd", "map": "./StartDate and ./EndDate" } + ] + } + ] + } +} diff --git a/test/loader/fixtures/StructureDefinition-Resource.json b/test/loader/fixtures/StructureDefinition-Resource.json new file mode 100644 index 0000000..26b7391 --- /dev/null +++ b/test/loader/fixtures/StructureDefinition-Resource.json @@ -0,0 +1,250 @@ +{ + "resourceType": "StructureDefinition", + "id": "Resource", + "meta": { "lastUpdated": "2019-11-01T09:29:23.356+11:00" }, + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "normative" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version", + "valueCode": "4.0.0" + }, + { "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm", "valueInteger": 5 }, + { "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg", "valueCode": "fhir" } + ], + "url": "http://hl7.org/fhir/StructureDefinition/Resource", + "version": "4.0.1", + "name": "Resource", + "status": "active", + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ + { "telecom": [{ "system": "url", "value": "http://hl7.org/fhir" }] }, + { + "telecom": [ + { "system": "url", "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" } + ] + } + ], + "description": "This is the base resource type for everything.", + "fhirVersion": "4.0.1", + "mapping": [{ "identity": "rim", "uri": "http://hl7.org/v3", "name": "RIM Mapping" }], + "kind": "resource", + "abstract": true, + "type": "Resource", + "snapshot": { + "element": [ + { + "id": "Resource", + "path": "Resource", + "short": "Base Resource", + "definition": "This is the base resource type for everything.", + "min": 0, + "max": "*", + "base": { "path": "Resource", "min": 0, "max": "*" }, + "isModifier": false, + "isSummary": false, + "mapping": [{ "identity": "rim", "map": "Entity. Role, or Act" }] + }, + { + "id": "Resource.id", + "path": "Resource.id", + "short": "Logical id of this artifact", + "definition": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.", + "comment": "The only time that a resource does not have an id is when it is being submitted to the server using a create operation.", + "min": 0, + "max": "1", + "base": { "path": "Resource.id", "min": 0, "max": "1" }, + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", + "valueUrl": "string" + } + ], + "code": "http://hl7.org/fhirpath/System.String" + } + ], + "isModifier": false, + "isSummary": true + }, + { + "id": "Resource.meta", + "path": "Resource.meta", + "short": "Metadata about the resource", + "definition": "The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.", + "min": 0, + "max": "1", + "base": { "path": "Resource.meta", "min": 0, "max": "1" }, + "type": [{ "code": "Meta" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true + }, + { + "id": "Resource.implicitRules", + "path": "Resource.implicitRules", + "short": "A set of rules under which this content was created", + "definition": "A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.", + "comment": "Asserting this rule set restricts the content to be only understood by a limited set of trading partners. This inherently limits the usefulness of the data in the long term. However, the existing health eco-system is highly fractured, and not yet ready to define, collect, and exchange data in a generally computable sense. Wherever possible, implementers and/or specification writers should avoid using this element. Often, when used, the URL is a reference to an implementation guide that defines these special rules as part of it's narrative along with other profiles, value sets, etc.", + "min": 0, + "max": "1", + "base": { "path": "Resource.implicitRules", "min": 0, "max": "1" }, + "type": [{ "code": "uri" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": true, + "isModifierReason": "This element is labeled as a modifier because the implicit rules may provide additional knowledge about the resource that modifies it's meaning or interpretation", + "isSummary": true + }, + { + "id": "Resource.language", + "path": "Resource.language", + "short": "Language of the resource content", + "definition": "The base language in which the resource is written.", + "comment": "Language is provided to support indexing and accessibility (typically, services such as text to speech use the language tag). The html language tag in the narrative applies to the narrative. The language tag on the resource may be used to specify the language of other presentations generated from the data in the resource. Not all the content has to be in the base language. The Resource.language should not be assumed to apply to the narrative automatically. If a language is specified, it should it also be specified on the div element in the html (see rules in HTML5 for information about the relationship between xml:lang and the html lang attribute).", + "min": 0, + "max": "1", + "base": { "path": "Resource.language", "min": 0, "max": "1" }, + "type": [{ "code": "code" }], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet", + "valueCanonical": "http://hl7.org/fhir/ValueSet/all-languages" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "Language" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", + "valueBoolean": true + } + ], + "strength": "preferred", + "description": "A human language.", + "valueSet": "http://hl7.org/fhir/ValueSet/languages" + } + } + ] + }, + "differential": { + "element": [ + { + "id": "Resource", + "path": "Resource", + "short": "Base Resource", + "definition": "This is the base resource type for everything.", + "min": 0, + "max": "*", + "mapping": [{ "identity": "rim", "map": "Entity. Role, or Act" }] + }, + { + "id": "Resource.id", + "path": "Resource.id", + "short": "Logical id of this artifact", + "definition": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.", + "comment": "The only time that a resource does not have an id is when it is being submitted to the server using a create operation.", + "min": 0, + "max": "1", + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", + "valueUrl": "string" + } + ], + "code": "http://hl7.org/fhirpath/System.String" + } + ], + "isSummary": true + }, + { + "id": "Resource.meta", + "path": "Resource.meta", + "short": "Metadata about the resource", + "definition": "The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.", + "min": 0, + "max": "1", + "type": [{ "code": "Meta" }], + "isSummary": true + }, + { + "id": "Resource.implicitRules", + "path": "Resource.implicitRules", + "short": "A set of rules under which this content was created", + "definition": "A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.", + "comment": "Asserting this rule set restricts the content to be only understood by a limited set of trading partners. This inherently limits the usefulness of the data in the long term. However, the existing health eco-system is highly fractured, and not yet ready to define, collect, and exchange data in a generally computable sense. Wherever possible, implementers and/or specification writers should avoid using this element. Often, when used, the URL is a reference to an implementation guide that defines these special rules as part of it's narrative along with other profiles, value sets, etc.", + "min": 0, + "max": "1", + "type": [{ "code": "uri" }], + "isModifier": true, + "isModifierReason": "This element is labeled as a modifier because the implicit rules may provide additional knowledge about the resource that modifies it's meaning or interpretation", + "isSummary": true + }, + { + "id": "Resource.language", + "path": "Resource.language", + "short": "Language of the resource content", + "definition": "The base language in which the resource is written.", + "comment": "Language is provided to support indexing and accessibility (typically, services such as text to speech use the language tag). The html language tag in the narrative applies to the narrative. The language tag on the resource may be used to specify the language of other presentations generated from the data in the resource. Not all the content has to be in the base language. The Resource.language should not be assumed to apply to the narrative automatically. If a language is specified, it should it also be specified on the div element in the html (see rules in HTML5 for information about the relationship between xml:lang and the html lang attribute).", + "min": 0, + "max": "1", + "type": [{ "code": "code" }], + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet", + "valueCanonical": "http://hl7.org/fhir/ValueSet/all-languages" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "Language" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", + "valueBoolean": true + } + ], + "strength": "preferred", + "description": "A human language.", + "valueSet": "http://hl7.org/fhir/ValueSet/languages" + } + } + ] + } +} diff --git a/test/loader/fixtures/StructureDefinition-human-being-logical-model.json b/test/loader/fixtures/StructureDefinition-human-being-logical-model.json index e44f017..2b4f133 100644 --- a/test/loader/fixtures/StructureDefinition-human-being-logical-model.json +++ b/test/loader/fixtures/StructureDefinition-human-being-logical-model.json @@ -1,392 +1,445 @@ { - "resourceType" : "StructureDefinition", - "id" : "human-being-logical-model", - "text" : { - "status" : "extensions", - "div" : "
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
NameFlagsCard.TypeDescription & Constraints\"doco\"
\".\"\".\" human-being-logical-model 0..*BaseHuman Being
Instances of this logical model are not marked to be the target of a Reference
\".\"\".\"\".\" name Σ0..*HumanNameName(s) of the human
\".\"\".\"\".\" birthDate Σ0..1dateTimeThe date of birth, if known
\".\"\".\"\".\" deceased[x] Σ0..1Indication if the human is deceased
\".\"\".\"\".\"\".\" deceasedBooleanboolean
\".\"\".\"\".\"\".\" deceasedDateTimedateTime
\".\"\".\"\".\"\".\" deceasedAgeAge
\".\"\".\"\".\" family 0..1BackboneElementFamily
\".\"\".\"\".\"\".\" mother 0..2family-memberMother
\".\"\".\"\".\"\".\" father 0..2family-memberFather
\".\"\".\"\".\"\".\" sibling 0..*family-memberSibling

\"doco\" Documentation for this format
" - }, - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-type-characteristics", - "valueCode" : "can-be-target" - }], - "url" : "http://example.org/fhir/locals/StructureDefinition/human-being-logical-model", - "version" : "1.0.0", - "name" : "Human", - "title" : "Human Being", - "status" : "draft", - "date" : "2024-05-24T16:27:17-04:00", - "publisher" : "Example Publisher", - "contact" : [{ - "name" : "Example Publisher", - "telecom" : [{ - "system" : "url", - "value" : "http://example.org/example-publisher" - }] - }], - "description" : "A member of the Homo sapiens species.", - "fhirVersion" : "4.0.1", - "kind" : "logical", - "abstract" : false, - "type" : "http://example.org/fhir/locals/StructureDefinition/human-being-logical-model", - "baseDefinition" : "http://hl7.org/fhir/StructureDefinition/Base", - "derivation" : "specialization", - "snapshot" : { - "element" : [{ - "id" : "human-being-logical-model", - "path" : "human-being-logical-model", - "short" : "Human Being", - "definition" : "A member of the Homo sapiens species.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Base", - "min" : 0, - "max" : "*" - }, - "isModifier" : false - }, + "resourceType": "StructureDefinition", + "id": "human-being-logical-model", + "extension": [ { - "id" : "human-being-logical-model.name", - "path" : "human-being-logical-model.name", - "short" : "Name(s) of the human", - "definition" : "The names by which the human is or has been known", - "min" : 0, - "max" : "*", - "base" : { - "path" : "human-being-logical-model.name", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "HumanName" - }], - "isSummary" : true - }, + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-type-characteristics", + "valueCode": "can-be-target" + } + ], + "url": "http://example.org/fhir/locals/StructureDefinition/human-being-logical-model", + "version": "1.0.0", + "name": "Human", + "title": "Human Being", + "status": "draft", + "date": "2024-05-24T16:27:17-04:00", + "publisher": "Example Publisher", + "contact": [ { - "id" : "human-being-logical-model.birthDate", - "path" : "human-being-logical-model.birthDate", - "short" : "The date of birth, if known", - "definition" : "The date on which the person was born. Approximations may be used if exact date is unknown.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "human-being-logical-model.birthDate", - "min" : 0, - "max" : "1" + "name": "Example Publisher", + "telecom": [ + { + "system": "url", + "value": "http://example.org/example-publisher" + } + ] + } + ], + "description": "A member of the Homo sapiens species.", + "fhirVersion": "4.0.1", + "kind": "logical", + "abstract": false, + "type": "http://example.org/fhir/locals/StructureDefinition/human-being-logical-model", + "baseDefinition": "http://hl7.org/fhir/StructureDefinition/Base", + "derivation": "specialization", + "snapshot": { + "element": [ + { + "id": "human-being-logical-model", + "path": "human-being-logical-model", + "short": "Human Being", + "definition": "A member of the Homo sapiens species.", + "min": 0, + "max": "*", + "base": { + "path": "Base", + "min": 0, + "max": "*" + }, + "isModifier": false }, - "type" : [{ - "code" : "dateTime" - }], - "isSummary" : true - }, - { - "id" : "human-being-logical-model.deceased[x]", - "path" : "human-being-logical-model.deceased[x]", - "short" : "Indication if the human is deceased", - "definition" : "An indication if the human has died. Boolean should not be used if date or age at death are known.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "human-being-logical-model.deceased[x]", - "min" : 0, - "max" : "1" + { + "id": "human-being-logical-model.name", + "path": "human-being-logical-model.name", + "short": "Name(s) of the human", + "definition": "The names by which the human is or has been known", + "min": 0, + "max": "*", + "base": { + "path": "human-being-logical-model.name", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "HumanName" + } + ], + "isSummary": true }, - "type" : [{ - "code" : "boolean" + { + "id": "human-being-logical-model.birthDate", + "path": "human-being-logical-model.birthDate", + "short": "The date of birth, if known", + "definition": "The date on which the person was born. Approximations may be used if exact date is unknown.", + "min": 0, + "max": "1", + "base": { + "path": "human-being-logical-model.birthDate", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "dateTime" + } + ], + "isSummary": true }, { - "code" : "dateTime" + "id": "human-being-logical-model.deceased[x]", + "path": "human-being-logical-model.deceased[x]", + "short": "Indication if the human is deceased", + "definition": "An indication if the human has died. Boolean should not be used if date or age at death are known.", + "min": 0, + "max": "1", + "base": { + "path": "human-being-logical-model.deceased[x]", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "boolean" + }, + { + "code": "dateTime" + }, + { + "code": "Age" + } + ], + "isSummary": true }, { - "code" : "Age" - }], - "isSummary" : true - }, - { - "id" : "human-being-logical-model.family", - "path" : "human-being-logical-model.family", - "short" : "Family", - "definition" : "Members of the human's immediate family.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "human-being-logical-model.family", - "min" : 0, - "max" : "1" + "id": "human-being-logical-model.family", + "path": "human-being-logical-model.family", + "short": "Family", + "definition": "Members of the human's immediate family.", + "min": 0, + "max": "1", + "base": { + "path": "human-being-logical-model.family", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "BackboneElement" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ] }, - "type" : [{ - "code" : "BackboneElement" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }] - }, - { - "id" : "human-being-logical-model.family.id", - "path" : "human-being-logical-model.family.id", - "representation" : ["xmlAttr"], - "short" : "Unique id for inter-element referencing", - "definition" : "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Element.id", - "min" : 0, - "max" : "1" + { + "id": "human-being-logical-model.family.id", + "path": "human-being-logical-model.family.id", + "representation": ["xmlAttr"], + "short": "Unique id for inter-element referencing", + "definition": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", + "min": 0, + "max": "1", + "base": { + "path": "Element.id", + "min": 0, + "max": "1" + }, + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", + "valueUrl": "string" + } + ], + "code": "http://hl7.org/fhirpath/System.String" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] }, - "type" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", - "valueUrl" : "string" - }], - "code" : "http://hl7.org/fhirpath/System.String" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "human-being-logical-model.family.extension", - "path" : "human-being-logical-model.family.extension", - "slicing" : { - "discriminator" : [{ - "type" : "value", - "path" : "url" - }], - "description" : "Extensions are always sliced by (at least) url", - "rules" : "open" + { + "id": "human-being-logical-model.family.extension", + "path": "human-being-logical-model.family.extension", + "slicing": { + "discriminator": [ + { + "type": "value", + "path": "url" + } + ], + "description": "Extensions are always sliced by (at least) url", + "rules": "open" + }, + "short": "Additional content defined by implementations", + "definition": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "alias": ["extensions", "user content"], + "min": 0, + "max": "*", + "base": { + "path": "Element.extension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] + }, + { + "id": "human-being-logical-model.family.modifierExtension", + "path": "human-being-logical-model.family.modifierExtension", + "short": "Extensions that cannot be ignored even if unrecognized", + "definition": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "requirements": "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", + "alias": ["extensions", "user content", "modifiers"], + "min": 0, + "max": "*", + "base": { + "path": "BackboneElement.modifierExtension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": true, + "isModifierReason": "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", + "isSummary": true, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] }, - "short" : "Additional content defined by implementations", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "alias" : ["extensions", - "user content"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Element.extension", - "min" : 0, - "max" : "*" + { + "id": "human-being-logical-model.family.mother", + "path": "human-being-logical-model.family.mother", + "short": "Mother", + "definition": "Biological mother, current adoptive mother, or both.", + "min": 0, + "max": "2", + "base": { + "path": "human-being-logical-model.family.mother", + "min": 0, + "max": "2" + }, + "type": [ + { + "code": "http://example.org/fhir/locals/StructureDefinition/family-member" + } + ] }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" + { + "id": "human-being-logical-model.family.father", + "path": "human-being-logical-model.family.father", + "short": "Father", + "definition": "Biological father, current adoptive father, or both.", + "min": 0, + "max": "2", + "base": { + "path": "human-being-logical-model.family.father", + "min": 0, + "max": "2" + }, + "type": [ + { + "code": "http://example.org/fhir/locals/StructureDefinition/family-member" + } + ] }, { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "human-being-logical-model.family.modifierExtension", - "path" : "human-being-logical-model.family.modifierExtension", - "short" : "Extensions that cannot be ignored even if unrecognized", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "requirements" : "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", - "alias" : ["extensions", - "user content", - "modifiers"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "BackboneElement.modifierExtension", - "min" : 0, - "max" : "*" + "id": "human-being-logical-model.family.sibling", + "path": "human-being-logical-model.family.sibling", + "short": "Sibling", + "definition": "Other children of the human's mother and/or father.", + "min": 0, + "max": "*", + "base": { + "path": "human-being-logical-model.family.sibling", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "http://example.org/fhir/locals/StructureDefinition/family-member" + } + ] + } + ] + }, + "differential": { + "element": [ + { + "id": "human-being-logical-model", + "path": "human-being-logical-model", + "short": "Human Being", + "definition": "A member of the Homo sapiens species." }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" + { + "id": "human-being-logical-model.name", + "path": "human-being-logical-model.name", + "short": "Name(s) of the human", + "definition": "The names by which the human is or has been known", + "min": 0, + "max": "*", + "type": [ + { + "code": "HumanName" + } + ], + "isSummary": true }, { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : true, - "isModifierReason" : "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", - "isSummary" : true, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] - }, - { - "id" : "human-being-logical-model.family.mother", - "path" : "human-being-logical-model.family.mother", - "short" : "Mother", - "definition" : "Biological mother, current adoptive mother, or both.", - "min" : 0, - "max" : "2", - "base" : { - "path" : "human-being-logical-model.family.mother", - "min" : 0, - "max" : "2" + "id": "human-being-logical-model.birthDate", + "path": "human-being-logical-model.birthDate", + "short": "The date of birth, if known", + "definition": "The date on which the person was born. Approximations may be used if exact date is unknown.", + "min": 0, + "max": "1", + "type": [ + { + "code": "dateTime" + } + ], + "isSummary": true }, - "type" : [{ - "code" : "http://example.org/fhir/locals/StructureDefinition/family-member" - }] - }, - { - "id" : "human-being-logical-model.family.father", - "path" : "human-being-logical-model.family.father", - "short" : "Father", - "definition" : "Biological father, current adoptive father, or both.", - "min" : 0, - "max" : "2", - "base" : { - "path" : "human-being-logical-model.family.father", - "min" : 0, - "max" : "2" + { + "id": "human-being-logical-model.deceased[x]", + "path": "human-being-logical-model.deceased[x]", + "short": "Indication if the human is deceased", + "definition": "An indication if the human has died. Boolean should not be used if date or age at death are known.", + "min": 0, + "max": "1", + "type": [ + { + "code": "boolean" + }, + { + "code": "dateTime" + }, + { + "code": "Age" + } + ], + "isSummary": true }, - "type" : [{ - "code" : "http://example.org/fhir/locals/StructureDefinition/family-member" - }] - }, - { - "id" : "human-being-logical-model.family.sibling", - "path" : "human-being-logical-model.family.sibling", - "short" : "Sibling", - "definition" : "Other children of the human's mother and/or father.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "human-being-logical-model.family.sibling", - "min" : 0, - "max" : "*" + { + "id": "human-being-logical-model.family", + "path": "human-being-logical-model.family", + "short": "Family", + "definition": "Members of the human's immediate family.", + "min": 0, + "max": "1", + "type": [ + { + "code": "BackboneElement" + } + ] }, - "type" : [{ - "code" : "http://example.org/fhir/locals/StructureDefinition/family-member" - }] - }] - }, - "differential" : { - "element" : [{ - "id" : "human-being-logical-model", - "path" : "human-being-logical-model", - "short" : "Human Being", - "definition" : "A member of the Homo sapiens species." - }, - { - "id" : "human-being-logical-model.name", - "path" : "human-being-logical-model.name", - "short" : "Name(s) of the human", - "definition" : "The names by which the human is or has been known", - "min" : 0, - "max" : "*", - "type" : [{ - "code" : "HumanName" - }], - "isSummary" : true - }, - { - "id" : "human-being-logical-model.birthDate", - "path" : "human-being-logical-model.birthDate", - "short" : "The date of birth, if known", - "definition" : "The date on which the person was born. Approximations may be used if exact date is unknown.", - "min" : 0, - "max" : "1", - "type" : [{ - "code" : "dateTime" - }], - "isSummary" : true - }, - { - "id" : "human-being-logical-model.deceased[x]", - "path" : "human-being-logical-model.deceased[x]", - "short" : "Indication if the human is deceased", - "definition" : "An indication if the human has died. Boolean should not be used if date or age at death are known.", - "min" : 0, - "max" : "1", - "type" : [{ - "code" : "boolean" + { + "id": "human-being-logical-model.family.mother", + "path": "human-being-logical-model.family.mother", + "short": "Mother", + "definition": "Biological mother, current adoptive mother, or both.", + "min": 0, + "max": "2", + "type": [ + { + "code": "http://example.org/fhir/locals/StructureDefinition/family-member" + } + ] }, { - "code" : "dateTime" + "id": "human-being-logical-model.family.father", + "path": "human-being-logical-model.family.father", + "short": "Father", + "definition": "Biological father, current adoptive father, or both.", + "min": 0, + "max": "2", + "type": [ + { + "code": "http://example.org/fhir/locals/StructureDefinition/family-member" + } + ] }, { - "code" : "Age" - }], - "isSummary" : true - }, - { - "id" : "human-being-logical-model.family", - "path" : "human-being-logical-model.family", - "short" : "Family", - "definition" : "Members of the human's immediate family.", - "min" : 0, - "max" : "1", - "type" : [{ - "code" : "BackboneElement" - }] - }, - { - "id" : "human-being-logical-model.family.mother", - "path" : "human-being-logical-model.family.mother", - "short" : "Mother", - "definition" : "Biological mother, current adoptive mother, or both.", - "min" : 0, - "max" : "2", - "type" : [{ - "code" : "http://example.org/fhir/locals/StructureDefinition/family-member" - }] - }, - { - "id" : "human-being-logical-model.family.father", - "path" : "human-being-logical-model.family.father", - "short" : "Father", - "definition" : "Biological father, current adoptive father, or both.", - "min" : 0, - "max" : "2", - "type" : [{ - "code" : "http://example.org/fhir/locals/StructureDefinition/family-member" - }] - }, - { - "id" : "human-being-logical-model.family.sibling", - "path" : "human-being-logical-model.family.sibling", - "short" : "Sibling", - "definition" : "Other children of the human's mother and/or father.", - "min" : 0, - "max" : "*", - "type" : [{ - "code" : "http://example.org/fhir/locals/StructureDefinition/family-member" - }] - }] + "id": "human-being-logical-model.family.sibling", + "path": "human-being-logical-model.family.sibling", + "short": "Sibling", + "definition": "Other children of the human's mother and/or father.", + "min": 0, + "max": "*", + "type": [ + { + "code": "http://example.org/fhir/locals/StructureDefinition/family-member" + } + ] + } + ] } -} \ No newline at end of file +} diff --git a/test/loader/fixtures/StructureDefinition-named-and-gendered-patient.json b/test/loader/fixtures/StructureDefinition-named-and-gendered-patient.json index 1173e56..ea4eaa8 100644 --- a/test/loader/fixtures/StructureDefinition-named-and-gendered-patient.json +++ b/test/loader/fixtures/StructureDefinition-named-and-gendered-patient.json @@ -1,1908 +1,2182 @@ { - "resourceType" : "StructureDefinition", - "id" : "named-and-gendered-patient", - "text" : { - "status" : "extensions", - "div" : "
Placeholder
" - }, - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-imposeProfile", - "valueCanonical" : "http://example.org/impose/StructureDefinition/named-patient" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-imposeProfile", - "valueCanonical" : "http://example.org/impose/StructureDefinition/gendered-patient" - }], - "url" : "http://example.org/impose/StructureDefinition/named-and-gendered-patient", - "version" : "0.1.0", - "name" : "NamedAndGenderedPatient", - "title" : "Named and Gendered Patient", - "status" : "draft", - "date" : "2023-10-02T13:12:53-04:00", - "publisher" : "Example Publisher", - "contact" : [{ - "name" : "Example Publisher", - "telecom" : [{ - "system" : "url", - "value" : "http://example.org/example-publisher" - }] - }], - "description" : "A profile on patient requiring at least one name and a gender.", - "fhirVersion" : "4.0.1", - "mapping" : [{ - "identity" : "rim", - "uri" : "http://hl7.org/v3", - "name" : "RIM Mapping" - }, - { - "identity" : "cda", - "uri" : "http://hl7.org/v3/cda", - "name" : "CDA (R2)" - }, - { - "identity" : "w5", - "uri" : "http://hl7.org/fhir/fivews", - "name" : "FiveWs Pattern Mapping" - }, - { - "identity" : "v2", - "uri" : "http://hl7.org/v2", - "name" : "HL7 v2 Mapping" - }, - { - "identity" : "loinc", - "uri" : "http://loinc.org", - "name" : "LOINC code for the element" - }], - "kind" : "resource", - "abstract" : false, - "type" : "Patient", - "baseDefinition" : "http://hl7.org/fhir/StructureDefinition/Patient", - "derivation" : "constraint", - "snapshot" : { - "element" : [{ - "id" : "Patient", - "path" : "Patient", - "short" : "Information about an individual or animal receiving health care services", - "definition" : "Demographics and other administrative information about an individual or animal receiving care or other health-related services.", - "alias" : ["SubjectOfCare Client Resident"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient", - "min" : 0, - "max" : "*" - }, - "constraint" : [{ - "key" : "dom-2", - "severity" : "error", - "human" : "If the resource is contained in another resource, it SHALL NOT contain nested Resources", - "expression" : "contained.contained.empty()", - "xpath" : "not(parent::f:contained and f:contained)", - "source" : "http://hl7.org/fhir/StructureDefinition/DomainResource" - }, - { - "key" : "dom-3", - "severity" : "error", - "human" : "If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource", - "expression" : "contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().as(canonical) | %resource.descendants().as(uri) | %resource.descendants().as(url))) or descendants().where(reference = '#').exists() or descendants().where(as(canonical) = '#').exists() or descendants().where(as(canonical) = '#').exists()).not()).trace('unmatched', id).empty()", - "xpath" : "not(exists(for $id in f:contained/*/f:id/@value return $contained[not(parent::*/descendant::f:reference/@value=concat('#', $contained/*/id/@value) or descendant::f:reference[@value='#'])]))", - "source" : "http://hl7.org/fhir/StructureDefinition/DomainResource" - }, - { - "key" : "dom-4", - "severity" : "error", - "human" : "If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated", - "expression" : "contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()", - "xpath" : "not(exists(f:contained/*/f:meta/f:versionId)) and not(exists(f:contained/*/f:meta/f:lastUpdated))", - "source" : "http://hl7.org/fhir/StructureDefinition/DomainResource" - }, - { - "key" : "dom-5", - "severity" : "error", - "human" : "If a resource is contained in another resource, it SHALL NOT have a security label", - "expression" : "contained.meta.security.empty()", - "xpath" : "not(exists(f:contained/*/f:meta/f:security))", - "source" : "http://hl7.org/fhir/StructureDefinition/DomainResource" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice", - "valueBoolean" : true - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice-explanation", - "valueMarkdown" : "When a resource has no narrative, only systems that fully understand the data can display the resource to a human safely. Including a human readable representation in the resource makes for a much more robust eco-system and cheaper handling of resources by intermediary systems. Some ecosystems restrict distribution of resources to only those systems that do fully understand the resources, and as a consequence implementers may believe that the narrative is superfluous. However experience shows that such eco-systems often open up to new participants over time." - }], - "key" : "dom-6", - "severity" : "warning", - "human" : "A resource should have narrative for robust management", - "expression" : "text.`div`.exists()", - "xpath" : "exists(f:text/h:div)", - "source" : "http://hl7.org/fhir/StructureDefinition/DomainResource" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "Entity. Role, or Act" - }, - { - "identity" : "rim", - "map" : "Patient[classCode=PAT]" - }, - { - "identity" : "cda", - "map" : "ClinicalDocument.recordTarget.patientRole" - }] - }, + "resourceType": "StructureDefinition", + "id": "named-and-gendered-patient", + "extension": [ { - "id" : "Patient.id", - "path" : "Patient.id", - "short" : "Logical id of this artifact", - "definition" : "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.", - "comment" : "The only time that a resource does not have an id is when it is being submitted to the server using a create operation.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Resource.id", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", - "valueUrl" : "id" - }], - "code" : "http://hl7.org/fhirpath/System.String" - }], - "isModifier" : false, - "isSummary" : true - }, - { - "id" : "Patient.meta", - "path" : "Patient.meta", - "short" : "Metadata about the resource", - "definition" : "The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Resource.meta", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Meta" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-imposeProfile", + "valueCanonical": "http://example.org/impose/StructureDefinition/named-patient" }, { - "id" : "Patient.implicitRules", - "path" : "Patient.implicitRules", - "short" : "A set of rules under which this content was created", - "definition" : "A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.", - "comment" : "Asserting this rule set restricts the content to be only understood by a limited set of trading partners. This inherently limits the usefulness of the data in the long term. However, the existing health eco-system is highly fractured, and not yet ready to define, collect, and exchange data in a generally computable sense. Wherever possible, implementers and/or specification writers should avoid using this element. Often, when used, the URL is a reference to an implementation guide that defines these special rules as part of it's narrative along with other profiles, value sets, etc.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Resource.implicitRules", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "uri" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : true, - "isModifierReason" : "This element is labeled as a modifier because the implicit rules may provide additional knowledge about the resource that modifies it's meaning or interpretation", - "isSummary" : true - }, + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-imposeProfile", + "valueCanonical": "http://example.org/impose/StructureDefinition/gendered-patient" + } + ], + "url": "http://example.org/impose/StructureDefinition/named-and-gendered-patient", + "version": "0.1.0", + "name": "NamedAndGenderedPatient", + "title": "Named and Gendered Patient", + "status": "draft", + "date": "2023-10-02T13:12:53-04:00", + "publisher": "Example Publisher", + "contact": [ { - "id" : "Patient.language", - "path" : "Patient.language", - "short" : "Language of the resource content", - "definition" : "The base language in which the resource is written.", - "comment" : "Language is provided to support indexing and accessibility (typically, services such as text to speech use the language tag). The html language tag in the narrative applies to the narrative. The language tag on the resource may be used to specify the language of other presentations generated from the data in the resource. Not all the content has to be in the base language. The Resource.language should not be assumed to apply to the narrative automatically. If a language is specified, it should it also be specified on the div element in the html (see rules in HTML5 for information about the relationship between xml:lang and the html lang attribute).", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Resource.language", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "code" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet", - "valueCanonical" : "http://hl7.org/fhir/ValueSet/all-languages" - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "Language" - }, + "name": "Example Publisher", + "telecom": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", - "valueBoolean" : true - }], - "strength" : "preferred", - "description" : "A human language.", - "valueSet" : "http://hl7.org/fhir/ValueSet/languages" - } - }, - { - "id" : "Patient.text", - "path" : "Patient.text", - "short" : "Text summary of the resource, for human interpretation", - "definition" : "A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it \"clinically safe\" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.", - "comment" : "Contained resources do not have narrative. Resources that are not contained SHOULD have a narrative. In some cases, a resource may only have text with little or no additional discrete data (as long as all minOccurs=1 elements are satisfied). This may be necessary for data from legacy systems where information is captured as a \"text blob\" or where text is additionally entered raw or narrated and encoded information is added later.", - "alias" : ["narrative", - "html", - "xhtml", - "display"], - "min" : 0, - "max" : "1", - "base" : { - "path" : "DomainResource.text", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Narrative" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "Act.text?" - }] - }, - { - "id" : "Patient.contained", - "path" : "Patient.contained", - "short" : "Contained, inline Resources", - "definition" : "These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.", - "comment" : "This should never be done when the content can be identified properly, as once identification is lost, it is extremely difficult (and context dependent) to restore it again. Contained resources may have profiles and tags In their meta elements, but SHALL NOT have security labels.", - "alias" : ["inline resources", - "anonymous resources", - "contained resources"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "DomainResource.contained", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Resource" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] - }, - { - "id" : "Patient.extension", - "path" : "Patient.extension", - "short" : "Additional content defined by implementations", - "definition" : "May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "alias" : ["extensions", - "user content"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "DomainResource.extension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] - }, + "system": "url", + "value": "http://example.org/example-publisher" + } + ] + } + ], + "description": "A profile on patient requiring at least one name and a gender.", + "fhirVersion": "4.0.1", + "mapping": [ { - "id" : "Patient.modifierExtension", - "path" : "Patient.modifierExtension", - "short" : "Extensions that cannot be ignored", - "definition" : "May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "requirements" : "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", - "alias" : ["extensions", - "user content"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "DomainResource.modifierExtension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : true, - "isModifierReason" : "Modifier extensions are expected to modify the meaning or interpretation of the resource that contains them", - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] + "identity": "rim", + "uri": "http://hl7.org/v3", + "name": "RIM Mapping" }, { - "id" : "Patient.identifier", - "path" : "Patient.identifier", - "short" : "An identifier for this patient", - "definition" : "An identifier for this patient.", - "requirements" : "Patients are almost always assigned specific numerical identifiers.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient.identifier", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Identifier" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "w5", - "map" : "FiveWs.identifier" - }, - { - "identity" : "v2", - "map" : "PID-3" - }, - { - "identity" : "rim", - "map" : "id" - }, - { - "identity" : "cda", - "map" : ".id" - }] + "identity": "cda", + "uri": "http://hl7.org/v3/cda", + "name": "CDA (R2)" }, { - "id" : "Patient.active", - "path" : "Patient.active", - "short" : "Whether this patient's record is in active use", - "definition" : "Whether this patient record is in active use. \nMany systems use this property to mark as non-current patients, such as those that have not been seen for a period of time based on an organization's business rules.\n\nIt is often used to filter patient lists to exclude inactive patients\n\nDeceased patients may also be marked as inactive for the same reasons, but may be active for some time after death.", - "comment" : "If a record is inactive, and linked to an active record, then future patient/record updates should occur on the other patient.", - "requirements" : "Need to be able to mark a patient record as not to be used because it was created in error.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.active", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "boolean" - }], - "meaningWhenMissing" : "This resource is generally assumed to be active if no value is provided for the active element", - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : true, - "isModifierReason" : "This element is labelled as a modifier because it is a status element that can indicate that a record should not be treated as valid", - "isSummary" : true, - "mapping" : [{ - "identity" : "w5", - "map" : "FiveWs.status" - }, - { - "identity" : "rim", - "map" : "statusCode" - }, - { - "identity" : "cda", - "map" : "n/a" - }] + "identity": "w5", + "uri": "http://hl7.org/fhir/fivews", + "name": "FiveWs Pattern Mapping" }, { - "id" : "Patient.name", - "path" : "Patient.name", - "short" : "A name associated with the patient", - "definition" : "A name associated with the individual.", - "comment" : "A patient may have multiple names with different uses or applicable periods. For animals, the name is a \"HumanName\" in the sense that is assigned and used by humans and has the same patterns.", - "requirements" : "Need to be able to track the patient by multiple names. Examples are your official name and a partner name.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient.name", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "HumanName" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "v2", - "map" : "PID-5, PID-9" - }, - { - "identity" : "rim", - "map" : "name" - }, - { - "identity" : "cda", - "map" : ".patient.name" - }] - }, - { - "id" : "Patient.telecom", - "path" : "Patient.telecom", - "short" : "A contact detail for the individual", - "definition" : "A contact detail (e.g. a telephone number or an email address) by which the individual may be contacted.", - "comment" : "A Patient may have multiple ways to be contacted with different uses or applicable periods. May need to have options for contacting the person urgently and also to help with identification. The address might not go directly to the individual, but may reach another party that is able to proxy for the patient (i.e. home phone, or pet owner's phone).", - "requirements" : "People have (primary) ways to contact them in some way such as phone, email.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient.telecom", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "ContactPoint" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "v2", - "map" : "PID-13, PID-14, PID-40" - }, - { - "identity" : "rim", - "map" : "telecom" - }, - { - "identity" : "cda", - "map" : ".telecom" - }] + "identity": "v2", + "uri": "http://hl7.org/v2", + "name": "HL7 v2 Mapping" }, { - "id" : "Patient.gender", - "path" : "Patient.gender", - "short" : "male | female | other | unknown", - "definition" : "Administrative Gender - the gender that the patient is considered to have for administration and record keeping purposes.", - "comment" : "The gender might not match the biological sex as determined by genetics or the individual's preferred identification. Note that for both humans and particularly animals, there are other legitimate possibilities than male and female, though the vast majority of systems and contexts only support male and female. Systems providing decision support or enforcing business rules should ideally do this on the basis of Observations dealing with the specific sex or gender aspect of interest (anatomical, chromosomal, social, etc.) However, because these observations are infrequently recorded, defaulting to the administrative gender is common practice. Where such defaulting occurs, rule enforcement should allow for the variation between administrative and biological, chromosomal and other gender aspects. For example, an alert about a hysterectomy on a male should be handled as a warning or overridable error, not a \"hard\" error. See the Patient Gender and Sex section for additional information about communicating patient gender and sex.", - "requirements" : "Needed for identification of the individual, in combination with (at least) name and birth date.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.gender", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "code" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "AdministrativeGender" + "identity": "loinc", + "uri": "http://loinc.org", + "name": "LOINC code for the element" + } + ], + "kind": "resource", + "abstract": false, + "type": "Patient", + "baseDefinition": "http://hl7.org/fhir/StructureDefinition/Patient", + "derivation": "constraint", + "snapshot": { + "element": [ + { + "id": "Patient", + "path": "Patient", + "short": "Information about an individual or animal receiving health care services", + "definition": "Demographics and other administrative information about an individual or animal receiving care or other health-related services.", + "alias": ["SubjectOfCare Client Resident"], + "min": 0, + "max": "*", + "base": { + "path": "Patient", + "min": 0, + "max": "*" }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", - "valueBoolean" : true - }], - "strength" : "required", - "description" : "The gender of a person used for administrative purposes.", - "valueSet" : "http://hl7.org/fhir/ValueSet/administrative-gender|4.0.1" - }, - "mapping" : [{ - "identity" : "v2", - "map" : "PID-8" - }, - { - "identity" : "rim", - "map" : "player[classCode=PSN|ANM and determinerCode=INSTANCE]/administrativeGender" - }, - { - "identity" : "cda", - "map" : ".patient.administrativeGenderCode" - }] - }, - { - "id" : "Patient.birthDate", - "path" : "Patient.birthDate", - "short" : "The date of birth for the individual", - "definition" : "The date of birth for the individual.", - "comment" : "At least an estimated year should be provided as a guess if the real DOB is unknown There is a standard extension \"patient-birthTime\" available that should be used where Time is required (such as in maternity/infant care systems).", - "requirements" : "Age of the individual drives many clinical processes.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.birthDate", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "date" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "v2", - "map" : "PID-7" - }, - { - "identity" : "rim", - "map" : "player[classCode=PSN|ANM and determinerCode=INSTANCE]/birthTime" - }, - { - "identity" : "cda", - "map" : ".patient.birthTime" - }, - { - "identity" : "loinc", - "map" : "21112-8" - }] - }, - { - "id" : "Patient.deceased[x]", - "path" : "Patient.deceased[x]", - "short" : "Indicates if the individual is deceased or not", - "definition" : "Indicates if the individual is deceased or not.", - "comment" : "If there's no value in the instance, it means there is no statement on whether or not the individual is deceased. Most systems will interpret the absence of a value as a sign of the person being alive.", - "requirements" : "The fact that a patient is deceased influences the clinical process. Also, in human communication and relation management it is necessary to know whether the person is alive.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.deceased[x]", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "boolean" - }, - { - "code" : "dateTime" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : true, - "isModifierReason" : "This element is labeled as a modifier because once a patient is marked as deceased, the actions that are appropriate to perform on the patient may be significantly different.", - "isSummary" : true, - "mapping" : [{ - "identity" : "v2", - "map" : "PID-30 (bool) and PID-29 (datetime)" - }, - { - "identity" : "rim", - "map" : "player[classCode=PSN|ANM and determinerCode=INSTANCE]/deceasedInd, player[classCode=PSN|ANM and determinerCode=INSTANCE]/deceasedTime" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.address", - "path" : "Patient.address", - "short" : "An address for the individual", - "definition" : "An address for the individual.", - "comment" : "Patient may have multiple addresses with different uses or applicable periods.", - "requirements" : "May need to keep track of patient addresses for contacting, billing or reporting requirements and also to help with identification.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient.address", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Address" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "v2", - "map" : "PID-11" - }, - { - "identity" : "rim", - "map" : "addr" - }, - { - "identity" : "cda", - "map" : ".addr" - }] - }, - { - "id" : "Patient.maritalStatus", - "path" : "Patient.maritalStatus", - "short" : "Marital (civil) status of a patient", - "definition" : "This field contains a patient's most recent marital (civil) status.", - "requirements" : "Most, if not all systems capture it.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.maritalStatus", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "MaritalStatus" + "constraint": [ + { + "key": "dom-2", + "severity": "error", + "human": "If the resource is contained in another resource, it SHALL NOT contain nested Resources", + "expression": "contained.contained.empty()", + "xpath": "not(parent::f:contained and f:contained)", + "source": "http://hl7.org/fhir/StructureDefinition/DomainResource" + }, + { + "key": "dom-3", + "severity": "error", + "human": "If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource", + "expression": "contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().as(canonical) | %resource.descendants().as(uri) | %resource.descendants().as(url))) or descendants().where(reference = '#').exists() or descendants().where(as(canonical) = '#').exists() or descendants().where(as(canonical) = '#').exists()).not()).trace('unmatched', id).empty()", + "xpath": "not(exists(for $id in f:contained/*/f:id/@value return $contained[not(parent::*/descendant::f:reference/@value=concat('#', $contained/*/id/@value) or descendant::f:reference[@value='#'])]))", + "source": "http://hl7.org/fhir/StructureDefinition/DomainResource" + }, + { + "key": "dom-4", + "severity": "error", + "human": "If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated", + "expression": "contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()", + "xpath": "not(exists(f:contained/*/f:meta/f:versionId)) and not(exists(f:contained/*/f:meta/f:lastUpdated))", + "source": "http://hl7.org/fhir/StructureDefinition/DomainResource" + }, + { + "key": "dom-5", + "severity": "error", + "human": "If a resource is contained in another resource, it SHALL NOT have a security label", + "expression": "contained.meta.security.empty()", + "xpath": "not(exists(f:contained/*/f:meta/f:security))", + "source": "http://hl7.org/fhir/StructureDefinition/DomainResource" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice", + "valueBoolean": true + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice-explanation", + "valueMarkdown": "When a resource has no narrative, only systems that fully understand the data can display the resource to a human safely. Including a human readable representation in the resource makes for a much more robust eco-system and cheaper handling of resources by intermediary systems. Some ecosystems restrict distribution of resources to only those systems that do fully understand the resources, and as a consequence implementers may believe that the narrative is superfluous. However experience shows that such eco-systems often open up to new participants over time." + } + ], + "key": "dom-6", + "severity": "warning", + "human": "A resource should have narrative for robust management", + "expression": "text.`div`.exists()", + "xpath": "exists(f:text/h:div)", + "source": "http://hl7.org/fhir/StructureDefinition/DomainResource" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "Entity. Role, or Act" + }, + { + "identity": "rim", + "map": "Patient[classCode=PAT]" + }, + { + "identity": "cda", + "map": "ClinicalDocument.recordTarget.patientRole" + } + ] + }, + { + "id": "Patient.id", + "path": "Patient.id", + "short": "Logical id of this artifact", + "definition": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.", + "comment": "The only time that a resource does not have an id is when it is being submitted to the server using a create operation.", + "min": 0, + "max": "1", + "base": { + "path": "Resource.id", + "min": 0, + "max": "1" }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", - "valueBoolean" : true - }], - "strength" : "extensible", - "description" : "The domestic partnership status of a person.", - "valueSet" : "http://hl7.org/fhir/ValueSet/marital-status" - }, - "mapping" : [{ - "identity" : "v2", - "map" : "PID-16" - }, - { - "identity" : "rim", - "map" : "player[classCode=PSN]/maritalStatusCode" - }, - { - "identity" : "cda", - "map" : ".patient.maritalStatusCode" - }] - }, - { - "id" : "Patient.multipleBirth[x]", - "path" : "Patient.multipleBirth[x]", - "short" : "Whether patient is part of a multiple birth", - "definition" : "Indicates whether the patient is part of a multiple (boolean) or indicates the actual birth order (integer).", - "comment" : "Where the valueInteger is provided, the number is the birth number in the sequence. E.g. The middle birth in triplets would be valueInteger=2 and the third born would have valueInteger=3 If a boolean value was provided for this triplets example, then all 3 patient records would have valueBoolean=true (the ordering is not indicated).", - "requirements" : "For disambiguation of multiple-birth children, especially relevant where the care provider doesn't meet the patient, such as labs.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.multipleBirth[x]", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "boolean" - }, - { - "code" : "integer" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "PID-24 (bool), PID-25 (integer)" - }, - { - "identity" : "rim", - "map" : "player[classCode=PSN|ANM and determinerCode=INSTANCE]/multipleBirthInd, player[classCode=PSN|ANM and determinerCode=INSTANCE]/multipleBirthOrderNumber" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.photo", - "path" : "Patient.photo", - "short" : "Image of the patient", - "definition" : "Image of the patient.", - "comment" : "Guidelines:\n* Use id photos, not clinical photos.\n* Limit dimensions to thumbnail.\n* Keep byte count low to ease resource updates.", - "requirements" : "Many EHR systems have the capability to capture an image of the patient. Fits with newer social media usage too.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient.photo", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Attachment" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "OBX-5 - needs a profile" - }, - { - "identity" : "rim", - "map" : "player[classCode=PSN|ANM and determinerCode=INSTANCE]/desc" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.contact", - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-explicit-type-name", - "valueString" : "Contact" - }], - "path" : "Patient.contact", - "short" : "A contact party (e.g. guardian, partner, friend) for the patient", - "definition" : "A contact party (e.g. guardian, partner, friend) for the patient.", - "comment" : "Contact covers all kinds of contact parties: family members, business contacts, guardians, caregivers. Not applicable to register pedigree and family ties beyond use of having contact.", - "requirements" : "Need to track people you can contact about the patient.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient.contact", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "BackboneElement" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "pat-1", - "severity" : "error", - "human" : "SHALL at least contain a contact's details or a reference to an organization", - "expression" : "name.exists() or telecom.exists() or address.exists() or organization.exists()", - "xpath" : "exists(f:name) or exists(f:telecom) or exists(f:address) or exists(f:organization)", - "source" : "http://hl7.org/fhir/StructureDefinition/Patient" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "player[classCode=PSN|ANM and determinerCode=INSTANCE]/scopedRole[classCode=CON]" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.contact.id", - "path" : "Patient.contact.id", - "representation" : ["xmlAttr"], - "short" : "Unique id for inter-element referencing", - "definition" : "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Element.id", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", - "valueUrl" : "string" - }], - "code" : "http://hl7.org/fhirpath/System.String" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "Patient.contact.extension", - "path" : "Patient.contact.extension", - "short" : "Additional content defined by implementations", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "alias" : ["extensions", - "user content"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Element.extension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "Patient.contact.modifierExtension", - "path" : "Patient.contact.modifierExtension", - "short" : "Extensions that cannot be ignored even if unrecognized", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "requirements" : "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", - "alias" : ["extensions", - "user content", - "modifiers"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "BackboneElement.modifierExtension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : true, - "isModifierReason" : "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", - "isSummary" : true, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] - }, - { - "id" : "Patient.contact.relationship", - "path" : "Patient.contact.relationship", - "short" : "The kind of relationship", - "definition" : "The nature of the relationship between the patient and the contact person.", - "requirements" : "Used to determine which contact person is the most relevant to approach, depending on circumstances.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient.contact.relationship", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ContactRelationship" - }], - "strength" : "extensible", - "description" : "The nature of the relationship between a patient and a contact person for that patient.", - "valueSet" : "http://hl7.org/fhir/ValueSet/patient-contactrelationship" - }, - "mapping" : [{ - "identity" : "v2", - "map" : "NK1-7, NK1-3" - }, - { - "identity" : "rim", - "map" : "code" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.contact.name", - "path" : "Patient.contact.name", - "short" : "A name associated with the contact person", - "definition" : "A name associated with the contact person.", - "requirements" : "Contact persons need to be identified by name, but it is uncommon to need details about multiple other names for that contact person.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.contact.name", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "HumanName" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "NK1-2" - }, - { - "identity" : "rim", - "map" : "name" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.contact.telecom", - "path" : "Patient.contact.telecom", - "short" : "A contact detail for the person", - "definition" : "A contact detail for the person, e.g. a telephone number or an email address.", - "comment" : "Contact may have multiple ways to be contacted with different uses or applicable periods. May need to have options for contacting the person urgently, and also to help with identification.", - "requirements" : "People have (primary) ways to contact them in some way such as phone, email.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient.contact.telecom", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "ContactPoint" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "NK1-5, NK1-6, NK1-40" - }, - { - "identity" : "rim", - "map" : "telecom" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.contact.address", - "path" : "Patient.contact.address", - "short" : "Address for the contact person", - "definition" : "Address for the contact person.", - "requirements" : "Need to keep track where the contact person can be contacted per postal mail or visited.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.contact.address", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Address" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "NK1-4" - }, - { - "identity" : "rim", - "map" : "addr" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.contact.gender", - "path" : "Patient.contact.gender", - "short" : "male | female | other | unknown", - "definition" : "Administrative Gender - the gender that the contact person is considered to have for administration and record keeping purposes.", - "requirements" : "Needed to address the person correctly.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.contact.gender", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "code" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "AdministrativeGender" + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", + "valueUrl": "id" + } + ], + "code": "http://hl7.org/fhirpath/System.String" + } + ], + "isModifier": false, + "isSummary": true + }, + { + "id": "Patient.meta", + "path": "Patient.meta", + "short": "Metadata about the resource", + "definition": "The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.", + "min": 0, + "max": "1", + "base": { + "path": "Resource.meta", + "min": 0, + "max": "1" }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", - "valueBoolean" : true - }], - "strength" : "required", - "description" : "The gender of a person used for administrative purposes.", - "valueSet" : "http://hl7.org/fhir/ValueSet/administrative-gender|4.0.1" - }, - "mapping" : [{ - "identity" : "v2", - "map" : "NK1-15" - }, - { - "identity" : "rim", - "map" : "player[classCode=PSN|ANM and determinerCode=INSTANCE]/administrativeGender" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.contact.organization", - "path" : "Patient.contact.organization", - "short" : "Organization that is associated with the contact", - "definition" : "Organization on behalf of which the contact is acting or for which the contact is working.", - "requirements" : "For guardians or business related contacts, the organization is relevant.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.contact.organization", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Organization"] - }], - "condition" : ["pat-1"], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "NK1-13, NK1-30, NK1-31, NK1-32, NK1-41" - }, - { - "identity" : "rim", - "map" : "scoper" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.contact.period", - "path" : "Patient.contact.period", - "short" : "The period during which this contact person or organization is valid to be contacted relating to this patient", - "definition" : "The period during which this contact person or organization is valid to be contacted relating to this patient.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.contact.period", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Period" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "effectiveTime" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.communication", - "path" : "Patient.communication", - "short" : "A language which may be used to communicate with the patient about his or her health", - "definition" : "A language which may be used to communicate with the patient about his or her health.", - "comment" : "If no language is specified, this *implies* that the default local language is spoken. If you need to convey proficiency for multiple modes, then you need multiple Patient.Communication associations. For animals, language is not a relevant field, and should be absent from the instance. If the Patient does not speak the default local language, then the Interpreter Required Standard can be used to explicitly declare that an interpreter is required.", - "requirements" : "If a patient does not speak the local language, interpreters may be required, so languages spoken and proficiency are important things to keep track of both for patient and other persons of interest.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient.communication", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "BackboneElement" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "LanguageCommunication" - }, - { - "identity" : "cda", - "map" : "patient.languageCommunication" - }] - }, - { - "id" : "Patient.communication.id", - "path" : "Patient.communication.id", - "representation" : ["xmlAttr"], - "short" : "Unique id for inter-element referencing", - "definition" : "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Element.id", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", - "valueUrl" : "string" - }], - "code" : "http://hl7.org/fhirpath/System.String" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "Patient.communication.extension", - "path" : "Patient.communication.extension", - "short" : "Additional content defined by implementations", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "alias" : ["extensions", - "user content"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Element.extension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "Patient.communication.modifierExtension", - "path" : "Patient.communication.modifierExtension", - "short" : "Extensions that cannot be ignored even if unrecognized", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "requirements" : "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", - "alias" : ["extensions", - "user content", - "modifiers"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "BackboneElement.modifierExtension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : true, - "isModifierReason" : "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", - "isSummary" : true, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] - }, - { - "id" : "Patient.communication.language", - "path" : "Patient.communication.language", - "short" : "The language which can be used to communicate with the patient about his or her health", - "definition" : "The ISO-639-1 alpha 2 code in lower case for the language, optionally followed by a hyphen and the ISO-3166-1 alpha 2 code for the region in upper case; e.g. \"en\" for English, or \"en-US\" for American English versus \"en-EN\" for England English.", - "comment" : "The structure aa-BB with this exact casing is one the most widely used notations for locale. However not all systems actually code this but instead have it as free text. Hence CodeableConcept instead of code as the data type.", - "requirements" : "Most systems in multilingual countries will want to convey language. Not all systems actually need the regional dialect.", - "min" : 1, - "max" : "1", - "base" : { - "path" : "Patient.communication.language", - "min" : 1, - "max" : "1" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet", - "valueCanonical" : "http://hl7.org/fhir/ValueSet/all-languages" + "type": [ + { + "code": "Meta" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true + }, + { + "id": "Patient.implicitRules", + "path": "Patient.implicitRules", + "short": "A set of rules under which this content was created", + "definition": "A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.", + "comment": "Asserting this rule set restricts the content to be only understood by a limited set of trading partners. This inherently limits the usefulness of the data in the long term. However, the existing health eco-system is highly fractured, and not yet ready to define, collect, and exchange data in a generally computable sense. Wherever possible, implementers and/or specification writers should avoid using this element. Often, when used, the URL is a reference to an implementation guide that defines these special rules as part of it's narrative along with other profiles, value sets, etc.", + "min": 0, + "max": "1", + "base": { + "path": "Resource.implicitRules", + "min": 0, + "max": "1" }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "Language" + "type": [ + { + "code": "uri" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": true, + "isModifierReason": "This element is labeled as a modifier because the implicit rules may provide additional knowledge about the resource that modifies it's meaning or interpretation", + "isSummary": true + }, + { + "id": "Patient.language", + "path": "Patient.language", + "short": "Language of the resource content", + "definition": "The base language in which the resource is written.", + "comment": "Language is provided to support indexing and accessibility (typically, services such as text to speech use the language tag). The html language tag in the narrative applies to the narrative. The language tag on the resource may be used to specify the language of other presentations generated from the data in the resource. Not all the content has to be in the base language. The Resource.language should not be assumed to apply to the narrative automatically. If a language is specified, it should it also be specified on the div element in the html (see rules in HTML5 for information about the relationship between xml:lang and the html lang attribute).", + "min": 0, + "max": "1", + "base": { + "path": "Resource.language", + "min": 0, + "max": "1" }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", - "valueBoolean" : true - }], - "strength" : "preferred", - "description" : "A human language.", - "valueSet" : "http://hl7.org/fhir/ValueSet/languages" - }, - "mapping" : [{ - "identity" : "v2", - "map" : "PID-15, LAN-2" - }, - { - "identity" : "rim", - "map" : "player[classCode=PSN|ANM and determinerCode=INSTANCE]/languageCommunication/code" - }, - { - "identity" : "cda", - "map" : ".languageCode" - }] - }, - { - "id" : "Patient.communication.preferred", - "path" : "Patient.communication.preferred", - "short" : "Language preference indicator", - "definition" : "Indicates whether or not the patient prefers this language (over other languages he masters up a certain level).", - "comment" : "This language is specifically identified for communicating healthcare information.", - "requirements" : "People that master multiple languages up to certain level may prefer one or more, i.e. feel more confident in communicating in a particular language making other languages sort of a fall back method.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.communication.preferred", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "boolean" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "PID-15" - }, - { - "identity" : "rim", - "map" : "preferenceInd" - }, - { - "identity" : "cda", - "map" : ".preferenceInd" - }] - }, - { - "id" : "Patient.generalPractitioner", - "path" : "Patient.generalPractitioner", - "short" : "Patient's nominated primary care provider", - "definition" : "Patient's nominated care provider.", - "comment" : "This may be the primary care provider (in a GP context), or it may be a patient nominated care manager in a community/disability setting, or even organization that will provide people to perform the care provider roles. It is not to be used to record Care Teams, these should be in a CareTeam resource that may be linked to the CarePlan or EpisodeOfCare resources.\nMultiple GPs may be recorded against the patient for various reasons, such as a student that has his home GP listed along with the GP at university during the school semesters, or a \"fly-in/fly-out\" worker that has the onsite GP also included with his home GP to remain aware of medical issues.\n\nJurisdictions may decide that they can profile this down to 1 if desired, or 1 per type.", - "alias" : ["careProvider"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient.generalPractitioner", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Organization", - "http://hl7.org/fhir/StructureDefinition/Practitioner", - "http://hl7.org/fhir/StructureDefinition/PractitionerRole"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "PD1-4" - }, - { - "identity" : "rim", - "map" : "subjectOf.CareEvent.performer.AssignedEntity" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.managingOrganization", - "path" : "Patient.managingOrganization", - "short" : "Organization that is the custodian of the patient record", - "definition" : "Organization that is the custodian of the patient record.", - "comment" : "There is only one managing organization for a specific patient record. Other organizations will have their own Patient record, and may use the Link property to join the records together (or a Person resource which can include confidence ratings for the association).", - "requirements" : "Need to know who recognizes this patient record, manages and updates it.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Patient.managingOrganization", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Organization"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "rim", - "map" : "scoper" - }, - { - "identity" : "cda", - "map" : ".providerOrganization" - }] - }, - { - "id" : "Patient.link", - "path" : "Patient.link", - "short" : "Link to another patient resource that concerns the same actual person", - "definition" : "Link to another patient resource that concerns the same actual patient.", - "comment" : "There is no assumption that linked patient records have mutual links.", - "requirements" : "There are multiple use cases: \n\n* Duplicate patient records due to the clerical errors associated with the difficulties of identifying humans consistently, and \n* Distribution of patient information across multiple servers.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Patient.link", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "BackboneElement" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : true, - "isModifierReason" : "This element is labeled as a modifier because it might not be the main Patient resource, and the referenced patient should be used instead of this Patient record. This is when the link.type value is 'replaced-by'", - "isSummary" : true, - "mapping" : [{ - "identity" : "rim", - "map" : "outboundLink" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.link.id", - "path" : "Patient.link.id", - "representation" : ["xmlAttr"], - "short" : "Unique id for inter-element referencing", - "definition" : "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Element.id", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", - "valueUrl" : "string" - }], - "code" : "http://hl7.org/fhirpath/System.String" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "Patient.link.extension", - "path" : "Patient.link.extension", - "short" : "Additional content defined by implementations", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "alias" : ["extensions", - "user content"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Element.extension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "Patient.link.modifierExtension", - "path" : "Patient.link.modifierExtension", - "short" : "Extensions that cannot be ignored even if unrecognized", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "requirements" : "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", - "alias" : ["extensions", - "user content", - "modifiers"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "BackboneElement.modifierExtension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : true, - "isModifierReason" : "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", - "isSummary" : true, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] - }, - { - "id" : "Patient.link.other", - "path" : "Patient.link.other", - "short" : "The other patient or related person resource that the link refers to", - "definition" : "The other patient resource that the link refers to.", - "comment" : "Referencing a RelatedPerson here removes the need to use a Person record to associate a Patient and RelatedPerson as the same individual.", - "min" : 1, - "max" : "1", - "base" : { - "path" : "Patient.link.other", - "min" : 1, - "max" : "1" - }, - "type" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-hierarchy", - "valueBoolean" : false - }], - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Patient", - "http://hl7.org/fhir/StructureDefinition/RelatedPerson"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "v2", - "map" : "PID-3, MRG-1" - }, - { - "identity" : "rim", - "map" : "id" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }, - { - "id" : "Patient.link.type", - "path" : "Patient.link.type", - "short" : "replaced-by | replaces | refer | seealso", - "definition" : "The type of link between this patient resource and another patient resource.", - "min" : 1, - "max" : "1", - "base" : { - "path" : "Patient.link.type", - "min" : 1, - "max" : "1" - }, - "type" : [{ - "code" : "code" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "LinkType" - }], - "strength" : "required", - "description" : "The type of link between this patient resource and another patient resource.", - "valueSet" : "http://hl7.org/fhir/ValueSet/link-type|4.0.1" - }, - "mapping" : [{ - "identity" : "rim", - "map" : "typeCode" - }, - { - "identity" : "cda", - "map" : "n/a" - }] - }] + "type": [ + { + "code": "code" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet", + "valueCanonical": "http://hl7.org/fhir/ValueSet/all-languages" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "Language" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", + "valueBoolean": true + } + ], + "strength": "preferred", + "description": "A human language.", + "valueSet": "http://hl7.org/fhir/ValueSet/languages" + } + }, + { + "id": "Patient.text", + "path": "Patient.text", + "short": "Text summary of the resource, for human interpretation", + "definition": "A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it \"clinically safe\" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.", + "comment": "Contained resources do not have narrative. Resources that are not contained SHOULD have a narrative. In some cases, a resource may only have text with little or no additional discrete data (as long as all minOccurs=1 elements are satisfied). This may be necessary for data from legacy systems where information is captured as a \"text blob\" or where text is additionally entered raw or narrated and encoded information is added later.", + "alias": ["narrative", "html", "xhtml", "display"], + "min": 0, + "max": "1", + "base": { + "path": "DomainResource.text", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Narrative" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "Act.text?" + } + ] + }, + { + "id": "Patient.contained", + "path": "Patient.contained", + "short": "Contained, inline Resources", + "definition": "These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.", + "comment": "This should never be done when the content can be identified properly, as once identification is lost, it is extremely difficult (and context dependent) to restore it again. Contained resources may have profiles and tags In their meta elements, but SHALL NOT have security labels.", + "alias": ["inline resources", "anonymous resources", "contained resources"], + "min": 0, + "max": "*", + "base": { + "path": "DomainResource.contained", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Resource" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] + }, + { + "id": "Patient.extension", + "path": "Patient.extension", + "short": "Additional content defined by implementations", + "definition": "May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "alias": ["extensions", "user content"], + "min": 0, + "max": "*", + "base": { + "path": "DomainResource.extension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] + }, + { + "id": "Patient.modifierExtension", + "path": "Patient.modifierExtension", + "short": "Extensions that cannot be ignored", + "definition": "May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "requirements": "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", + "alias": ["extensions", "user content"], + "min": 0, + "max": "*", + "base": { + "path": "DomainResource.modifierExtension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": true, + "isModifierReason": "Modifier extensions are expected to modify the meaning or interpretation of the resource that contains them", + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] + }, + { + "id": "Patient.identifier", + "path": "Patient.identifier", + "short": "An identifier for this patient", + "definition": "An identifier for this patient.", + "requirements": "Patients are almost always assigned specific numerical identifiers.", + "min": 0, + "max": "*", + "base": { + "path": "Patient.identifier", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Identifier" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "w5", + "map": "FiveWs.identifier" + }, + { + "identity": "v2", + "map": "PID-3" + }, + { + "identity": "rim", + "map": "id" + }, + { + "identity": "cda", + "map": ".id" + } + ] + }, + { + "id": "Patient.active", + "path": "Patient.active", + "short": "Whether this patient's record is in active use", + "definition": "Whether this patient record is in active use. \nMany systems use this property to mark as non-current patients, such as those that have not been seen for a period of time based on an organization's business rules.\n\nIt is often used to filter patient lists to exclude inactive patients\n\nDeceased patients may also be marked as inactive for the same reasons, but may be active for some time after death.", + "comment": "If a record is inactive, and linked to an active record, then future patient/record updates should occur on the other patient.", + "requirements": "Need to be able to mark a patient record as not to be used because it was created in error.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.active", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "boolean" + } + ], + "meaningWhenMissing": "This resource is generally assumed to be active if no value is provided for the active element", + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": true, + "isModifierReason": "This element is labelled as a modifier because it is a status element that can indicate that a record should not be treated as valid", + "isSummary": true, + "mapping": [ + { + "identity": "w5", + "map": "FiveWs.status" + }, + { + "identity": "rim", + "map": "statusCode" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.name", + "path": "Patient.name", + "short": "A name associated with the patient", + "definition": "A name associated with the individual.", + "comment": "A patient may have multiple names with different uses or applicable periods. For animals, the name is a \"HumanName\" in the sense that is assigned and used by humans and has the same patterns.", + "requirements": "Need to be able to track the patient by multiple names. Examples are your official name and a partner name.", + "min": 0, + "max": "*", + "base": { + "path": "Patient.name", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "HumanName" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "v2", + "map": "PID-5, PID-9" + }, + { + "identity": "rim", + "map": "name" + }, + { + "identity": "cda", + "map": ".patient.name" + } + ] + }, + { + "id": "Patient.telecom", + "path": "Patient.telecom", + "short": "A contact detail for the individual", + "definition": "A contact detail (e.g. a telephone number or an email address) by which the individual may be contacted.", + "comment": "A Patient may have multiple ways to be contacted with different uses or applicable periods. May need to have options for contacting the person urgently and also to help with identification. The address might not go directly to the individual, but may reach another party that is able to proxy for the patient (i.e. home phone, or pet owner's phone).", + "requirements": "People have (primary) ways to contact them in some way such as phone, email.", + "min": 0, + "max": "*", + "base": { + "path": "Patient.telecom", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "ContactPoint" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "v2", + "map": "PID-13, PID-14, PID-40" + }, + { + "identity": "rim", + "map": "telecom" + }, + { + "identity": "cda", + "map": ".telecom" + } + ] + }, + { + "id": "Patient.gender", + "path": "Patient.gender", + "short": "male | female | other | unknown", + "definition": "Administrative Gender - the gender that the patient is considered to have for administration and record keeping purposes.", + "comment": "The gender might not match the biological sex as determined by genetics or the individual's preferred identification. Note that for both humans and particularly animals, there are other legitimate possibilities than male and female, though the vast majority of systems and contexts only support male and female. Systems providing decision support or enforcing business rules should ideally do this on the basis of Observations dealing with the specific sex or gender aspect of interest (anatomical, chromosomal, social, etc.) However, because these observations are infrequently recorded, defaulting to the administrative gender is common practice. Where such defaulting occurs, rule enforcement should allow for the variation between administrative and biological, chromosomal and other gender aspects. For example, an alert about a hysterectomy on a male should be handled as a warning or overridable error, not a \"hard\" error. See the Patient Gender and Sex section for additional information about communicating patient gender and sex.", + "requirements": "Needed for identification of the individual, in combination with (at least) name and birth date.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.gender", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "code" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "AdministrativeGender" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", + "valueBoolean": true + } + ], + "strength": "required", + "description": "The gender of a person used for administrative purposes.", + "valueSet": "http://hl7.org/fhir/ValueSet/administrative-gender|4.0.1" + }, + "mapping": [ + { + "identity": "v2", + "map": "PID-8" + }, + { + "identity": "rim", + "map": "player[classCode=PSN|ANM and determinerCode=INSTANCE]/administrativeGender" + }, + { + "identity": "cda", + "map": ".patient.administrativeGenderCode" + } + ] + }, + { + "id": "Patient.birthDate", + "path": "Patient.birthDate", + "short": "The date of birth for the individual", + "definition": "The date of birth for the individual.", + "comment": "At least an estimated year should be provided as a guess if the real DOB is unknown There is a standard extension \"patient-birthTime\" available that should be used where Time is required (such as in maternity/infant care systems).", + "requirements": "Age of the individual drives many clinical processes.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.birthDate", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "date" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "v2", + "map": "PID-7" + }, + { + "identity": "rim", + "map": "player[classCode=PSN|ANM and determinerCode=INSTANCE]/birthTime" + }, + { + "identity": "cda", + "map": ".patient.birthTime" + }, + { + "identity": "loinc", + "map": "21112-8" + } + ] + }, + { + "id": "Patient.deceased[x]", + "path": "Patient.deceased[x]", + "short": "Indicates if the individual is deceased or not", + "definition": "Indicates if the individual is deceased or not.", + "comment": "If there's no value in the instance, it means there is no statement on whether or not the individual is deceased. Most systems will interpret the absence of a value as a sign of the person being alive.", + "requirements": "The fact that a patient is deceased influences the clinical process. Also, in human communication and relation management it is necessary to know whether the person is alive.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.deceased[x]", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "boolean" + }, + { + "code": "dateTime" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": true, + "isModifierReason": "This element is labeled as a modifier because once a patient is marked as deceased, the actions that are appropriate to perform on the patient may be significantly different.", + "isSummary": true, + "mapping": [ + { + "identity": "v2", + "map": "PID-30 (bool) and PID-29 (datetime)" + }, + { + "identity": "rim", + "map": "player[classCode=PSN|ANM and determinerCode=INSTANCE]/deceasedInd, player[classCode=PSN|ANM and determinerCode=INSTANCE]/deceasedTime" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.address", + "path": "Patient.address", + "short": "An address for the individual", + "definition": "An address for the individual.", + "comment": "Patient may have multiple addresses with different uses or applicable periods.", + "requirements": "May need to keep track of patient addresses for contacting, billing or reporting requirements and also to help with identification.", + "min": 0, + "max": "*", + "base": { + "path": "Patient.address", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Address" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "v2", + "map": "PID-11" + }, + { + "identity": "rim", + "map": "addr" + }, + { + "identity": "cda", + "map": ".addr" + } + ] + }, + { + "id": "Patient.maritalStatus", + "path": "Patient.maritalStatus", + "short": "Marital (civil) status of a patient", + "definition": "This field contains a patient's most recent marital (civil) status.", + "requirements": "Most, if not all systems capture it.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.maritalStatus", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "MaritalStatus" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", + "valueBoolean": true + } + ], + "strength": "extensible", + "description": "The domestic partnership status of a person.", + "valueSet": "http://hl7.org/fhir/ValueSet/marital-status" + }, + "mapping": [ + { + "identity": "v2", + "map": "PID-16" + }, + { + "identity": "rim", + "map": "player[classCode=PSN]/maritalStatusCode" + }, + { + "identity": "cda", + "map": ".patient.maritalStatusCode" + } + ] + }, + { + "id": "Patient.multipleBirth[x]", + "path": "Patient.multipleBirth[x]", + "short": "Whether patient is part of a multiple birth", + "definition": "Indicates whether the patient is part of a multiple (boolean) or indicates the actual birth order (integer).", + "comment": "Where the valueInteger is provided, the number is the birth number in the sequence. E.g. The middle birth in triplets would be valueInteger=2 and the third born would have valueInteger=3 If a boolean value was provided for this triplets example, then all 3 patient records would have valueBoolean=true (the ordering is not indicated).", + "requirements": "For disambiguation of multiple-birth children, especially relevant where the care provider doesn't meet the patient, such as labs.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.multipleBirth[x]", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "boolean" + }, + { + "code": "integer" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "PID-24 (bool), PID-25 (integer)" + }, + { + "identity": "rim", + "map": "player[classCode=PSN|ANM and determinerCode=INSTANCE]/multipleBirthInd, player[classCode=PSN|ANM and determinerCode=INSTANCE]/multipleBirthOrderNumber" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.photo", + "path": "Patient.photo", + "short": "Image of the patient", + "definition": "Image of the patient.", + "comment": "Guidelines:\n* Use id photos, not clinical photos.\n* Limit dimensions to thumbnail.\n* Keep byte count low to ease resource updates.", + "requirements": "Many EHR systems have the capability to capture an image of the patient. Fits with newer social media usage too.", + "min": 0, + "max": "*", + "base": { + "path": "Patient.photo", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Attachment" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "OBX-5 - needs a profile" + }, + { + "identity": "rim", + "map": "player[classCode=PSN|ANM and determinerCode=INSTANCE]/desc" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.contact", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-explicit-type-name", + "valueString": "Contact" + } + ], + "path": "Patient.contact", + "short": "A contact party (e.g. guardian, partner, friend) for the patient", + "definition": "A contact party (e.g. guardian, partner, friend) for the patient.", + "comment": "Contact covers all kinds of contact parties: family members, business contacts, guardians, caregivers. Not applicable to register pedigree and family ties beyond use of having contact.", + "requirements": "Need to track people you can contact about the patient.", + "min": 0, + "max": "*", + "base": { + "path": "Patient.contact", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "BackboneElement" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "pat-1", + "severity": "error", + "human": "SHALL at least contain a contact's details or a reference to an organization", + "expression": "name.exists() or telecom.exists() or address.exists() or organization.exists()", + "xpath": "exists(f:name) or exists(f:telecom) or exists(f:address) or exists(f:organization)", + "source": "http://hl7.org/fhir/StructureDefinition/Patient" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "player[classCode=PSN|ANM and determinerCode=INSTANCE]/scopedRole[classCode=CON]" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.contact.id", + "path": "Patient.contact.id", + "representation": ["xmlAttr"], + "short": "Unique id for inter-element referencing", + "definition": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", + "min": 0, + "max": "1", + "base": { + "path": "Element.id", + "min": 0, + "max": "1" + }, + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", + "valueUrl": "string" + } + ], + "code": "http://hl7.org/fhirpath/System.String" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] + }, + { + "id": "Patient.contact.extension", + "path": "Patient.contact.extension", + "short": "Additional content defined by implementations", + "definition": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "alias": ["extensions", "user content"], + "min": 0, + "max": "*", + "base": { + "path": "Element.extension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] + }, + { + "id": "Patient.contact.modifierExtension", + "path": "Patient.contact.modifierExtension", + "short": "Extensions that cannot be ignored even if unrecognized", + "definition": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "requirements": "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", + "alias": ["extensions", "user content", "modifiers"], + "min": 0, + "max": "*", + "base": { + "path": "BackboneElement.modifierExtension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": true, + "isModifierReason": "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", + "isSummary": true, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] + }, + { + "id": "Patient.contact.relationship", + "path": "Patient.contact.relationship", + "short": "The kind of relationship", + "definition": "The nature of the relationship between the patient and the contact person.", + "requirements": "Used to determine which contact person is the most relevant to approach, depending on circumstances.", + "min": 0, + "max": "*", + "base": { + "path": "Patient.contact.relationship", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ContactRelationship" + } + ], + "strength": "extensible", + "description": "The nature of the relationship between a patient and a contact person for that patient.", + "valueSet": "http://hl7.org/fhir/ValueSet/patient-contactrelationship" + }, + "mapping": [ + { + "identity": "v2", + "map": "NK1-7, NK1-3" + }, + { + "identity": "rim", + "map": "code" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.contact.name", + "path": "Patient.contact.name", + "short": "A name associated with the contact person", + "definition": "A name associated with the contact person.", + "requirements": "Contact persons need to be identified by name, but it is uncommon to need details about multiple other names for that contact person.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.contact.name", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "HumanName" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "NK1-2" + }, + { + "identity": "rim", + "map": "name" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.contact.telecom", + "path": "Patient.contact.telecom", + "short": "A contact detail for the person", + "definition": "A contact detail for the person, e.g. a telephone number or an email address.", + "comment": "Contact may have multiple ways to be contacted with different uses or applicable periods. May need to have options for contacting the person urgently, and also to help with identification.", + "requirements": "People have (primary) ways to contact them in some way such as phone, email.", + "min": 0, + "max": "*", + "base": { + "path": "Patient.contact.telecom", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "ContactPoint" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "NK1-5, NK1-6, NK1-40" + }, + { + "identity": "rim", + "map": "telecom" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.contact.address", + "path": "Patient.contact.address", + "short": "Address for the contact person", + "definition": "Address for the contact person.", + "requirements": "Need to keep track where the contact person can be contacted per postal mail or visited.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.contact.address", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Address" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "NK1-4" + }, + { + "identity": "rim", + "map": "addr" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.contact.gender", + "path": "Patient.contact.gender", + "short": "male | female | other | unknown", + "definition": "Administrative Gender - the gender that the contact person is considered to have for administration and record keeping purposes.", + "requirements": "Needed to address the person correctly.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.contact.gender", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "code" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "AdministrativeGender" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", + "valueBoolean": true + } + ], + "strength": "required", + "description": "The gender of a person used for administrative purposes.", + "valueSet": "http://hl7.org/fhir/ValueSet/administrative-gender|4.0.1" + }, + "mapping": [ + { + "identity": "v2", + "map": "NK1-15" + }, + { + "identity": "rim", + "map": "player[classCode=PSN|ANM and determinerCode=INSTANCE]/administrativeGender" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.contact.organization", + "path": "Patient.contact.organization", + "short": "Organization that is associated with the contact", + "definition": "Organization on behalf of which the contact is acting or for which the contact is working.", + "requirements": "For guardians or business related contacts, the organization is relevant.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.contact.organization", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Reference", + "targetProfile": ["http://hl7.org/fhir/StructureDefinition/Organization"] + } + ], + "condition": ["pat-1"], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "NK1-13, NK1-30, NK1-31, NK1-32, NK1-41" + }, + { + "identity": "rim", + "map": "scoper" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.contact.period", + "path": "Patient.contact.period", + "short": "The period during which this contact person or organization is valid to be contacted relating to this patient", + "definition": "The period during which this contact person or organization is valid to be contacted relating to this patient.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.contact.period", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Period" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "effectiveTime" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.communication", + "path": "Patient.communication", + "short": "A language which may be used to communicate with the patient about his or her health", + "definition": "A language which may be used to communicate with the patient about his or her health.", + "comment": "If no language is specified, this *implies* that the default local language is spoken. If you need to convey proficiency for multiple modes, then you need multiple Patient.Communication associations. For animals, language is not a relevant field, and should be absent from the instance. If the Patient does not speak the default local language, then the Interpreter Required Standard can be used to explicitly declare that an interpreter is required.", + "requirements": "If a patient does not speak the local language, interpreters may be required, so languages spoken and proficiency are important things to keep track of both for patient and other persons of interest.", + "min": 0, + "max": "*", + "base": { + "path": "Patient.communication", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "BackboneElement" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "LanguageCommunication" + }, + { + "identity": "cda", + "map": "patient.languageCommunication" + } + ] + }, + { + "id": "Patient.communication.id", + "path": "Patient.communication.id", + "representation": ["xmlAttr"], + "short": "Unique id for inter-element referencing", + "definition": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", + "min": 0, + "max": "1", + "base": { + "path": "Element.id", + "min": 0, + "max": "1" + }, + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", + "valueUrl": "string" + } + ], + "code": "http://hl7.org/fhirpath/System.String" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] + }, + { + "id": "Patient.communication.extension", + "path": "Patient.communication.extension", + "short": "Additional content defined by implementations", + "definition": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "alias": ["extensions", "user content"], + "min": 0, + "max": "*", + "base": { + "path": "Element.extension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] + }, + { + "id": "Patient.communication.modifierExtension", + "path": "Patient.communication.modifierExtension", + "short": "Extensions that cannot be ignored even if unrecognized", + "definition": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "requirements": "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", + "alias": ["extensions", "user content", "modifiers"], + "min": 0, + "max": "*", + "base": { + "path": "BackboneElement.modifierExtension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": true, + "isModifierReason": "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", + "isSummary": true, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] + }, + { + "id": "Patient.communication.language", + "path": "Patient.communication.language", + "short": "The language which can be used to communicate with the patient about his or her health", + "definition": "The ISO-639-1 alpha 2 code in lower case for the language, optionally followed by a hyphen and the ISO-3166-1 alpha 2 code for the region in upper case; e.g. \"en\" for English, or \"en-US\" for American English versus \"en-EN\" for England English.", + "comment": "The structure aa-BB with this exact casing is one the most widely used notations for locale. However not all systems actually code this but instead have it as free text. Hence CodeableConcept instead of code as the data type.", + "requirements": "Most systems in multilingual countries will want to convey language. Not all systems actually need the regional dialect.", + "min": 1, + "max": "1", + "base": { + "path": "Patient.communication.language", + "min": 1, + "max": "1" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet", + "valueCanonical": "http://hl7.org/fhir/ValueSet/all-languages" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "Language" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding", + "valueBoolean": true + } + ], + "strength": "preferred", + "description": "A human language.", + "valueSet": "http://hl7.org/fhir/ValueSet/languages" + }, + "mapping": [ + { + "identity": "v2", + "map": "PID-15, LAN-2" + }, + { + "identity": "rim", + "map": "player[classCode=PSN|ANM and determinerCode=INSTANCE]/languageCommunication/code" + }, + { + "identity": "cda", + "map": ".languageCode" + } + ] + }, + { + "id": "Patient.communication.preferred", + "path": "Patient.communication.preferred", + "short": "Language preference indicator", + "definition": "Indicates whether or not the patient prefers this language (over other languages he masters up a certain level).", + "comment": "This language is specifically identified for communicating healthcare information.", + "requirements": "People that master multiple languages up to certain level may prefer one or more, i.e. feel more confident in communicating in a particular language making other languages sort of a fall back method.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.communication.preferred", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "boolean" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "PID-15" + }, + { + "identity": "rim", + "map": "preferenceInd" + }, + { + "identity": "cda", + "map": ".preferenceInd" + } + ] + }, + { + "id": "Patient.generalPractitioner", + "path": "Patient.generalPractitioner", + "short": "Patient's nominated primary care provider", + "definition": "Patient's nominated care provider.", + "comment": "This may be the primary care provider (in a GP context), or it may be a patient nominated care manager in a community/disability setting, or even organization that will provide people to perform the care provider roles. It is not to be used to record Care Teams, these should be in a CareTeam resource that may be linked to the CarePlan or EpisodeOfCare resources.\nMultiple GPs may be recorded against the patient for various reasons, such as a student that has his home GP listed along with the GP at university during the school semesters, or a \"fly-in/fly-out\" worker that has the onsite GP also included with his home GP to remain aware of medical issues.\n\nJurisdictions may decide that they can profile this down to 1 if desired, or 1 per type.", + "alias": ["careProvider"], + "min": 0, + "max": "*", + "base": { + "path": "Patient.generalPractitioner", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Reference", + "targetProfile": [ + "http://hl7.org/fhir/StructureDefinition/Organization", + "http://hl7.org/fhir/StructureDefinition/Practitioner", + "http://hl7.org/fhir/StructureDefinition/PractitionerRole" + ] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "PD1-4" + }, + { + "identity": "rim", + "map": "subjectOf.CareEvent.performer.AssignedEntity" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.managingOrganization", + "path": "Patient.managingOrganization", + "short": "Organization that is the custodian of the patient record", + "definition": "Organization that is the custodian of the patient record.", + "comment": "There is only one managing organization for a specific patient record. Other organizations will have their own Patient record, and may use the Link property to join the records together (or a Person resource which can include confidence ratings for the association).", + "requirements": "Need to know who recognizes this patient record, manages and updates it.", + "min": 0, + "max": "1", + "base": { + "path": "Patient.managingOrganization", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Reference", + "targetProfile": ["http://hl7.org/fhir/StructureDefinition/Organization"] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "rim", + "map": "scoper" + }, + { + "identity": "cda", + "map": ".providerOrganization" + } + ] + }, + { + "id": "Patient.link", + "path": "Patient.link", + "short": "Link to another patient resource that concerns the same actual person", + "definition": "Link to another patient resource that concerns the same actual patient.", + "comment": "There is no assumption that linked patient records have mutual links.", + "requirements": "There are multiple use cases: \n\n* Duplicate patient records due to the clerical errors associated with the difficulties of identifying humans consistently, and \n* Distribution of patient information across multiple servers.", + "min": 0, + "max": "*", + "base": { + "path": "Patient.link", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "BackboneElement" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": true, + "isModifierReason": "This element is labeled as a modifier because it might not be the main Patient resource, and the referenced patient should be used instead of this Patient record. This is when the link.type value is 'replaced-by'", + "isSummary": true, + "mapping": [ + { + "identity": "rim", + "map": "outboundLink" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.link.id", + "path": "Patient.link.id", + "representation": ["xmlAttr"], + "short": "Unique id for inter-element referencing", + "definition": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", + "min": 0, + "max": "1", + "base": { + "path": "Element.id", + "min": 0, + "max": "1" + }, + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", + "valueUrl": "string" + } + ], + "code": "http://hl7.org/fhirpath/System.String" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] + }, + { + "id": "Patient.link.extension", + "path": "Patient.link.extension", + "short": "Additional content defined by implementations", + "definition": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "alias": ["extensions", "user content"], + "min": 0, + "max": "*", + "base": { + "path": "Element.extension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] + }, + { + "id": "Patient.link.modifierExtension", + "path": "Patient.link.modifierExtension", + "short": "Extensions that cannot be ignored even if unrecognized", + "definition": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "requirements": "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", + "alias": ["extensions", "user content", "modifiers"], + "min": 0, + "max": "*", + "base": { + "path": "BackboneElement.modifierExtension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": true, + "isModifierReason": "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", + "isSummary": true, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] + }, + { + "id": "Patient.link.other", + "path": "Patient.link.other", + "short": "The other patient or related person resource that the link refers to", + "definition": "The other patient resource that the link refers to.", + "comment": "Referencing a RelatedPerson here removes the need to use a Person record to associate a Patient and RelatedPerson as the same individual.", + "min": 1, + "max": "1", + "base": { + "path": "Patient.link.other", + "min": 1, + "max": "1" + }, + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-hierarchy", + "valueBoolean": false + } + ], + "code": "Reference", + "targetProfile": [ + "http://hl7.org/fhir/StructureDefinition/Patient", + "http://hl7.org/fhir/StructureDefinition/RelatedPerson" + ] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "v2", + "map": "PID-3, MRG-1" + }, + { + "identity": "rim", + "map": "id" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + }, + { + "id": "Patient.link.type", + "path": "Patient.link.type", + "short": "replaced-by | replaces | refer | seealso", + "definition": "The type of link between this patient resource and another patient resource.", + "min": 1, + "max": "1", + "base": { + "path": "Patient.link.type", + "min": 1, + "max": "1" + }, + "type": [ + { + "code": "code" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "LinkType" + } + ], + "strength": "required", + "description": "The type of link between this patient resource and another patient resource.", + "valueSet": "http://hl7.org/fhir/ValueSet/link-type|4.0.1" + }, + "mapping": [ + { + "identity": "rim", + "map": "typeCode" + }, + { + "identity": "cda", + "map": "n/a" + } + ] + } + ] }, - "differential" : { - "element" : [{ - "id" : "Patient", - "path" : "Patient" - }] + "differential": { + "element": [ + { + "id": "Patient", + "path": "Patient" + } + ] } -} \ No newline at end of file +} diff --git a/test/loader/fixtures/StructureDefinition-valued-observation.json b/test/loader/fixtures/StructureDefinition-valued-observation.json index 6c171aa..fddbd99 100644 --- a/test/loader/fixtures/StructureDefinition-valued-observation.json +++ b/test/loader/fixtures/StructureDefinition-valued-observation.json @@ -1,2302 +1,2622 @@ { - "resourceType" : "StructureDefinition", - "id" : "valued-observation", - "text" : { - "status" : "extensions", - "div" : "" - }, - "url" : "http://example.org/fhir/locals/StructureDefinition/valued-observation", - "version" : "1.0.0", - "name" : "ValuedObservationProfile", - "title" : "Valued Observation Profile", - "status" : "draft", - "date" : "2024-05-24T16:27:17-04:00", - "publisher" : "Example Publisher", - "contact" : [{ - "name" : "Example Publisher", - "telecom" : [{ - "system" : "url", - "value" : "http://example.org/example-publisher" - }] - }], - "description" : "An Observation with a value", - "fhirVersion" : "4.0.1", - "mapping" : [{ - "identity" : "workflow", - "uri" : "http://hl7.org/fhir/workflow", - "name" : "Workflow Pattern" - }, - { - "identity" : "sct-concept", - "uri" : "http://snomed.info/conceptdomain", - "name" : "SNOMED CT Concept Domain Binding" - }, - { - "identity" : "v2", - "uri" : "http://hl7.org/v2", - "name" : "HL7 v2 Mapping" - }, - { - "identity" : "rim", - "uri" : "http://hl7.org/v3", - "name" : "RIM Mapping" - }, - { - "identity" : "w5", - "uri" : "http://hl7.org/fhir/fivews", - "name" : "FiveWs Pattern Mapping" - }, - { - "identity" : "sct-attr", - "uri" : "http://snomed.org/attributebinding", - "name" : "SNOMED CT Attribute Binding" - }], - "kind" : "resource", - "abstract" : false, - "type" : "Observation", - "baseDefinition" : "http://hl7.org/fhir/StructureDefinition/Observation", - "derivation" : "constraint", - "snapshot" : { - "element" : [{ - "id" : "Observation", - "path" : "Observation", - "short" : "Measurements and simple assertions", - "definition" : "Measurements and simple assertions made about a patient, device or other subject.", - "comment" : "Used for simple observations such as device measurements, laboratory atomic results, vital signs, height, weight, smoking status, comments, etc. Other resources are used to provide context for observations such as laboratory reports, etc.", - "alias" : ["Vital Signs", - "Measurement", - "Results", - "Tests"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation", - "min" : 0, - "max" : "*" - }, - "constraint" : [{ - "key" : "dom-2", - "severity" : "error", - "human" : "If the resource is contained in another resource, it SHALL NOT contain nested Resources", - "expression" : "contained.contained.empty()", - "xpath" : "not(parent::f:contained and f:contained)", - "source" : "http://hl7.org/fhir/StructureDefinition/DomainResource" - }, - { - "key" : "dom-3", - "severity" : "error", - "human" : "If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource", - "expression" : "contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().as(canonical) | %resource.descendants().as(uri) | %resource.descendants().as(url))) or descendants().where(reference = '#').exists() or descendants().where(as(canonical) = '#').exists() or descendants().where(as(canonical) = '#').exists()).not()).trace('unmatched', id).empty()", - "xpath" : "not(exists(for $id in f:contained/*/f:id/@value return $contained[not(parent::*/descendant::f:reference/@value=concat('#', $contained/*/id/@value) or descendant::f:reference[@value='#'])]))", - "source" : "http://hl7.org/fhir/StructureDefinition/DomainResource" - }, - { - "key" : "dom-4", - "severity" : "error", - "human" : "If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated", - "expression" : "contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()", - "xpath" : "not(exists(f:contained/*/f:meta/f:versionId)) and not(exists(f:contained/*/f:meta/f:lastUpdated))", - "source" : "http://hl7.org/fhir/StructureDefinition/DomainResource" - }, - { - "key" : "dom-5", - "severity" : "error", - "human" : "If a resource is contained in another resource, it SHALL NOT have a security label", - "expression" : "contained.meta.security.empty()", - "xpath" : "not(exists(f:contained/*/f:meta/f:security))", - "source" : "http://hl7.org/fhir/StructureDefinition/DomainResource" - }, - { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice", - "valueBoolean" : true - }, - { - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice-explanation", - "valueMarkdown" : "When a resource has no narrative, only systems that fully understand the data can display the resource to a human safely. Including a human readable representation in the resource makes for a much more robust eco-system and cheaper handling of resources by intermediary systems. Some ecosystems restrict distribution of resources to only those systems that do fully understand the resources, and as a consequence implementers may believe that the narrative is superfluous. However experience shows that such eco-systems often open up to new participants over time." - }], - "key" : "dom-6", - "severity" : "warning", - "human" : "A resource should have narrative for robust management", - "expression" : "text.`div`.exists()", - "xpath" : "exists(f:text/h:div)", - "source" : "http://hl7.org/fhir/StructureDefinition/DomainResource" - }, - { - "key" : "obs-6", - "severity" : "error", - "human" : "dataAbsentReason SHALL only be present if Observation.value[x] is not present", - "expression" : "dataAbsentReason.empty() or value.empty()", - "xpath" : "not(exists(f:dataAbsentReason)) or (not(exists(*[starts-with(local-name(.), 'value')])))", - "source" : "http://hl7.org/fhir/StructureDefinition/Observation" - }, - { - "key" : "obs-7", - "severity" : "error", - "human" : "If Observation.code is the same as an Observation.component.code then the value element associated with the code SHALL NOT be present", - "expression" : "value.empty() or component.code.where(coding.intersect(%resource.code.coding).exists()).empty()", - "xpath" : "not(f:*[starts-with(local-name(.), 'value')] and (for $coding in f:code/f:coding return f:component/f:code/f:coding[f:code/@value=$coding/f:code/@value] [f:system/@value=$coding/f:system/@value]))", - "source" : "http://hl7.org/fhir/StructureDefinition/Observation" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "Entity. Role, or Act" - }, - { - "identity" : "workflow", - "map" : "Event" - }, - { - "identity" : "sct-concept", - "map" : "< 363787002 |Observable entity|" - }, - { - "identity" : "v2", - "map" : "OBX" - }, - { - "identity" : "rim", - "map" : "Observation[classCode=OBS, moodCode=EVN]" - }] - }, - { - "id" : "Observation.id", - "path" : "Observation.id", - "short" : "Logical id of this artifact", - "definition" : "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.", - "comment" : "The only time that a resource does not have an id is when it is being submitted to the server using a create operation.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Resource.id", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", - "valueUrl" : "id" - }], - "code" : "http://hl7.org/fhirpath/System.String" - }], - "isModifier" : false, - "isSummary" : true - }, - { - "id" : "Observation.meta", - "path" : "Observation.meta", - "short" : "Metadata about the resource", - "definition" : "The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Resource.meta", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Meta" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true - }, + "resourceType": "StructureDefinition", + "id": "valued-observation", + "url": "http://example.org/fhir/locals/StructureDefinition/valued-observation", + "version": "1.0.0", + "name": "ValuedObservationProfile", + "title": "Valued Observation Profile", + "status": "draft", + "date": "2024-05-24T16:27:17-04:00", + "publisher": "Example Publisher", + "contact": [ { - "id" : "Observation.implicitRules", - "path" : "Observation.implicitRules", - "short" : "A set of rules under which this content was created", - "definition" : "A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.", - "comment" : "Asserting this rule set restricts the content to be only understood by a limited set of trading partners. This inherently limits the usefulness of the data in the long term. However, the existing health eco-system is highly fractured, and not yet ready to define, collect, and exchange data in a generally computable sense. Wherever possible, implementers and/or specification writers should avoid using this element. Often, when used, the URL is a reference to an implementation guide that defines these special rules as part of it's narrative along with other profiles, value sets, etc.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Resource.implicitRules", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "uri" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : true, - "isModifierReason" : "This element is labeled as a modifier because the implicit rules may provide additional knowledge about the resource that modifies it's meaning or interpretation", - "isSummary" : true - }, - { - "id" : "Observation.language", - "path" : "Observation.language", - "short" : "Language of the resource content", - "definition" : "The base language in which the resource is written.", - "comment" : "Language is provided to support indexing and accessibility (typically, services such as text to speech use the language tag). The html language tag in the narrative applies to the narrative. The language tag on the resource may be used to specify the language of other presentations generated from the data in the resource. Not all the content has to be in the base language. The Resource.language should not be assumed to apply to the narrative automatically. If a language is specified, it should it also be specified on the div element in the html (see rules in HTML5 for information about the relationship between xml:lang and the html lang attribute).", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Resource.language", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "code" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet", - "valueCanonical" : "http://hl7.org/fhir/ValueSet/all-languages" - }, + "name": "Example Publisher", + "telecom": [ { - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "Language" - }], - "strength" : "preferred", - "description" : "A human language.", - "valueSet" : "http://hl7.org/fhir/ValueSet/languages" - } - }, - { - "id" : "Observation.text", - "path" : "Observation.text", - "short" : "Text summary of the resource, for human interpretation", - "definition" : "A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it \"clinically safe\" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.", - "comment" : "Contained resources do not have narrative. Resources that are not contained SHOULD have a narrative. In some cases, a resource may only have text with little or no additional discrete data (as long as all minOccurs=1 elements are satisfied). This may be necessary for data from legacy systems where information is captured as a \"text blob\" or where text is additionally entered raw or narrated and encoded information is added later.", - "alias" : ["narrative", - "html", - "xhtml", - "display"], - "min" : 0, - "max" : "1", - "base" : { - "path" : "DomainResource.text", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Narrative" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "Act.text?" - }] - }, - { - "id" : "Observation.contained", - "path" : "Observation.contained", - "short" : "Contained, inline Resources", - "definition" : "These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.", - "comment" : "This should never be done when the content can be identified properly, as once identification is lost, it is extremely difficult (and context dependent) to restore it again. Contained resources may have profiles and tags In their meta elements, but SHALL NOT have security labels.", - "alias" : ["inline resources", - "anonymous resources", - "contained resources"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "DomainResource.contained", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Resource" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] - }, - { - "id" : "Observation.extension", - "path" : "Observation.extension", - "short" : "Additional content defined by implementations", - "definition" : "May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "alias" : ["extensions", - "user content"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "DomainResource.extension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] - }, - { - "id" : "Observation.modifierExtension", - "path" : "Observation.modifierExtension", - "short" : "Extensions that cannot be ignored", - "definition" : "May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "requirements" : "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", - "alias" : ["extensions", - "user content"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "DomainResource.modifierExtension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : true, - "isModifierReason" : "Modifier extensions are expected to modify the meaning or interpretation of the resource that contains them", - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] - }, + "system": "url", + "value": "http://example.org/example-publisher" + } + ] + } + ], + "description": "An Observation with a value", + "fhirVersion": "4.0.1", + "mapping": [ { - "id" : "Observation.identifier", - "path" : "Observation.identifier", - "short" : "Business Identifier for observation", - "definition" : "A unique identifier assigned to this observation.", - "requirements" : "Allows observations to be distinguished and referenced.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.identifier", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Identifier" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "workflow", - "map" : "Event.identifier" - }, - { - "identity" : "w5", - "map" : "FiveWs.identifier" - }, - { - "identity" : "v2", - "map" : "OBX.21 For OBX segments from systems without OBX-21 support a combination of ORC/OBR and OBX must be negotiated between trading partners to uniquely identify the OBX segment. Depending on how V2 has been implemented each of these may be an option: 1) OBR-3 + OBX-3 + OBX-4 or 2) OBR-3 + OBR-4 + OBX-3 + OBX-4 or 2) some other way to uniquely ID the OBR/ORC + OBX-3 + OBX-4." - }, - { - "identity" : "rim", - "map" : "id" - }] + "identity": "workflow", + "uri": "http://hl7.org/fhir/workflow", + "name": "Workflow Pattern" }, { - "id" : "Observation.basedOn", - "path" : "Observation.basedOn", - "short" : "Fulfills plan, proposal or order", - "definition" : "A plan, proposal or order that is fulfilled in whole or in part by this event. For example, a MedicationRequest may require a patient to have laboratory test performed before it is dispensed.", - "requirements" : "Allows tracing of authorization for the event and tracking whether proposals/recommendations were acted upon.", - "alias" : ["Fulfills"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.basedOn", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/CarePlan", - "http://hl7.org/fhir/StructureDefinition/DeviceRequest", - "http://hl7.org/fhir/StructureDefinition/ImmunizationRecommendation", - "http://hl7.org/fhir/StructureDefinition/MedicationRequest", - "http://hl7.org/fhir/StructureDefinition/NutritionOrder", - "http://hl7.org/fhir/StructureDefinition/ServiceRequest"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "workflow", - "map" : "Event.basedOn" - }, - { - "identity" : "v2", - "map" : "ORC" - }, - { - "identity" : "rim", - "map" : ".inboundRelationship[typeCode=COMP].source[moodCode=EVN]" - }] + "identity": "sct-concept", + "uri": "http://snomed.info/conceptdomain", + "name": "SNOMED CT Concept Domain Binding" }, { - "id" : "Observation.partOf", - "path" : "Observation.partOf", - "short" : "Part of referenced event", - "definition" : "A larger event of which this particular Observation is a component or step. For example, an observation as part of a procedure.", - "comment" : "To link an Observation to an Encounter use `encounter`. See the [Notes](http://hl7.org/fhir/R4/observation.html#obsgrouping) below for guidance on referencing another Observation.", - "alias" : ["Container"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.partOf", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/MedicationAdministration", - "http://hl7.org/fhir/StructureDefinition/MedicationDispense", - "http://hl7.org/fhir/StructureDefinition/MedicationStatement", - "http://hl7.org/fhir/StructureDefinition/Procedure", - "http://hl7.org/fhir/StructureDefinition/Immunization", - "http://hl7.org/fhir/StructureDefinition/ImagingStudy"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "workflow", - "map" : "Event.partOf" - }, - { - "identity" : "v2", - "map" : "Varies by domain" - }, - { - "identity" : "rim", - "map" : ".outboundRelationship[typeCode=FLFS].target" - }] + "identity": "v2", + "uri": "http://hl7.org/v2", + "name": "HL7 v2 Mapping" }, { - "id" : "Observation.status", - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-display-hint", - "valueString" : "default: final" - }], - "path" : "Observation.status", - "short" : "registered | preliminary | final | amended +", - "definition" : "The status of the result value.", - "comment" : "This element is labeled as a modifier because the status contains codes that mark the resource as not currently valid.", - "requirements" : "Need to track the status of individual results. Some results are finalized before the whole report is finalized.", - "min" : 1, - "max" : "1", - "base" : { - "path" : "Observation.status", - "min" : 1, - "max" : "1" - }, - "type" : [{ - "code" : "code" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : true, - "isModifierReason" : "This element is labeled as a modifier because it is a status element that contains status entered-in-error which means that the resource should not be treated as valid", - "isSummary" : true, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ObservationStatus" - }], - "strength" : "required", - "description" : "Codes providing the status of an observation.", - "valueSet" : "http://hl7.org/fhir/ValueSet/observation-status|4.0.1" - }, - "mapping" : [{ - "identity" : "workflow", - "map" : "Event.status" - }, - { - "identity" : "w5", - "map" : "FiveWs.status" - }, - { - "identity" : "sct-concept", - "map" : "< 445584004 |Report by finality status|" - }, - { - "identity" : "v2", - "map" : "OBX-11" - }, - { - "identity" : "rim", - "map" : "status Amended & Final are differentiated by whether it is the subject of a ControlAct event with a type of \"revise\"" - }] + "identity": "rim", + "uri": "http://hl7.org/v3", + "name": "RIM Mapping" }, { - "id" : "Observation.category", - "path" : "Observation.category", - "short" : "Classification of type of observation", - "definition" : "A code that classifies the general type of observation being made.", - "comment" : "In addition to the required category valueset, this element allows various categorization schemes based on the owner’s definition of the category and effectively multiple categories can be used at once. The level of granularity is defined by the category concepts in the value set.", - "requirements" : "Used for filtering what observations are retrieved and displayed.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.category", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ObservationCategory" - }], - "strength" : "preferred", - "description" : "Codes for high level observation categories.", - "valueSet" : "http://hl7.org/fhir/ValueSet/observation-category" - }, - "mapping" : [{ - "identity" : "w5", - "map" : "FiveWs.class" - }, - { - "identity" : "rim", - "map" : ".outboundRelationship[typeCode=\"COMP].target[classCode=\"LIST\", moodCode=\"EVN\"].code" - }] - }, - { - "id" : "Observation.code", - "path" : "Observation.code", - "short" : "Type of observation (code / type)", - "definition" : "Describes what was observed. Sometimes this is called the observation \"name\".", - "comment" : "*All* code-value and, if present, component.code-component.value pairs need to be taken into account to correctly understand the meaning of the observation.", - "requirements" : "Knowing what kind of observation is being made is essential to understanding the observation.", - "alias" : ["Name"], - "min" : 1, - "max" : "1", - "base" : { - "path" : "Observation.code", - "min" : 1, - "max" : "1" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ObservationCode" - }], - "strength" : "example", - "description" : "Codes identifying names of simple observations.", - "valueSet" : "http://hl7.org/fhir/ValueSet/observation-codes" - }, - "mapping" : [{ - "identity" : "workflow", - "map" : "Event.code" - }, - { - "identity" : "w5", - "map" : "FiveWs.what[x]" - }, - { - "identity" : "sct-concept", - "map" : "< 363787002 |Observable entity| OR < 386053000 |Evaluation procedure|" - }, - { - "identity" : "v2", - "map" : "OBX-3" - }, - { - "identity" : "rim", - "map" : "code" - }, - { - "identity" : "sct-attr", - "map" : "116680003 |Is a|" - }] + "identity": "w5", + "uri": "http://hl7.org/fhir/fivews", + "name": "FiveWs Pattern Mapping" }, { - "id" : "Observation.subject", - "path" : "Observation.subject", - "short" : "Who and/or what the observation is about", - "definition" : "The patient, or group of patients, location, or device this observation is about and into whose record the observation is placed. If the actual focus of the observation is different from the subject (or a sample of, part, or region of the subject), the `focus` element or the `code` itself specifies the actual focus of the observation.", - "comment" : "One would expect this element to be a cardinality of 1..1. The only circumstance in which the subject can be missing is when the observation is made by a device that does not know the patient. In this case, the observation SHALL be matched to a patient through some context/channel matching technique, and at this point, the observation should be updated.", - "requirements" : "Observations have no value if you don't know who or what they're about.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.subject", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Patient", - "http://hl7.org/fhir/StructureDefinition/Group", - "http://hl7.org/fhir/StructureDefinition/Device", - "http://hl7.org/fhir/StructureDefinition/Location"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "workflow", - "map" : "Event.subject" - }, - { - "identity" : "w5", - "map" : "FiveWs.subject[x]" - }, - { - "identity" : "v2", - "map" : "PID-3" - }, - { - "identity" : "rim", - "map" : "participation[typeCode=RTGT]" - }, - { - "identity" : "w5", - "map" : "FiveWs.subject" - }] - }, - { - "id" : "Observation.focus", - "path" : "Observation.focus", - "short" : "What the observation is about, when it is not about the subject of record", - "definition" : "The actual focus of an observation when it is not the patient of record representing something or someone associated with the patient such as a spouse, parent, fetus, or donor. For example, fetus observations in a mother's record. The focus of an observation could also be an existing condition, an intervention, the subject's diet, another observation of the subject, or a body structure such as tumor or implanted device. An example use case would be using the Observation resource to capture whether the mother is trained to change her child's tracheostomy tube. In this example, the child is the patient of record and the mother is the focus.", - "comment" : "Typically, an observation is made about the subject - a patient, or group of patients, location, or device - and the distinction between the subject and what is directly measured for an observation is specified in the observation code itself ( e.g., \"Blood Glucose\") and does not need to be represented separately using this element. Use `specimen` if a reference to a specimen is required. If a code is required instead of a resource use either `bodysite` for bodysites or the standard extension [focusCode](http://hl7.org/fhir/R4/extension-observation-focuscode.html).", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.focus", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Resource"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "w5", - "map" : "FiveWs.subject[x]" - }, - { - "identity" : "v2", - "map" : "OBX-3" - }, - { - "identity" : "rim", - "map" : "participation[typeCode=SBJ]" - }, - { - "identity" : "w5", - "map" : "FiveWs.subject" - }] - }, - { - "id" : "Observation.encounter", - "path" : "Observation.encounter", - "short" : "Healthcare event during which this observation is made", - "definition" : "The healthcare event (e.g. a patient and healthcare provider interaction) during which this observation is made.", - "comment" : "This will typically be the encounter the event occurred within, but some events may be initiated prior to or after the official completion of an encounter but still be tied to the context of the encounter (e.g. pre-admission laboratory tests).", - "requirements" : "For some observations it may be important to know the link between an observation and a particular encounter.", - "alias" : ["Context"], - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.encounter", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Encounter"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "workflow", - "map" : "Event.context" - }, - { - "identity" : "w5", - "map" : "FiveWs.context" - }, - { - "identity" : "v2", - "map" : "PV1" - }, - { - "identity" : "rim", - "map" : "inboundRelationship[typeCode=COMP].source[classCode=ENC, moodCode=EVN]" - }] - }, - { - "id" : "Observation.effective[x]", - "path" : "Observation.effective[x]", - "short" : "Clinically relevant time/time-period for observation", - "definition" : "The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the \"physiologically relevant time\". This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.", - "comment" : "At least a date should be present unless this observation is a historical report. For recording imprecise or \"fuzzy\" times (For example, a blood glucose measurement taken \"after breakfast\") use the [Timing](http://hl7.org/fhir/R4/datatypes.html#timing) datatype which allow the measurement to be tied to regular life events.", - "requirements" : "Knowing when an observation was deemed true is important to its relevance as well as determining trends.", - "alias" : ["Occurrence"], - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.effective[x]", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "dateTime" - }, - { - "code" : "Period" - }, - { - "code" : "Timing" - }, - { - "code" : "instant" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "workflow", - "map" : "Event.occurrence[x]" - }, - { - "identity" : "w5", - "map" : "FiveWs.done[x]" - }, - { - "identity" : "v2", - "map" : "OBX-14, and/or OBX-19 after v2.4 (depends on who observation made)" - }, - { - "identity" : "rim", - "map" : "effectiveTime" - }] - }, - { - "id" : "Observation.issued", - "path" : "Observation.issued", - "short" : "Date/Time this version was made available", - "definition" : "The date and time this version of the observation was made available to providers, typically after the results have been reviewed and verified.", - "comment" : "For Observations that don’t require review and verification, it may be the same as the [`lastUpdated` ](http://hl7.org/fhir/R4/resource-definitions.html#Meta.lastUpdated) time of the resource itself. For Observations that do require review and verification for certain updates, it might not be the same as the `lastUpdated` time of the resource itself due to a non-clinically significant update that doesn’t require the new version to be reviewed and verified again.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.issued", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "instant" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "w5", - "map" : "FiveWs.recorded" - }, - { - "identity" : "v2", - "map" : "OBR.22 (or MSH.7), or perhaps OBX-19 (depends on who observation made)" - }, - { - "identity" : "rim", - "map" : "participation[typeCode=AUT].time" - }] - }, - { - "id" : "Observation.performer", - "path" : "Observation.performer", - "short" : "Who is responsible for the observation", - "definition" : "Who was responsible for asserting the observed value as \"true\".", - "requirements" : "May give a degree of confidence in the observation and also indicates where follow-up questions should be directed.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.performer", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Practitioner", - "http://hl7.org/fhir/StructureDefinition/PractitionerRole", - "http://hl7.org/fhir/StructureDefinition/Organization", - "http://hl7.org/fhir/StructureDefinition/CareTeam", - "http://hl7.org/fhir/StructureDefinition/Patient", - "http://hl7.org/fhir/StructureDefinition/RelatedPerson"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "workflow", - "map" : "Event.performer.actor" - }, - { - "identity" : "w5", - "map" : "FiveWs.actor" - }, - { - "identity" : "v2", - "map" : "OBX.15 / (Practitioner) OBX-16, PRT-5:PRT-4='RO' / (Device) OBX-18 , PRT-10:PRT-4='EQUIP' / (Organization) OBX-23, PRT-8:PRT-4='PO'" - }, - { - "identity" : "rim", - "map" : "participation[typeCode=PRF]" - }] - }, - { - "id" : "Observation.value[x]", - "path" : "Observation.value[x]", - "short" : "Actual result", - "definition" : "The information determined as a result of making the observation, if the information has a simple value.", - "comment" : "An observation may have; 1) a single value here, 2) both a value and a set of related or component values, or 3) only a set of related or component values. If a value is present, the datatype for this element should be determined by Observation.code. A CodeableConcept with just a text would be used instead of a string if the field was usually coded, or if the type associated with the Observation.code defines a coded value. For additional guidance, see the [Notes section](http://hl7.org/fhir/R4/observation.html#notes) below.", - "requirements" : "An observation exists to have a value, though it might not if it is in error, or if it represents a group of observations.", - "min" : 1, - "max" : "1", - "base" : { - "path" : "Observation.value[x]", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Quantity" - }, - { - "code" : "CodeableConcept" - }, - { - "code" : "string" - }, - { - "code" : "boolean" - }, - { - "code" : "integer" - }, - { - "code" : "Range" - }, - { - "code" : "Ratio" - }, - { - "code" : "SampledData" - }, - { - "code" : "time" - }, - { - "code" : "dateTime" - }, - { - "code" : "Period" - }], - "condition" : ["obs-7"], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "sct-concept", - "map" : "< 441742003 |Evaluation finding|" - }, - { - "identity" : "v2", - "map" : "OBX.2, OBX.5, OBX.6" - }, - { - "identity" : "rim", - "map" : "value" - }, - { - "identity" : "sct-attr", - "map" : "363714003 |Interprets|" - }] - }, - { - "id" : "Observation.dataAbsentReason", - "path" : "Observation.dataAbsentReason", - "short" : "Why the result is missing", - "definition" : "Provides a reason why the expected value in the element Observation.value[x] is missing.", - "comment" : "Null or exceptional values can be represented two ways in FHIR Observations. One way is to simply include them in the value set and represent the exceptions in the value. For example, measurement values for a serology test could be \"detected\", \"not detected\", \"inconclusive\", or \"specimen unsatisfactory\". \n\nThe alternate way is to use the value element for actual observations and use the explicit dataAbsentReason element to record exceptional values. For example, the dataAbsentReason code \"error\" could be used when the measurement was not completed. Note that an observation may only be reported if there are values to report. For example differential cell counts values may be reported only when > 0. Because of these options, use-case agreements are required to interpret general observations for null or exceptional values.", - "requirements" : "For many results it is necessary to handle exceptional values in measurements.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.dataAbsentReason", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "condition" : ["obs-6"], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ObservationValueAbsentReason" - }], - "strength" : "extensible", - "description" : "Codes specifying why the result (`Observation.value[x]`) is missing.", - "valueSet" : "http://hl7.org/fhir/ValueSet/data-absent-reason" - }, - "mapping" : [{ - "identity" : "v2", - "map" : "N/A" - }, - { - "identity" : "rim", - "map" : "value.nullFlavor" - }] - }, - { - "id" : "Observation.interpretation", - "path" : "Observation.interpretation", - "short" : "High, low, normal, etc.", - "definition" : "A categorical assessment of an observation value. For example, high, low, normal.", - "comment" : "Historically used for laboratory results (known as 'abnormal flag' ), its use extends to other use cases where coded interpretations are relevant. Often reported as one or more simple compact codes this element is often placed adjacent to the result value in reports and flow sheets to signal the meaning/normalcy status of the result.", - "requirements" : "For some results, particularly numeric results, an interpretation is necessary to fully understand the significance of a result.", - "alias" : ["Abnormal Flag"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.interpretation", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ObservationInterpretation" - }], - "strength" : "extensible", - "description" : "Codes identifying interpretations of observations.", - "valueSet" : "http://hl7.org/fhir/ValueSet/observation-interpretation" - }, - "mapping" : [{ - "identity" : "sct-concept", - "map" : "< 260245000 |Findings values|" - }, - { - "identity" : "v2", - "map" : "OBX-8" - }, - { - "identity" : "rim", - "map" : "interpretationCode" - }, - { - "identity" : "sct-attr", - "map" : "363713009 |Has interpretation|" - }] - }, - { - "id" : "Observation.note", - "path" : "Observation.note", - "short" : "Comments about the observation", - "definition" : "Comments about the observation or the results.", - "comment" : "May include general statements about the observation, or statements about significant, unexpected or unreliable results values, or information about its source when relevant to its interpretation.", - "requirements" : "Need to be able to provide free text additional information.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.note", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Annotation" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "NTE.3 (partner NTE to OBX, or sometimes another (child?) OBX)" - }, - { - "identity" : "rim", - "map" : "subjectOf.observationEvent[code=\"annotation\"].value" - }] - }, - { - "id" : "Observation.bodySite", - "path" : "Observation.bodySite", - "short" : "Observed body part", - "definition" : "Indicates the site on the subject's body where the observation was made (i.e. the target site).", - "comment" : "Only used if not implicit in code found in Observation.code. In many systems, this may be represented as a related observation instead of an inline component. \n\nIf the use case requires BodySite to be handled as a separate resource (e.g. to identify and track separately) then use the standard extension[ bodySite](http://hl7.org/fhir/R4/extension-bodysite.html).", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.bodySite", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "BodySite" - }], - "strength" : "example", - "description" : "Codes describing anatomical locations. May include laterality.", - "valueSet" : "http://hl7.org/fhir/ValueSet/body-site" - }, - "mapping" : [{ - "identity" : "sct-concept", - "map" : "< 123037004 |Body structure|" - }, - { - "identity" : "v2", - "map" : "OBX-20" - }, - { - "identity" : "rim", - "map" : "targetSiteCode" - }, - { - "identity" : "sct-attr", - "map" : "718497002 |Inherent location|" - }] - }, - { - "id" : "Observation.method", - "path" : "Observation.method", - "short" : "How it was done", - "definition" : "Indicates the mechanism used to perform the observation.", - "comment" : "Only used if not implicit in code for Observation.code.", - "requirements" : "In some cases, method can impact results and is thus used for determining whether results can be compared or determining significance of results.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.method", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ObservationMethod" - }], - "strength" : "example", - "description" : "Methods for simple observations.", - "valueSet" : "http://hl7.org/fhir/ValueSet/observation-methods" - }, - "mapping" : [{ - "identity" : "v2", - "map" : "OBX-17" - }, - { - "identity" : "rim", - "map" : "methodCode" - }] - }, - { - "id" : "Observation.specimen", - "path" : "Observation.specimen", - "short" : "Specimen used for this observation", - "definition" : "The specimen that was used when this observation was made.", - "comment" : "Should only be used if not implicit in code found in `Observation.code`. Observations are not made on specimens themselves; they are made on a subject, but in many cases by the means of a specimen. Note that although specimens are often involved, they are not always tracked and reported explicitly. Also note that observation resources may be used in contexts that track the specimen explicitly (e.g. Diagnostic Report).", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.specimen", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Specimen"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "sct-concept", - "map" : "< 123038009 |Specimen|" - }, - { - "identity" : "v2", - "map" : "SPM segment" - }, - { - "identity" : "rim", - "map" : "participation[typeCode=SPC].specimen" - }, - { - "identity" : "sct-attr", - "map" : "704319004 |Inherent in|" - }] - }, - { - "id" : "Observation.device", - "path" : "Observation.device", - "short" : "(Measurement) Device", - "definition" : "The device used to generate the observation data.", - "comment" : "Note that this is not meant to represent a device involved in the transmission of the result, e.g., a gateway. Such devices may be documented using the Provenance resource where relevant.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.device", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Device", - "http://hl7.org/fhir/StructureDefinition/DeviceMetric"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "sct-concept", - "map" : "< 49062001 |Device|" - }, - { - "identity" : "v2", - "map" : "OBX-17 / PRT -10" - }, - { - "identity" : "rim", - "map" : "participation[typeCode=DEV]" - }, - { - "identity" : "sct-attr", - "map" : "424226004 |Using device|" - }] - }, - { - "id" : "Observation.referenceRange", - "path" : "Observation.referenceRange", - "short" : "Provides guide for interpretation", - "definition" : "Guidance on how to interpret the value by comparison to a normal or recommended range. Multiple reference ranges are interpreted as an \"OR\". In other words, to represent two distinct target populations, two `referenceRange` elements would be used.", - "comment" : "Most observations only have one generic reference range. Systems MAY choose to restrict to only supplying the relevant reference range based on knowledge about the patient (e.g., specific to the patient's age, gender, weight and other factors), but this might not be possible or appropriate. Whenever more than one reference range is supplied, the differences between them SHOULD be provided in the reference range and/or age properties.", - "requirements" : "Knowing what values are considered \"normal\" can help evaluate the significance of a particular result. Need to be able to provide multiple reference ranges for different contexts.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.referenceRange", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "BackboneElement" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "obs-3", - "severity" : "error", - "human" : "Must have at least a low or a high or text", - "expression" : "low.exists() or high.exists() or text.exists()", - "xpath" : "(exists(f:low) or exists(f:high)or exists(f:text))", - "source" : "http://hl7.org/fhir/StructureDefinition/Observation" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "OBX.7" - }, - { - "identity" : "rim", - "map" : "outboundRelationship[typeCode=REFV]/target[classCode=OBS, moodCode=EVN]" - }] - }, - { - "id" : "Observation.referenceRange.id", - "path" : "Observation.referenceRange.id", - "representation" : ["xmlAttr"], - "short" : "Unique id for inter-element referencing", - "definition" : "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Element.id", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", - "valueUrl" : "string" - }], - "code" : "http://hl7.org/fhirpath/System.String" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "Observation.referenceRange.extension", - "path" : "Observation.referenceRange.extension", - "short" : "Additional content defined by implementations", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "alias" : ["extensions", - "user content"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Element.extension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "Observation.referenceRange.modifierExtension", - "path" : "Observation.referenceRange.modifierExtension", - "short" : "Extensions that cannot be ignored even if unrecognized", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "requirements" : "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", - "alias" : ["extensions", - "user content", - "modifiers"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "BackboneElement.modifierExtension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : true, - "isModifierReason" : "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", - "isSummary" : true, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] - }, - { - "id" : "Observation.referenceRange.low", - "path" : "Observation.referenceRange.low", - "short" : "Low Range, if relevant", - "definition" : "The value of the low bound of the reference range. The low bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the low bound is omitted, it is assumed to be meaningless (e.g. reference range is <=2.3).", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.referenceRange.low", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Quantity", - "profile" : ["http://hl7.org/fhir/StructureDefinition/SimpleQuantity"] - }], - "condition" : ["obs-3"], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "OBX-7" - }, - { - "identity" : "rim", - "map" : "value:IVL_PQ.low" - }] - }, - { - "id" : "Observation.referenceRange.high", - "path" : "Observation.referenceRange.high", - "short" : "High Range, if relevant", - "definition" : "The value of the high bound of the reference range. The high bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the high bound is omitted, it is assumed to be meaningless (e.g. reference range is >= 2.3).", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.referenceRange.high", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Quantity", - "profile" : ["http://hl7.org/fhir/StructureDefinition/SimpleQuantity"] - }], - "condition" : ["obs-3"], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "OBX-7" - }, - { - "identity" : "rim", - "map" : "value:IVL_PQ.high" - }] - }, - { - "id" : "Observation.referenceRange.type", - "path" : "Observation.referenceRange.type", - "short" : "Reference range qualifier", - "definition" : "Codes to indicate the what part of the targeted reference population it applies to. For example, the normal or therapeutic range.", - "comment" : "This SHOULD be populated if there is more than one range. If this element is not present then the normal range is assumed.", - "requirements" : "Need to be able to say what kind of reference range this is - normal, recommended, therapeutic, etc., - for proper interpretation.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.referenceRange.type", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ObservationRangeMeaning" - }], - "strength" : "preferred", - "description" : "Code for the meaning of a reference range.", - "valueSet" : "http://hl7.org/fhir/ValueSet/referencerange-meaning" - }, - "mapping" : [{ - "identity" : "sct-concept", - "map" : "< 260245000 |Findings values| OR \r< 365860008 |General clinical state finding| \rOR \r< 250171008 |Clinical history or observation findings| OR \r< 415229000 |Racial group| OR \r< 365400002 |Finding of puberty stage| OR\r< 443938003 |Procedure carried out on subject|" - }, - { - "identity" : "v2", - "map" : "OBX-10" - }, - { - "identity" : "rim", - "map" : "interpretationCode" - }] - }, - { - "id" : "Observation.referenceRange.appliesTo", - "path" : "Observation.referenceRange.appliesTo", - "short" : "Reference range population", - "definition" : "Codes to indicate the target population this reference range applies to. For example, a reference range may be based on the normal population or a particular sex or race. Multiple `appliesTo` are interpreted as an \"AND\" of the target populations. For example, to represent a target population of African American females, both a code of female and a code for African American would be used.", - "comment" : "This SHOULD be populated if there is more than one range. If this element is not present then the normal population is assumed.", - "requirements" : "Need to be able to identify the target population for proper interpretation.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.referenceRange.appliesTo", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ObservationRangeType" - }], - "strength" : "example", - "description" : "Codes identifying the population the reference range applies to.", - "valueSet" : "http://hl7.org/fhir/ValueSet/referencerange-appliesto" - }, - "mapping" : [{ - "identity" : "sct-concept", - "map" : "< 260245000 |Findings values| OR \r< 365860008 |General clinical state finding| \rOR \r< 250171008 |Clinical history or observation findings| OR \r< 415229000 |Racial group| OR \r< 365400002 |Finding of puberty stage| OR\r< 443938003 |Procedure carried out on subject|" - }, - { - "identity" : "v2", - "map" : "OBX-10" - }, - { - "identity" : "rim", - "map" : "interpretationCode" - }] - }, - { - "id" : "Observation.referenceRange.age", - "path" : "Observation.referenceRange.age", - "short" : "Applicable age range, if relevant", - "definition" : "The age at which this reference range is applicable. This is a neonatal age (e.g. number of weeks at term) if the meaning says so.", - "requirements" : "Some analytes vary greatly over age.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.referenceRange.age", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Range" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "outboundRelationship[typeCode=PRCN].targetObservationCriterion[code=\"age\"].value" - }] - }, - { - "id" : "Observation.referenceRange.text", - "path" : "Observation.referenceRange.text", - "short" : "Text based reference range in an observation", - "definition" : "Text based reference range in an observation which may be used when a quantitative range is not appropriate for an observation. An example would be a reference value of \"Negative\" or a list or table of \"normals\".", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.referenceRange.text", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "string" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "OBX-7" - }, - { - "identity" : "rim", - "map" : "value:ST" - }] - }, - { - "id" : "Observation.hasMember", - "path" : "Observation.hasMember", - "short" : "Related resource that belongs to the Observation group", - "definition" : "This observation is a group observation (e.g. a battery, a panel of tests, a set of vital sign measurements) that includes the target as a member of the group.", - "comment" : "When using this element, an observation will typically have either a value or a set of related resources, although both may be present in some cases. For a discussion on the ways Observations can assembled in groups together, see [Notes](http://hl7.org/fhir/R4/observation.html#obsgrouping) below. Note that a system may calculate results from [QuestionnaireResponse](questionnaireresponse.html) into a final score and represent the score as an Observation.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.hasMember", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/Observation", - "http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse", - "http://hl7.org/fhir/StructureDefinition/MolecularSequence"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "v2", - "map" : "Relationships established by OBX-4 usage" - }, - { - "identity" : "rim", - "map" : "outBoundRelationship" - }] - }, - { - "id" : "Observation.derivedFrom", - "path" : "Observation.derivedFrom", - "short" : "Related measurements the observation is made from", - "definition" : "The target resource that represents a measurement from which this observation value is derived. For example, a calculated anion gap or a fetal measurement based on an ultrasound image.", - "comment" : "All the reference choices that are listed in this element can represent clinical observations and other measurements that may be the source for a derived value. The most common reference will be another Observation. For a discussion on the ways Observations can assembled in groups together, see [Notes](http://hl7.org/fhir/R4/observation.html#obsgrouping) below.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.derivedFrom", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Reference", - "targetProfile" : ["http://hl7.org/fhir/StructureDefinition/DocumentReference", - "http://hl7.org/fhir/StructureDefinition/ImagingStudy", - "http://hl7.org/fhir/StructureDefinition/Media", - "http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse", - "http://hl7.org/fhir/StructureDefinition/Observation", - "http://hl7.org/fhir/StructureDefinition/MolecularSequence"] - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "v2", - "map" : "Relationships established by OBX-4 usage" - }, - { - "identity" : "rim", - "map" : ".targetObservation" - }] - }, - { - "id" : "Observation.component", - "path" : "Observation.component", - "short" : "Component results", - "definition" : "Some observations have multiple component observations. These component observations are expressed as separate code value pairs that share the same attributes. Examples include systolic and diastolic component observations for blood pressure measurement and multiple component observations for genetics observations.", - "comment" : "For a discussion on the ways Observations can be assembled in groups together see [Notes](http://hl7.org/fhir/R4/observation.html#notes) below.", - "requirements" : "Component observations share the same attributes in the Observation resource as the primary observation and are always treated a part of a single observation (they are not separable). However, the reference range for the primary observation value is not inherited by the component values and is required when appropriate for each component observation.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.component", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "BackboneElement" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "v2", - "map" : "containment by OBX-4?" - }, - { - "identity" : "rim", - "map" : "outBoundRelationship[typeCode=COMP]" - }] - }, - { - "id" : "Observation.component.id", - "path" : "Observation.component.id", - "representation" : ["xmlAttr"], - "short" : "Unique id for inter-element referencing", - "definition" : "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Element.id", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", - "valueUrl" : "string" - }], - "code" : "http://hl7.org/fhirpath/System.String" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "Observation.component.extension", - "path" : "Observation.component.extension", - "short" : "Additional content defined by implementations", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "alias" : ["extensions", - "user content"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Element.extension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "rim", - "map" : "n/a" - }] - }, - { - "id" : "Observation.component.modifierExtension", - "path" : "Observation.component.modifierExtension", - "short" : "Extensions that cannot be ignored even if unrecognized", - "definition" : "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", - "comment" : "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", - "requirements" : "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", - "alias" : ["extensions", - "user content", - "modifiers"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "BackboneElement.modifierExtension", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "Extension" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }, - { - "key" : "ext-1", - "severity" : "error", - "human" : "Must have either extensions or value[x], not both", - "expression" : "extension.exists() != value.exists()", - "xpath" : "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", - "source" : "http://hl7.org/fhir/StructureDefinition/Extension" - }], - "isModifier" : true, - "isModifierReason" : "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", - "isSummary" : true, - "mapping" : [{ - "identity" : "rim", - "map" : "N/A" - }] - }, - { - "id" : "Observation.component.code", - "path" : "Observation.component.code", - "short" : "Type of component observation (code / type)", - "definition" : "Describes what was observed. Sometimes this is called the observation \"code\".", - "comment" : "*All* code-value and component.code-component.value pairs need to be taken into account to correctly understand the meaning of the observation.", - "requirements" : "Knowing what kind of observation is being made is essential to understanding the observation.", - "min" : 1, - "max" : "1", - "base" : { - "path" : "Observation.component.code", - "min" : 1, - "max" : "1" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ObservationCode" - }], - "strength" : "example", - "description" : "Codes identifying names of simple observations.", - "valueSet" : "http://hl7.org/fhir/ValueSet/observation-codes" - }, - "mapping" : [{ - "identity" : "w5", - "map" : "FiveWs.what[x]" - }, - { - "identity" : "sct-concept", - "map" : "< 363787002 |Observable entity| OR \r< 386053000 |Evaluation procedure|" - }, - { - "identity" : "v2", - "map" : "OBX-3" - }, - { - "identity" : "rim", - "map" : "code" - }] - }, - { - "id" : "Observation.component.value[x]", - "path" : "Observation.component.value[x]", - "short" : "Actual component result", - "definition" : "The information determined as a result of making the observation, if the information has a simple value.", - "comment" : "Used when observation has a set of component observations. An observation may have both a value (e.g. an Apgar score) and component observations (the observations from which the Apgar score was derived). If a value is present, the datatype for this element should be determined by Observation.code. A CodeableConcept with just a text would be used instead of a string if the field was usually coded, or if the type associated with the Observation.code defines a coded value. For additional guidance, see the [Notes section](http://hl7.org/fhir/R4/observation.html#notes) below.", - "requirements" : "An observation exists to have a value, though it might not if it is in error, or if it represents a group of observations.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.component.value[x]", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "Quantity" - }, - { - "code" : "CodeableConcept" - }, - { - "code" : "string" - }, - { - "code" : "boolean" - }, - { - "code" : "integer" - }, - { - "code" : "Range" - }, - { - "code" : "Ratio" - }, - { - "code" : "SampledData" - }, - { - "code" : "time" - }, - { - "code" : "dateTime" - }, - { - "code" : "Period" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : true, - "mapping" : [{ - "identity" : "sct-concept", - "map" : "363714003 |Interprets| < 441742003 |Evaluation finding|" - }, - { - "identity" : "v2", - "map" : "OBX.2, OBX.5, OBX.6" - }, - { - "identity" : "rim", - "map" : "value" - }, - { - "identity" : "sct-attr", - "map" : "363714003 |Interprets|" - }] - }, - { - "id" : "Observation.component.dataAbsentReason", - "path" : "Observation.component.dataAbsentReason", - "short" : "Why the component result is missing", - "definition" : "Provides a reason why the expected value in the element Observation.component.value[x] is missing.", - "comment" : "\"Null\" or exceptional values can be represented two ways in FHIR Observations. One way is to simply include them in the value set and represent the exceptions in the value. For example, measurement values for a serology test could be \"detected\", \"not detected\", \"inconclusive\", or \"test not done\". \n\nThe alternate way is to use the value element for actual observations and use the explicit dataAbsentReason element to record exceptional values. For example, the dataAbsentReason code \"error\" could be used when the measurement was not completed. Because of these options, use-case agreements are required to interpret general observations for exceptional values.", - "requirements" : "For many results it is necessary to handle exceptional values in measurements.", - "min" : 0, - "max" : "1", - "base" : { - "path" : "Observation.component.dataAbsentReason", - "min" : 0, - "max" : "1" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "condition" : ["obs-6"], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ObservationValueAbsentReason" - }], - "strength" : "extensible", - "description" : "Codes specifying why the result (`Observation.value[x]`) is missing.", - "valueSet" : "http://hl7.org/fhir/ValueSet/data-absent-reason" - }, - "mapping" : [{ - "identity" : "v2", - "map" : "N/A" - }, - { - "identity" : "rim", - "map" : "value.nullFlavor" - }] - }, - { - "id" : "Observation.component.interpretation", - "path" : "Observation.component.interpretation", - "short" : "High, low, normal, etc.", - "definition" : "A categorical assessment of an observation value. For example, high, low, normal.", - "comment" : "Historically used for laboratory results (known as 'abnormal flag' ), its use extends to other use cases where coded interpretations are relevant. Often reported as one or more simple compact codes this element is often placed adjacent to the result value in reports and flow sheets to signal the meaning/normalcy status of the result.", - "requirements" : "For some results, particularly numeric results, an interpretation is necessary to fully understand the significance of a result.", - "alias" : ["Abnormal Flag"], - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.component.interpretation", - "min" : 0, - "max" : "*" - }, - "type" : [{ - "code" : "CodeableConcept" - }], - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "binding" : { - "extension" : [{ - "url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", - "valueString" : "ObservationInterpretation" - }], - "strength" : "extensible", - "description" : "Codes identifying interpretations of observations.", - "valueSet" : "http://hl7.org/fhir/ValueSet/observation-interpretation" - }, - "mapping" : [{ - "identity" : "sct-concept", - "map" : "< 260245000 |Findings values|" - }, - { - "identity" : "v2", - "map" : "OBX-8" - }, - { - "identity" : "rim", - "map" : "interpretationCode" - }, + "identity": "sct-attr", + "uri": "http://snomed.org/attributebinding", + "name": "SNOMED CT Attribute Binding" + } + ], + "kind": "resource", + "abstract": false, + "type": "Observation", + "baseDefinition": "http://hl7.org/fhir/StructureDefinition/Observation", + "derivation": "constraint", + "snapshot": { + "element": [ + { + "id": "Observation", + "path": "Observation", + "short": "Measurements and simple assertions", + "definition": "Measurements and simple assertions made about a patient, device or other subject.", + "comment": "Used for simple observations such as device measurements, laboratory atomic results, vital signs, height, weight, smoking status, comments, etc. Other resources are used to provide context for observations such as laboratory reports, etc.", + "alias": ["Vital Signs", "Measurement", "Results", "Tests"], + "min": 0, + "max": "*", + "base": { + "path": "Observation", + "min": 0, + "max": "*" + }, + "constraint": [ + { + "key": "dom-2", + "severity": "error", + "human": "If the resource is contained in another resource, it SHALL NOT contain nested Resources", + "expression": "contained.contained.empty()", + "xpath": "not(parent::f:contained and f:contained)", + "source": "http://hl7.org/fhir/StructureDefinition/DomainResource" + }, + { + "key": "dom-3", + "severity": "error", + "human": "If the resource is contained in another resource, it SHALL be referred to from elsewhere in the resource or SHALL refer to the containing resource", + "expression": "contained.where((('#'+id in (%resource.descendants().reference | %resource.descendants().as(canonical) | %resource.descendants().as(uri) | %resource.descendants().as(url))) or descendants().where(reference = '#').exists() or descendants().where(as(canonical) = '#').exists() or descendants().where(as(canonical) = '#').exists()).not()).trace('unmatched', id).empty()", + "xpath": "not(exists(for $id in f:contained/*/f:id/@value return $contained[not(parent::*/descendant::f:reference/@value=concat('#', $contained/*/id/@value) or descendant::f:reference[@value='#'])]))", + "source": "http://hl7.org/fhir/StructureDefinition/DomainResource" + }, + { + "key": "dom-4", + "severity": "error", + "human": "If a resource is contained in another resource, it SHALL NOT have a meta.versionId or a meta.lastUpdated", + "expression": "contained.meta.versionId.empty() and contained.meta.lastUpdated.empty()", + "xpath": "not(exists(f:contained/*/f:meta/f:versionId)) and not(exists(f:contained/*/f:meta/f:lastUpdated))", + "source": "http://hl7.org/fhir/StructureDefinition/DomainResource" + }, + { + "key": "dom-5", + "severity": "error", + "human": "If a resource is contained in another resource, it SHALL NOT have a security label", + "expression": "contained.meta.security.empty()", + "xpath": "not(exists(f:contained/*/f:meta/f:security))", + "source": "http://hl7.org/fhir/StructureDefinition/DomainResource" + }, + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice", + "valueBoolean": true + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice-explanation", + "valueMarkdown": "When a resource has no narrative, only systems that fully understand the data can display the resource to a human safely. Including a human readable representation in the resource makes for a much more robust eco-system and cheaper handling of resources by intermediary systems. Some ecosystems restrict distribution of resources to only those systems that do fully understand the resources, and as a consequence implementers may believe that the narrative is superfluous. However experience shows that such eco-systems often open up to new participants over time." + } + ], + "key": "dom-6", + "severity": "warning", + "human": "A resource should have narrative for robust management", + "expression": "text.`div`.exists()", + "xpath": "exists(f:text/h:div)", + "source": "http://hl7.org/fhir/StructureDefinition/DomainResource" + }, + { + "key": "obs-6", + "severity": "error", + "human": "dataAbsentReason SHALL only be present if Observation.value[x] is not present", + "expression": "dataAbsentReason.empty() or value.empty()", + "xpath": "not(exists(f:dataAbsentReason)) or (not(exists(*[starts-with(local-name(.), 'value')])))", + "source": "http://hl7.org/fhir/StructureDefinition/Observation" + }, + { + "key": "obs-7", + "severity": "error", + "human": "If Observation.code is the same as an Observation.component.code then the value element associated with the code SHALL NOT be present", + "expression": "value.empty() or component.code.where(coding.intersect(%resource.code.coding).exists()).empty()", + "xpath": "not(f:*[starts-with(local-name(.), 'value')] and (for $coding in f:code/f:coding return f:component/f:code/f:coding[f:code/@value=$coding/f:code/@value] [f:system/@value=$coding/f:system/@value]))", + "source": "http://hl7.org/fhir/StructureDefinition/Observation" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "Entity. Role, or Act" + }, + { + "identity": "workflow", + "map": "Event" + }, + { + "identity": "sct-concept", + "map": "< 363787002 |Observable entity|" + }, + { + "identity": "v2", + "map": "OBX" + }, + { + "identity": "rim", + "map": "Observation[classCode=OBS, moodCode=EVN]" + } + ] + }, + { + "id": "Observation.id", + "path": "Observation.id", + "short": "Logical id of this artifact", + "definition": "The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.", + "comment": "The only time that a resource does not have an id is when it is being submitted to the server using a create operation.", + "min": 0, + "max": "1", + "base": { + "path": "Resource.id", + "min": 0, + "max": "1" + }, + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", + "valueUrl": "id" + } + ], + "code": "http://hl7.org/fhirpath/System.String" + } + ], + "isModifier": false, + "isSummary": true + }, + { + "id": "Observation.meta", + "path": "Observation.meta", + "short": "Metadata about the resource", + "definition": "The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.", + "min": 0, + "max": "1", + "base": { + "path": "Resource.meta", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Meta" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true + }, + { + "id": "Observation.implicitRules", + "path": "Observation.implicitRules", + "short": "A set of rules under which this content was created", + "definition": "A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.", + "comment": "Asserting this rule set restricts the content to be only understood by a limited set of trading partners. This inherently limits the usefulness of the data in the long term. However, the existing health eco-system is highly fractured, and not yet ready to define, collect, and exchange data in a generally computable sense. Wherever possible, implementers and/or specification writers should avoid using this element. Often, when used, the URL is a reference to an implementation guide that defines these special rules as part of it's narrative along with other profiles, value sets, etc.", + "min": 0, + "max": "1", + "base": { + "path": "Resource.implicitRules", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "uri" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": true, + "isModifierReason": "This element is labeled as a modifier because the implicit rules may provide additional knowledge about the resource that modifies it's meaning or interpretation", + "isSummary": true + }, + { + "id": "Observation.language", + "path": "Observation.language", + "short": "Language of the resource content", + "definition": "The base language in which the resource is written.", + "comment": "Language is provided to support indexing and accessibility (typically, services such as text to speech use the language tag). The html language tag in the narrative applies to the narrative. The language tag on the resource may be used to specify the language of other presentations generated from the data in the resource. Not all the content has to be in the base language. The Resource.language should not be assumed to apply to the narrative automatically. If a language is specified, it should it also be specified on the div element in the html (see rules in HTML5 for information about the relationship between xml:lang and the html lang attribute).", + "min": 0, + "max": "1", + "base": { + "path": "Resource.language", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "code" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet", + "valueCanonical": "http://hl7.org/fhir/ValueSet/all-languages" + }, + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "Language" + } + ], + "strength": "preferred", + "description": "A human language.", + "valueSet": "http://hl7.org/fhir/ValueSet/languages" + } + }, + { + "id": "Observation.text", + "path": "Observation.text", + "short": "Text summary of the resource, for human interpretation", + "definition": "A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it \"clinically safe\" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.", + "comment": "Contained resources do not have narrative. Resources that are not contained SHOULD have a narrative. In some cases, a resource may only have text with little or no additional discrete data (as long as all minOccurs=1 elements are satisfied). This may be necessary for data from legacy systems where information is captured as a \"text blob\" or where text is additionally entered raw or narrated and encoded information is added later.", + "alias": ["narrative", "html", "xhtml", "display"], + "min": 0, + "max": "1", + "base": { + "path": "DomainResource.text", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Narrative" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "Act.text?" + } + ] + }, + { + "id": "Observation.contained", + "path": "Observation.contained", + "short": "Contained, inline Resources", + "definition": "These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.", + "comment": "This should never be done when the content can be identified properly, as once identification is lost, it is extremely difficult (and context dependent) to restore it again. Contained resources may have profiles and tags In their meta elements, but SHALL NOT have security labels.", + "alias": ["inline resources", "anonymous resources", "contained resources"], + "min": 0, + "max": "*", + "base": { + "path": "DomainResource.contained", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Resource" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] + }, + { + "id": "Observation.extension", + "path": "Observation.extension", + "short": "Additional content defined by implementations", + "definition": "May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "alias": ["extensions", "user content"], + "min": 0, + "max": "*", + "base": { + "path": "DomainResource.extension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] + }, + { + "id": "Observation.modifierExtension", + "path": "Observation.modifierExtension", + "short": "Extensions that cannot be ignored", + "definition": "May be used to represent additional information that is not part of the basic definition of the resource and that modifies the understanding of the element that contains it and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "requirements": "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", + "alias": ["extensions", "user content"], + "min": 0, + "max": "*", + "base": { + "path": "DomainResource.modifierExtension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": true, + "isModifierReason": "Modifier extensions are expected to modify the meaning or interpretation of the resource that contains them", + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] + }, + { + "id": "Observation.identifier", + "path": "Observation.identifier", + "short": "Business Identifier for observation", + "definition": "A unique identifier assigned to this observation.", + "requirements": "Allows observations to be distinguished and referenced.", + "min": 0, + "max": "*", + "base": { + "path": "Observation.identifier", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Identifier" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "workflow", + "map": "Event.identifier" + }, + { + "identity": "w5", + "map": "FiveWs.identifier" + }, + { + "identity": "v2", + "map": "OBX.21 For OBX segments from systems without OBX-21 support a combination of ORC/OBR and OBX must be negotiated between trading partners to uniquely identify the OBX segment. Depending on how V2 has been implemented each of these may be an option: 1) OBR-3 + OBX-3 + OBX-4 or 2) OBR-3 + OBR-4 + OBX-3 + OBX-4 or 2) some other way to uniquely ID the OBR/ORC + OBX-3 + OBX-4." + }, + { + "identity": "rim", + "map": "id" + } + ] + }, + { + "id": "Observation.basedOn", + "path": "Observation.basedOn", + "short": "Fulfills plan, proposal or order", + "definition": "A plan, proposal or order that is fulfilled in whole or in part by this event. For example, a MedicationRequest may require a patient to have laboratory test performed before it is dispensed.", + "requirements": "Allows tracing of authorization for the event and tracking whether proposals/recommendations were acted upon.", + "alias": ["Fulfills"], + "min": 0, + "max": "*", + "base": { + "path": "Observation.basedOn", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Reference", + "targetProfile": [ + "http://hl7.org/fhir/StructureDefinition/CarePlan", + "http://hl7.org/fhir/StructureDefinition/DeviceRequest", + "http://hl7.org/fhir/StructureDefinition/ImmunizationRecommendation", + "http://hl7.org/fhir/StructureDefinition/MedicationRequest", + "http://hl7.org/fhir/StructureDefinition/NutritionOrder", + "http://hl7.org/fhir/StructureDefinition/ServiceRequest" + ] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "workflow", + "map": "Event.basedOn" + }, + { + "identity": "v2", + "map": "ORC" + }, + { + "identity": "rim", + "map": ".inboundRelationship[typeCode=COMP].source[moodCode=EVN]" + } + ] + }, + { + "id": "Observation.partOf", + "path": "Observation.partOf", + "short": "Part of referenced event", + "definition": "A larger event of which this particular Observation is a component or step. For example, an observation as part of a procedure.", + "comment": "To link an Observation to an Encounter use `encounter`. See the [Notes](http://hl7.org/fhir/R4/observation.html#obsgrouping) below for guidance on referencing another Observation.", + "alias": ["Container"], + "min": 0, + "max": "*", + "base": { + "path": "Observation.partOf", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Reference", + "targetProfile": [ + "http://hl7.org/fhir/StructureDefinition/MedicationAdministration", + "http://hl7.org/fhir/StructureDefinition/MedicationDispense", + "http://hl7.org/fhir/StructureDefinition/MedicationStatement", + "http://hl7.org/fhir/StructureDefinition/Procedure", + "http://hl7.org/fhir/StructureDefinition/Immunization", + "http://hl7.org/fhir/StructureDefinition/ImagingStudy" + ] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "workflow", + "map": "Event.partOf" + }, + { + "identity": "v2", + "map": "Varies by domain" + }, + { + "identity": "rim", + "map": ".outboundRelationship[typeCode=FLFS].target" + } + ] + }, + { + "id": "Observation.status", + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-display-hint", + "valueString": "default: final" + } + ], + "path": "Observation.status", + "short": "registered | preliminary | final | amended +", + "definition": "The status of the result value.", + "comment": "This element is labeled as a modifier because the status contains codes that mark the resource as not currently valid.", + "requirements": "Need to track the status of individual results. Some results are finalized before the whole report is finalized.", + "min": 1, + "max": "1", + "base": { + "path": "Observation.status", + "min": 1, + "max": "1" + }, + "type": [ + { + "code": "code" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": true, + "isModifierReason": "This element is labeled as a modifier because it is a status element that contains status entered-in-error which means that the resource should not be treated as valid", + "isSummary": true, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ObservationStatus" + } + ], + "strength": "required", + "description": "Codes providing the status of an observation.", + "valueSet": "http://hl7.org/fhir/ValueSet/observation-status|4.0.1" + }, + "mapping": [ + { + "identity": "workflow", + "map": "Event.status" + }, + { + "identity": "w5", + "map": "FiveWs.status" + }, + { + "identity": "sct-concept", + "map": "< 445584004 |Report by finality status|" + }, + { + "identity": "v2", + "map": "OBX-11" + }, + { + "identity": "rim", + "map": "status Amended & Final are differentiated by whether it is the subject of a ControlAct event with a type of \"revise\"" + } + ] + }, + { + "id": "Observation.category", + "path": "Observation.category", + "short": "Classification of type of observation", + "definition": "A code that classifies the general type of observation being made.", + "comment": "In addition to the required category valueset, this element allows various categorization schemes based on the owner’s definition of the category and effectively multiple categories can be used at once. The level of granularity is defined by the category concepts in the value set.", + "requirements": "Used for filtering what observations are retrieved and displayed.", + "min": 0, + "max": "*", + "base": { + "path": "Observation.category", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ObservationCategory" + } + ], + "strength": "preferred", + "description": "Codes for high level observation categories.", + "valueSet": "http://hl7.org/fhir/ValueSet/observation-category" + }, + "mapping": [ + { + "identity": "w5", + "map": "FiveWs.class" + }, + { + "identity": "rim", + "map": ".outboundRelationship[typeCode=\"COMP].target[classCode=\"LIST\", moodCode=\"EVN\"].code" + } + ] + }, + { + "id": "Observation.code", + "path": "Observation.code", + "short": "Type of observation (code / type)", + "definition": "Describes what was observed. Sometimes this is called the observation \"name\".", + "comment": "*All* code-value and, if present, component.code-component.value pairs need to be taken into account to correctly understand the meaning of the observation.", + "requirements": "Knowing what kind of observation is being made is essential to understanding the observation.", + "alias": ["Name"], + "min": 1, + "max": "1", + "base": { + "path": "Observation.code", + "min": 1, + "max": "1" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ObservationCode" + } + ], + "strength": "example", + "description": "Codes identifying names of simple observations.", + "valueSet": "http://hl7.org/fhir/ValueSet/observation-codes" + }, + "mapping": [ + { + "identity": "workflow", + "map": "Event.code" + }, + { + "identity": "w5", + "map": "FiveWs.what[x]" + }, + { + "identity": "sct-concept", + "map": "< 363787002 |Observable entity| OR < 386053000 |Evaluation procedure|" + }, + { + "identity": "v2", + "map": "OBX-3" + }, + { + "identity": "rim", + "map": "code" + }, + { + "identity": "sct-attr", + "map": "116680003 |Is a|" + } + ] + }, + { + "id": "Observation.subject", + "path": "Observation.subject", + "short": "Who and/or what the observation is about", + "definition": "The patient, or group of patients, location, or device this observation is about and into whose record the observation is placed. If the actual focus of the observation is different from the subject (or a sample of, part, or region of the subject), the `focus` element or the `code` itself specifies the actual focus of the observation.", + "comment": "One would expect this element to be a cardinality of 1..1. The only circumstance in which the subject can be missing is when the observation is made by a device that does not know the patient. In this case, the observation SHALL be matched to a patient through some context/channel matching technique, and at this point, the observation should be updated.", + "requirements": "Observations have no value if you don't know who or what they're about.", + "min": 0, + "max": "1", + "base": { + "path": "Observation.subject", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Reference", + "targetProfile": [ + "http://hl7.org/fhir/StructureDefinition/Patient", + "http://hl7.org/fhir/StructureDefinition/Group", + "http://hl7.org/fhir/StructureDefinition/Device", + "http://hl7.org/fhir/StructureDefinition/Location" + ] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "workflow", + "map": "Event.subject" + }, + { + "identity": "w5", + "map": "FiveWs.subject[x]" + }, + { + "identity": "v2", + "map": "PID-3" + }, + { + "identity": "rim", + "map": "participation[typeCode=RTGT]" + }, + { + "identity": "w5", + "map": "FiveWs.subject" + } + ] + }, + { + "id": "Observation.focus", + "path": "Observation.focus", + "short": "What the observation is about, when it is not about the subject of record", + "definition": "The actual focus of an observation when it is not the patient of record representing something or someone associated with the patient such as a spouse, parent, fetus, or donor. For example, fetus observations in a mother's record. The focus of an observation could also be an existing condition, an intervention, the subject's diet, another observation of the subject, or a body structure such as tumor or implanted device. An example use case would be using the Observation resource to capture whether the mother is trained to change her child's tracheostomy tube. In this example, the child is the patient of record and the mother is the focus.", + "comment": "Typically, an observation is made about the subject - a patient, or group of patients, location, or device - and the distinction between the subject and what is directly measured for an observation is specified in the observation code itself ( e.g., \"Blood Glucose\") and does not need to be represented separately using this element. Use `specimen` if a reference to a specimen is required. If a code is required instead of a resource use either `bodysite` for bodysites or the standard extension [focusCode](http://hl7.org/fhir/R4/extension-observation-focuscode.html).", + "min": 0, + "max": "*", + "base": { + "path": "Observation.focus", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Reference", + "targetProfile": ["http://hl7.org/fhir/StructureDefinition/Resource"] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "w5", + "map": "FiveWs.subject[x]" + }, + { + "identity": "v2", + "map": "OBX-3" + }, + { + "identity": "rim", + "map": "participation[typeCode=SBJ]" + }, + { + "identity": "w5", + "map": "FiveWs.subject" + } + ] + }, + { + "id": "Observation.encounter", + "path": "Observation.encounter", + "short": "Healthcare event during which this observation is made", + "definition": "The healthcare event (e.g. a patient and healthcare provider interaction) during which this observation is made.", + "comment": "This will typically be the encounter the event occurred within, but some events may be initiated prior to or after the official completion of an encounter but still be tied to the context of the encounter (e.g. pre-admission laboratory tests).", + "requirements": "For some observations it may be important to know the link between an observation and a particular encounter.", + "alias": ["Context"], + "min": 0, + "max": "1", + "base": { + "path": "Observation.encounter", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Reference", + "targetProfile": ["http://hl7.org/fhir/StructureDefinition/Encounter"] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "workflow", + "map": "Event.context" + }, + { + "identity": "w5", + "map": "FiveWs.context" + }, + { + "identity": "v2", + "map": "PV1" + }, + { + "identity": "rim", + "map": "inboundRelationship[typeCode=COMP].source[classCode=ENC, moodCode=EVN]" + } + ] + }, + { + "id": "Observation.effective[x]", + "path": "Observation.effective[x]", + "short": "Clinically relevant time/time-period for observation", + "definition": "The time or time-period the observed value is asserted as being true. For biological subjects - e.g. human patients - this is usually called the \"physiologically relevant time\". This is usually either the time of the procedure or of specimen collection, but very often the source of the date/time is not known, only the date/time itself.", + "comment": "At least a date should be present unless this observation is a historical report. For recording imprecise or \"fuzzy\" times (For example, a blood glucose measurement taken \"after breakfast\") use the [Timing](http://hl7.org/fhir/R4/datatypes.html#timing) datatype which allow the measurement to be tied to regular life events.", + "requirements": "Knowing when an observation was deemed true is important to its relevance as well as determining trends.", + "alias": ["Occurrence"], + "min": 0, + "max": "1", + "base": { + "path": "Observation.effective[x]", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "dateTime" + }, + { + "code": "Period" + }, + { + "code": "Timing" + }, + { + "code": "instant" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "workflow", + "map": "Event.occurrence[x]" + }, + { + "identity": "w5", + "map": "FiveWs.done[x]" + }, + { + "identity": "v2", + "map": "OBX-14, and/or OBX-19 after v2.4 (depends on who observation made)" + }, + { + "identity": "rim", + "map": "effectiveTime" + } + ] + }, + { + "id": "Observation.issued", + "path": "Observation.issued", + "short": "Date/Time this version was made available", + "definition": "The date and time this version of the observation was made available to providers, typically after the results have been reviewed and verified.", + "comment": "For Observations that don’t require review and verification, it may be the same as the [`lastUpdated` ](http://hl7.org/fhir/R4/resource-definitions.html#Meta.lastUpdated) time of the resource itself. For Observations that do require review and verification for certain updates, it might not be the same as the `lastUpdated` time of the resource itself due to a non-clinically significant update that doesn’t require the new version to be reviewed and verified again.", + "min": 0, + "max": "1", + "base": { + "path": "Observation.issued", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "instant" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "w5", + "map": "FiveWs.recorded" + }, + { + "identity": "v2", + "map": "OBR.22 (or MSH.7), or perhaps OBX-19 (depends on who observation made)" + }, + { + "identity": "rim", + "map": "participation[typeCode=AUT].time" + } + ] + }, + { + "id": "Observation.performer", + "path": "Observation.performer", + "short": "Who is responsible for the observation", + "definition": "Who was responsible for asserting the observed value as \"true\".", + "requirements": "May give a degree of confidence in the observation and also indicates where follow-up questions should be directed.", + "min": 0, + "max": "*", + "base": { + "path": "Observation.performer", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Reference", + "targetProfile": [ + "http://hl7.org/fhir/StructureDefinition/Practitioner", + "http://hl7.org/fhir/StructureDefinition/PractitionerRole", + "http://hl7.org/fhir/StructureDefinition/Organization", + "http://hl7.org/fhir/StructureDefinition/CareTeam", + "http://hl7.org/fhir/StructureDefinition/Patient", + "http://hl7.org/fhir/StructureDefinition/RelatedPerson" + ] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "workflow", + "map": "Event.performer.actor" + }, + { + "identity": "w5", + "map": "FiveWs.actor" + }, + { + "identity": "v2", + "map": "OBX.15 / (Practitioner) OBX-16, PRT-5:PRT-4='RO' / (Device) OBX-18 , PRT-10:PRT-4='EQUIP' / (Organization) OBX-23, PRT-8:PRT-4='PO'" + }, + { + "identity": "rim", + "map": "participation[typeCode=PRF]" + } + ] + }, + { + "id": "Observation.value[x]", + "path": "Observation.value[x]", + "short": "Actual result", + "definition": "The information determined as a result of making the observation, if the information has a simple value.", + "comment": "An observation may have; 1) a single value here, 2) both a value and a set of related or component values, or 3) only a set of related or component values. If a value is present, the datatype for this element should be determined by Observation.code. A CodeableConcept with just a text would be used instead of a string if the field was usually coded, or if the type associated with the Observation.code defines a coded value. For additional guidance, see the [Notes section](http://hl7.org/fhir/R4/observation.html#notes) below.", + "requirements": "An observation exists to have a value, though it might not if it is in error, or if it represents a group of observations.", + "min": 1, + "max": "1", + "base": { + "path": "Observation.value[x]", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Quantity" + }, + { + "code": "CodeableConcept" + }, + { + "code": "string" + }, + { + "code": "boolean" + }, + { + "code": "integer" + }, + { + "code": "Range" + }, + { + "code": "Ratio" + }, + { + "code": "SampledData" + }, + { + "code": "time" + }, + { + "code": "dateTime" + }, + { + "code": "Period" + } + ], + "condition": ["obs-7"], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "sct-concept", + "map": "< 441742003 |Evaluation finding|" + }, + { + "identity": "v2", + "map": "OBX.2, OBX.5, OBX.6" + }, + { + "identity": "rim", + "map": "value" + }, + { + "identity": "sct-attr", + "map": "363714003 |Interprets|" + } + ] + }, + { + "id": "Observation.dataAbsentReason", + "path": "Observation.dataAbsentReason", + "short": "Why the result is missing", + "definition": "Provides a reason why the expected value in the element Observation.value[x] is missing.", + "comment": "Null or exceptional values can be represented two ways in FHIR Observations. One way is to simply include them in the value set and represent the exceptions in the value. For example, measurement values for a serology test could be \"detected\", \"not detected\", \"inconclusive\", or \"specimen unsatisfactory\". \n\nThe alternate way is to use the value element for actual observations and use the explicit dataAbsentReason element to record exceptional values. For example, the dataAbsentReason code \"error\" could be used when the measurement was not completed. Note that an observation may only be reported if there are values to report. For example differential cell counts values may be reported only when > 0. Because of these options, use-case agreements are required to interpret general observations for null or exceptional values.", + "requirements": "For many results it is necessary to handle exceptional values in measurements.", + "min": 0, + "max": "1", + "base": { + "path": "Observation.dataAbsentReason", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "condition": ["obs-6"], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ObservationValueAbsentReason" + } + ], + "strength": "extensible", + "description": "Codes specifying why the result (`Observation.value[x]`) is missing.", + "valueSet": "http://hl7.org/fhir/ValueSet/data-absent-reason" + }, + "mapping": [ + { + "identity": "v2", + "map": "N/A" + }, + { + "identity": "rim", + "map": "value.nullFlavor" + } + ] + }, + { + "id": "Observation.interpretation", + "path": "Observation.interpretation", + "short": "High, low, normal, etc.", + "definition": "A categorical assessment of an observation value. For example, high, low, normal.", + "comment": "Historically used for laboratory results (known as 'abnormal flag' ), its use extends to other use cases where coded interpretations are relevant. Often reported as one or more simple compact codes this element is often placed adjacent to the result value in reports and flow sheets to signal the meaning/normalcy status of the result.", + "requirements": "For some results, particularly numeric results, an interpretation is necessary to fully understand the significance of a result.", + "alias": ["Abnormal Flag"], + "min": 0, + "max": "*", + "base": { + "path": "Observation.interpretation", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ObservationInterpretation" + } + ], + "strength": "extensible", + "description": "Codes identifying interpretations of observations.", + "valueSet": "http://hl7.org/fhir/ValueSet/observation-interpretation" + }, + "mapping": [ + { + "identity": "sct-concept", + "map": "< 260245000 |Findings values|" + }, + { + "identity": "v2", + "map": "OBX-8" + }, + { + "identity": "rim", + "map": "interpretationCode" + }, + { + "identity": "sct-attr", + "map": "363713009 |Has interpretation|" + } + ] + }, + { + "id": "Observation.note", + "path": "Observation.note", + "short": "Comments about the observation", + "definition": "Comments about the observation or the results.", + "comment": "May include general statements about the observation, or statements about significant, unexpected or unreliable results values, or information about its source when relevant to its interpretation.", + "requirements": "Need to be able to provide free text additional information.", + "min": 0, + "max": "*", + "base": { + "path": "Observation.note", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Annotation" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "NTE.3 (partner NTE to OBX, or sometimes another (child?) OBX)" + }, + { + "identity": "rim", + "map": "subjectOf.observationEvent[code=\"annotation\"].value" + } + ] + }, + { + "id": "Observation.bodySite", + "path": "Observation.bodySite", + "short": "Observed body part", + "definition": "Indicates the site on the subject's body where the observation was made (i.e. the target site).", + "comment": "Only used if not implicit in code found in Observation.code. In many systems, this may be represented as a related observation instead of an inline component. \n\nIf the use case requires BodySite to be handled as a separate resource (e.g. to identify and track separately) then use the standard extension[ bodySite](http://hl7.org/fhir/R4/extension-bodysite.html).", + "min": 0, + "max": "1", + "base": { + "path": "Observation.bodySite", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "BodySite" + } + ], + "strength": "example", + "description": "Codes describing anatomical locations. May include laterality.", + "valueSet": "http://hl7.org/fhir/ValueSet/body-site" + }, + "mapping": [ + { + "identity": "sct-concept", + "map": "< 123037004 |Body structure|" + }, + { + "identity": "v2", + "map": "OBX-20" + }, + { + "identity": "rim", + "map": "targetSiteCode" + }, + { + "identity": "sct-attr", + "map": "718497002 |Inherent location|" + } + ] + }, + { + "id": "Observation.method", + "path": "Observation.method", + "short": "How it was done", + "definition": "Indicates the mechanism used to perform the observation.", + "comment": "Only used if not implicit in code for Observation.code.", + "requirements": "In some cases, method can impact results and is thus used for determining whether results can be compared or determining significance of results.", + "min": 0, + "max": "1", + "base": { + "path": "Observation.method", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ObservationMethod" + } + ], + "strength": "example", + "description": "Methods for simple observations.", + "valueSet": "http://hl7.org/fhir/ValueSet/observation-methods" + }, + "mapping": [ + { + "identity": "v2", + "map": "OBX-17" + }, + { + "identity": "rim", + "map": "methodCode" + } + ] + }, + { + "id": "Observation.specimen", + "path": "Observation.specimen", + "short": "Specimen used for this observation", + "definition": "The specimen that was used when this observation was made.", + "comment": "Should only be used if not implicit in code found in `Observation.code`. Observations are not made on specimens themselves; they are made on a subject, but in many cases by the means of a specimen. Note that although specimens are often involved, they are not always tracked and reported explicitly. Also note that observation resources may be used in contexts that track the specimen explicitly (e.g. Diagnostic Report).", + "min": 0, + "max": "1", + "base": { + "path": "Observation.specimen", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Reference", + "targetProfile": ["http://hl7.org/fhir/StructureDefinition/Specimen"] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "sct-concept", + "map": "< 123038009 |Specimen|" + }, + { + "identity": "v2", + "map": "SPM segment" + }, + { + "identity": "rim", + "map": "participation[typeCode=SPC].specimen" + }, + { + "identity": "sct-attr", + "map": "704319004 |Inherent in|" + } + ] + }, + { + "id": "Observation.device", + "path": "Observation.device", + "short": "(Measurement) Device", + "definition": "The device used to generate the observation data.", + "comment": "Note that this is not meant to represent a device involved in the transmission of the result, e.g., a gateway. Such devices may be documented using the Provenance resource where relevant.", + "min": 0, + "max": "1", + "base": { + "path": "Observation.device", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Reference", + "targetProfile": [ + "http://hl7.org/fhir/StructureDefinition/Device", + "http://hl7.org/fhir/StructureDefinition/DeviceMetric" + ] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "sct-concept", + "map": "< 49062001 |Device|" + }, + { + "identity": "v2", + "map": "OBX-17 / PRT -10" + }, + { + "identity": "rim", + "map": "participation[typeCode=DEV]" + }, + { + "identity": "sct-attr", + "map": "424226004 |Using device|" + } + ] + }, + { + "id": "Observation.referenceRange", + "path": "Observation.referenceRange", + "short": "Provides guide for interpretation", + "definition": "Guidance on how to interpret the value by comparison to a normal or recommended range. Multiple reference ranges are interpreted as an \"OR\". In other words, to represent two distinct target populations, two `referenceRange` elements would be used.", + "comment": "Most observations only have one generic reference range. Systems MAY choose to restrict to only supplying the relevant reference range based on knowledge about the patient (e.g., specific to the patient's age, gender, weight and other factors), but this might not be possible or appropriate. Whenever more than one reference range is supplied, the differences between them SHOULD be provided in the reference range and/or age properties.", + "requirements": "Knowing what values are considered \"normal\" can help evaluate the significance of a particular result. Need to be able to provide multiple reference ranges for different contexts.", + "min": 0, + "max": "*", + "base": { + "path": "Observation.referenceRange", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "BackboneElement" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "obs-3", + "severity": "error", + "human": "Must have at least a low or a high or text", + "expression": "low.exists() or high.exists() or text.exists()", + "xpath": "(exists(f:low) or exists(f:high)or exists(f:text))", + "source": "http://hl7.org/fhir/StructureDefinition/Observation" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "OBX.7" + }, + { + "identity": "rim", + "map": "outboundRelationship[typeCode=REFV]/target[classCode=OBS, moodCode=EVN]" + } + ] + }, + { + "id": "Observation.referenceRange.id", + "path": "Observation.referenceRange.id", + "representation": ["xmlAttr"], + "short": "Unique id for inter-element referencing", + "definition": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", + "min": 0, + "max": "1", + "base": { + "path": "Element.id", + "min": 0, + "max": "1" + }, + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", + "valueUrl": "string" + } + ], + "code": "http://hl7.org/fhirpath/System.String" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] + }, + { + "id": "Observation.referenceRange.extension", + "path": "Observation.referenceRange.extension", + "short": "Additional content defined by implementations", + "definition": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "alias": ["extensions", "user content"], + "min": 0, + "max": "*", + "base": { + "path": "Element.extension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] + }, + { + "id": "Observation.referenceRange.modifierExtension", + "path": "Observation.referenceRange.modifierExtension", + "short": "Extensions that cannot be ignored even if unrecognized", + "definition": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "requirements": "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", + "alias": ["extensions", "user content", "modifiers"], + "min": 0, + "max": "*", + "base": { + "path": "BackboneElement.modifierExtension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": true, + "isModifierReason": "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", + "isSummary": true, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] + }, + { + "id": "Observation.referenceRange.low", + "path": "Observation.referenceRange.low", + "short": "Low Range, if relevant", + "definition": "The value of the low bound of the reference range. The low bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the low bound is omitted, it is assumed to be meaningless (e.g. reference range is <=2.3).", + "min": 0, + "max": "1", + "base": { + "path": "Observation.referenceRange.low", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Quantity", + "profile": ["http://hl7.org/fhir/StructureDefinition/SimpleQuantity"] + } + ], + "condition": ["obs-3"], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "OBX-7" + }, + { + "identity": "rim", + "map": "value:IVL_PQ.low" + } + ] + }, + { + "id": "Observation.referenceRange.high", + "path": "Observation.referenceRange.high", + "short": "High Range, if relevant", + "definition": "The value of the high bound of the reference range. The high bound of the reference range endpoint is inclusive of the value (e.g. reference range is >=5 - <=9). If the high bound is omitted, it is assumed to be meaningless (e.g. reference range is >= 2.3).", + "min": 0, + "max": "1", + "base": { + "path": "Observation.referenceRange.high", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Quantity", + "profile": ["http://hl7.org/fhir/StructureDefinition/SimpleQuantity"] + } + ], + "condition": ["obs-3"], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "OBX-7" + }, + { + "identity": "rim", + "map": "value:IVL_PQ.high" + } + ] + }, + { + "id": "Observation.referenceRange.type", + "path": "Observation.referenceRange.type", + "short": "Reference range qualifier", + "definition": "Codes to indicate the what part of the targeted reference population it applies to. For example, the normal or therapeutic range.", + "comment": "This SHOULD be populated if there is more than one range. If this element is not present then the normal range is assumed.", + "requirements": "Need to be able to say what kind of reference range this is - normal, recommended, therapeutic, etc., - for proper interpretation.", + "min": 0, + "max": "1", + "base": { + "path": "Observation.referenceRange.type", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ObservationRangeMeaning" + } + ], + "strength": "preferred", + "description": "Code for the meaning of a reference range.", + "valueSet": "http://hl7.org/fhir/ValueSet/referencerange-meaning" + }, + "mapping": [ + { + "identity": "sct-concept", + "map": "< 260245000 |Findings values| OR \r< 365860008 |General clinical state finding| \rOR \r< 250171008 |Clinical history or observation findings| OR \r< 415229000 |Racial group| OR \r< 365400002 |Finding of puberty stage| OR\r< 443938003 |Procedure carried out on subject|" + }, + { + "identity": "v2", + "map": "OBX-10" + }, + { + "identity": "rim", + "map": "interpretationCode" + } + ] + }, + { + "id": "Observation.referenceRange.appliesTo", + "path": "Observation.referenceRange.appliesTo", + "short": "Reference range population", + "definition": "Codes to indicate the target population this reference range applies to. For example, a reference range may be based on the normal population or a particular sex or race. Multiple `appliesTo` are interpreted as an \"AND\" of the target populations. For example, to represent a target population of African American females, both a code of female and a code for African American would be used.", + "comment": "This SHOULD be populated if there is more than one range. If this element is not present then the normal population is assumed.", + "requirements": "Need to be able to identify the target population for proper interpretation.", + "min": 0, + "max": "*", + "base": { + "path": "Observation.referenceRange.appliesTo", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ObservationRangeType" + } + ], + "strength": "example", + "description": "Codes identifying the population the reference range applies to.", + "valueSet": "http://hl7.org/fhir/ValueSet/referencerange-appliesto" + }, + "mapping": [ + { + "identity": "sct-concept", + "map": "< 260245000 |Findings values| OR \r< 365860008 |General clinical state finding| \rOR \r< 250171008 |Clinical history or observation findings| OR \r< 415229000 |Racial group| OR \r< 365400002 |Finding of puberty stage| OR\r< 443938003 |Procedure carried out on subject|" + }, + { + "identity": "v2", + "map": "OBX-10" + }, + { + "identity": "rim", + "map": "interpretationCode" + } + ] + }, + { + "id": "Observation.referenceRange.age", + "path": "Observation.referenceRange.age", + "short": "Applicable age range, if relevant", + "definition": "The age at which this reference range is applicable. This is a neonatal age (e.g. number of weeks at term) if the meaning says so.", + "requirements": "Some analytes vary greatly over age.", + "min": 0, + "max": "1", + "base": { + "path": "Observation.referenceRange.age", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Range" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "outboundRelationship[typeCode=PRCN].targetObservationCriterion[code=\"age\"].value" + } + ] + }, + { + "id": "Observation.referenceRange.text", + "path": "Observation.referenceRange.text", + "short": "Text based reference range in an observation", + "definition": "Text based reference range in an observation which may be used when a quantitative range is not appropriate for an observation. An example would be a reference value of \"Negative\" or a list or table of \"normals\".", + "min": 0, + "max": "1", + "base": { + "path": "Observation.referenceRange.text", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "string" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "OBX-7" + }, + { + "identity": "rim", + "map": "value:ST" + } + ] + }, + { + "id": "Observation.hasMember", + "path": "Observation.hasMember", + "short": "Related resource that belongs to the Observation group", + "definition": "This observation is a group observation (e.g. a battery, a panel of tests, a set of vital sign measurements) that includes the target as a member of the group.", + "comment": "When using this element, an observation will typically have either a value or a set of related resources, although both may be present in some cases. For a discussion on the ways Observations can assembled in groups together, see [Notes](http://hl7.org/fhir/R4/observation.html#obsgrouping) below. Note that a system may calculate results from [QuestionnaireResponse](questionnaireresponse.html) into a final score and represent the score as an Observation.", + "min": 0, + "max": "*", + "base": { + "path": "Observation.hasMember", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Reference", + "targetProfile": [ + "http://hl7.org/fhir/StructureDefinition/Observation", + "http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse", + "http://hl7.org/fhir/StructureDefinition/MolecularSequence" + ] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "v2", + "map": "Relationships established by OBX-4 usage" + }, + { + "identity": "rim", + "map": "outBoundRelationship" + } + ] + }, + { + "id": "Observation.derivedFrom", + "path": "Observation.derivedFrom", + "short": "Related measurements the observation is made from", + "definition": "The target resource that represents a measurement from which this observation value is derived. For example, a calculated anion gap or a fetal measurement based on an ultrasound image.", + "comment": "All the reference choices that are listed in this element can represent clinical observations and other measurements that may be the source for a derived value. The most common reference will be another Observation. For a discussion on the ways Observations can assembled in groups together, see [Notes](http://hl7.org/fhir/R4/observation.html#obsgrouping) below.", + "min": 0, + "max": "*", + "base": { + "path": "Observation.derivedFrom", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Reference", + "targetProfile": [ + "http://hl7.org/fhir/StructureDefinition/DocumentReference", + "http://hl7.org/fhir/StructureDefinition/ImagingStudy", + "http://hl7.org/fhir/StructureDefinition/Media", + "http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse", + "http://hl7.org/fhir/StructureDefinition/Observation", + "http://hl7.org/fhir/StructureDefinition/MolecularSequence" + ] + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "v2", + "map": "Relationships established by OBX-4 usage" + }, + { + "identity": "rim", + "map": ".targetObservation" + } + ] + }, + { + "id": "Observation.component", + "path": "Observation.component", + "short": "Component results", + "definition": "Some observations have multiple component observations. These component observations are expressed as separate code value pairs that share the same attributes. Examples include systolic and diastolic component observations for blood pressure measurement and multiple component observations for genetics observations.", + "comment": "For a discussion on the ways Observations can be assembled in groups together see [Notes](http://hl7.org/fhir/R4/observation.html#notes) below.", + "requirements": "Component observations share the same attributes in the Observation resource as the primary observation and are always treated a part of a single observation (they are not separable). However, the reference range for the primary observation value is not inherited by the component values and is required when appropriate for each component observation.", + "min": 0, + "max": "*", + "base": { + "path": "Observation.component", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "BackboneElement" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "v2", + "map": "containment by OBX-4?" + }, + { + "identity": "rim", + "map": "outBoundRelationship[typeCode=COMP]" + } + ] + }, + { + "id": "Observation.component.id", + "path": "Observation.component.id", + "representation": ["xmlAttr"], + "short": "Unique id for inter-element referencing", + "definition": "Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.", + "min": 0, + "max": "1", + "base": { + "path": "Element.id", + "min": 0, + "max": "1" + }, + "type": [ + { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type", + "valueUrl": "string" + } + ], + "code": "http://hl7.org/fhirpath/System.String" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] + }, + { + "id": "Observation.component.extension", + "path": "Observation.component.extension", + "short": "Additional content defined by implementations", + "definition": "May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "alias": ["extensions", "user content"], + "min": 0, + "max": "*", + "base": { + "path": "Element.extension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "rim", + "map": "n/a" + } + ] + }, + { + "id": "Observation.component.modifierExtension", + "path": "Observation.component.modifierExtension", + "short": "Extensions that cannot be ignored even if unrecognized", + "definition": "May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.\n\nModifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).", + "comment": "There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.", + "requirements": "Modifier extensions allow for extensions that *cannot* be safely ignored to be clearly distinguished from the vast majority of extensions which can be safely ignored. This promotes interoperability by eliminating the need for implementers to prohibit the presence of extensions. For further information, see the [definition of modifier extensions](http://hl7.org/fhir/R4/extensibility.html#modifierExtension).", + "alias": ["extensions", "user content", "modifiers"], + "min": 0, + "max": "*", + "base": { + "path": "BackboneElement.modifierExtension", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "Extension" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + }, + { + "key": "ext-1", + "severity": "error", + "human": "Must have either extensions or value[x], not both", + "expression": "extension.exists() != value.exists()", + "xpath": "exists(f:extension)!=exists(f:*[starts-with(local-name(.), \"value\")])", + "source": "http://hl7.org/fhir/StructureDefinition/Extension" + } + ], + "isModifier": true, + "isModifierReason": "Modifier extensions are expected to modify the meaning or interpretation of the element that contains them", + "isSummary": true, + "mapping": [ + { + "identity": "rim", + "map": "N/A" + } + ] + }, + { + "id": "Observation.component.code", + "path": "Observation.component.code", + "short": "Type of component observation (code / type)", + "definition": "Describes what was observed. Sometimes this is called the observation \"code\".", + "comment": "*All* code-value and component.code-component.value pairs need to be taken into account to correctly understand the meaning of the observation.", + "requirements": "Knowing what kind of observation is being made is essential to understanding the observation.", + "min": 1, + "max": "1", + "base": { + "path": "Observation.component.code", + "min": 1, + "max": "1" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ObservationCode" + } + ], + "strength": "example", + "description": "Codes identifying names of simple observations.", + "valueSet": "http://hl7.org/fhir/ValueSet/observation-codes" + }, + "mapping": [ + { + "identity": "w5", + "map": "FiveWs.what[x]" + }, + { + "identity": "sct-concept", + "map": "< 363787002 |Observable entity| OR \r< 386053000 |Evaluation procedure|" + }, + { + "identity": "v2", + "map": "OBX-3" + }, + { + "identity": "rim", + "map": "code" + } + ] + }, + { + "id": "Observation.component.value[x]", + "path": "Observation.component.value[x]", + "short": "Actual component result", + "definition": "The information determined as a result of making the observation, if the information has a simple value.", + "comment": "Used when observation has a set of component observations. An observation may have both a value (e.g. an Apgar score) and component observations (the observations from which the Apgar score was derived). If a value is present, the datatype for this element should be determined by Observation.code. A CodeableConcept with just a text would be used instead of a string if the field was usually coded, or if the type associated with the Observation.code defines a coded value. For additional guidance, see the [Notes section](http://hl7.org/fhir/R4/observation.html#notes) below.", + "requirements": "An observation exists to have a value, though it might not if it is in error, or if it represents a group of observations.", + "min": 0, + "max": "1", + "base": { + "path": "Observation.component.value[x]", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "Quantity" + }, + { + "code": "CodeableConcept" + }, + { + "code": "string" + }, + { + "code": "boolean" + }, + { + "code": "integer" + }, + { + "code": "Range" + }, + { + "code": "Ratio" + }, + { + "code": "SampledData" + }, + { + "code": "time" + }, + { + "code": "dateTime" + }, + { + "code": "Period" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": true, + "mapping": [ + { + "identity": "sct-concept", + "map": "363714003 |Interprets| < 441742003 |Evaluation finding|" + }, + { + "identity": "v2", + "map": "OBX.2, OBX.5, OBX.6" + }, + { + "identity": "rim", + "map": "value" + }, + { + "identity": "sct-attr", + "map": "363714003 |Interprets|" + } + ] + }, + { + "id": "Observation.component.dataAbsentReason", + "path": "Observation.component.dataAbsentReason", + "short": "Why the component result is missing", + "definition": "Provides a reason why the expected value in the element Observation.component.value[x] is missing.", + "comment": "\"Null\" or exceptional values can be represented two ways in FHIR Observations. One way is to simply include them in the value set and represent the exceptions in the value. For example, measurement values for a serology test could be \"detected\", \"not detected\", \"inconclusive\", or \"test not done\". \n\nThe alternate way is to use the value element for actual observations and use the explicit dataAbsentReason element to record exceptional values. For example, the dataAbsentReason code \"error\" could be used when the measurement was not completed. Because of these options, use-case agreements are required to interpret general observations for exceptional values.", + "requirements": "For many results it is necessary to handle exceptional values in measurements.", + "min": 0, + "max": "1", + "base": { + "path": "Observation.component.dataAbsentReason", + "min": 0, + "max": "1" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "condition": ["obs-6"], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ObservationValueAbsentReason" + } + ], + "strength": "extensible", + "description": "Codes specifying why the result (`Observation.value[x]`) is missing.", + "valueSet": "http://hl7.org/fhir/ValueSet/data-absent-reason" + }, + "mapping": [ + { + "identity": "v2", + "map": "N/A" + }, + { + "identity": "rim", + "map": "value.nullFlavor" + } + ] + }, + { + "id": "Observation.component.interpretation", + "path": "Observation.component.interpretation", + "short": "High, low, normal, etc.", + "definition": "A categorical assessment of an observation value. For example, high, low, normal.", + "comment": "Historically used for laboratory results (known as 'abnormal flag' ), its use extends to other use cases where coded interpretations are relevant. Often reported as one or more simple compact codes this element is often placed adjacent to the result value in reports and flow sheets to signal the meaning/normalcy status of the result.", + "requirements": "For some results, particularly numeric results, an interpretation is necessary to fully understand the significance of a result.", + "alias": ["Abnormal Flag"], + "min": 0, + "max": "*", + "base": { + "path": "Observation.component.interpretation", + "min": 0, + "max": "*" + }, + "type": [ + { + "code": "CodeableConcept" + } + ], + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "binding": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", + "valueString": "ObservationInterpretation" + } + ], + "strength": "extensible", + "description": "Codes identifying interpretations of observations.", + "valueSet": "http://hl7.org/fhir/ValueSet/observation-interpretation" + }, + "mapping": [ + { + "identity": "sct-concept", + "map": "< 260245000 |Findings values|" + }, + { + "identity": "v2", + "map": "OBX-8" + }, + { + "identity": "rim", + "map": "interpretationCode" + }, + { + "identity": "sct-attr", + "map": "363713009 |Has interpretation|" + } + ] + }, + { + "id": "Observation.component.referenceRange", + "path": "Observation.component.referenceRange", + "short": "Provides guide for interpretation of component result", + "definition": "Guidance on how to interpret the value by comparison to a normal or recommended range.", + "comment": "Most observations only have one generic reference range. Systems MAY choose to restrict to only supplying the relevant reference range based on knowledge about the patient (e.g., specific to the patient's age, gender, weight and other factors), but this might not be possible or appropriate. Whenever more than one reference range is supplied, the differences between them SHOULD be provided in the reference range and/or age properties.", + "requirements": "Knowing what values are considered \"normal\" can help evaluate the significance of a particular result. Need to be able to provide multiple reference ranges for different contexts.", + "min": 0, + "max": "*", + "base": { + "path": "Observation.component.referenceRange", + "min": 0, + "max": "*" + }, + "contentReference": "http://hl7.org/fhir/StructureDefinition/Observation#Observation.referenceRange", + "constraint": [ + { + "key": "ele-1", + "severity": "error", + "human": "All FHIR elements must have a @value or children", + "expression": "hasValue() or (children().count() > id.count())", + "xpath": "@value|f:*|h:div", + "source": "http://hl7.org/fhir/StructureDefinition/Element" + } + ], + "isModifier": false, + "isSummary": false, + "mapping": [ + { + "identity": "v2", + "map": "OBX.7" + }, + { + "identity": "rim", + "map": "outboundRelationship[typeCode=REFV]/target[classCode=OBS, moodCode=EVN]" + } + ] + } + ] + }, + "differential": { + "element": [ { - "identity" : "sct-attr", - "map" : "363713009 |Has interpretation|" - }] - }, - { - "id" : "Observation.component.referenceRange", - "path" : "Observation.component.referenceRange", - "short" : "Provides guide for interpretation of component result", - "definition" : "Guidance on how to interpret the value by comparison to a normal or recommended range.", - "comment" : "Most observations only have one generic reference range. Systems MAY choose to restrict to only supplying the relevant reference range based on knowledge about the patient (e.g., specific to the patient's age, gender, weight and other factors), but this might not be possible or appropriate. Whenever more than one reference range is supplied, the differences between them SHOULD be provided in the reference range and/or age properties.", - "requirements" : "Knowing what values are considered \"normal\" can help evaluate the significance of a particular result. Need to be able to provide multiple reference ranges for different contexts.", - "min" : 0, - "max" : "*", - "base" : { - "path" : "Observation.component.referenceRange", - "min" : 0, - "max" : "*" - }, - "contentReference" : "http://hl7.org/fhir/StructureDefinition/Observation#Observation.referenceRange", - "constraint" : [{ - "key" : "ele-1", - "severity" : "error", - "human" : "All FHIR elements must have a @value or children", - "expression" : "hasValue() or (children().count() > id.count())", - "xpath" : "@value|f:*|h:div", - "source" : "http://hl7.org/fhir/StructureDefinition/Element" - }], - "isModifier" : false, - "isSummary" : false, - "mapping" : [{ - "identity" : "v2", - "map" : "OBX.7" + "id": "Observation", + "path": "Observation" }, { - "identity" : "rim", - "map" : "outboundRelationship[typeCode=REFV]/target[classCode=OBS, moodCode=EVN]" - }] - }] - }, - "differential" : { - "element" : [{ - "id" : "Observation", - "path" : "Observation" - }, - { - "id" : "Observation.value[x]", - "path" : "Observation.value[x]", - "min" : 1 - }] + "id": "Observation.value[x]", + "path": "Observation.value[x]", + "min": 1 + } + ] } -} \ No newline at end of file +}