You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
556 B
30 lines
556 B
var CCDA = require("./lib/CCDA"); |
|
|
|
//CCDA metadata stuff |
|
var meta = {}; |
|
meta.CCDA = CCDA; |
|
|
|
meta.supported_sections = [ |
|
'allergies', |
|
'procedures', |
|
'immunizations', |
|
'medications', |
|
'encounters', |
|
'vitals', |
|
'results', |
|
'social_history', |
|
'demographics', |
|
'problems', |
|
'insurance', |
|
'claims', |
|
'plan_of_care', |
|
'payers', |
|
'providers', |
|
'organizations', |
|
'reason_for_referral', |
|
'hospital_discharge_instructions' |
|
]; |
|
|
|
meta.code_systems = require("./lib/code-systems"); |
|
|
|
module.exports = exports = meta;
|
|
|