Sha256: 30f31d11e15ffcefb38f7b7114a7c6a33e0142e51a56581a2c3d974d1675184b

Contents?: true

Size: 1.69 KB

Versions: 23

Compression:

Stored size: 1.69 KB

Contents

archetype 
	adl-test-CAR.user_node.v1
concept 
	[at0000] 	   									-- car

language
	original_language = <[ISO_639-1::en]> 
	
definition
	CAR [at0000] matches {  
		wheels matches {
			WHEEL[at0001] matches {
				description matches {"front left hand wheel"}
				parts matches {
					WHEEL_PART[at0002] matches {
						something matches {"etc"}
						something_else matches {"etc"}
					}
				}
			}
			WHEEL[at0003] matches {
				description matches {"front right hand wheel"}
				parts matches {
					use_node WHEEL_PART /wheels[at0001]/parts[at0002] -- will pass
				}
			}
			WHEEL[at0004] matches {
				description matches {"rear left hand wheel"}
				parts matches {
					use_node WHEEL_PART /wheels[at0001]/parts[at0002]	-- will pass
				}
			}
			WHEEL[at0005] matches {
				description matches {"rear right hand wheel"}
				parts matches {
					use_node WHEEL_PART /engine[at0001]/parts[at0002] -- will fail
				}
			}
		}
	}


ontology 
	primary_language = <"en">
	
	languages_available = <"en", ...>
	
	terminologies_available = <"en", ...>
	
	term_definitions = <
		["en"] = <
			items = <
				["at0000"] = <
					text = <"car">; 				
					description = <"car">
				>
				["at0001"] = <
					text = <"front left hand wheel">;
					description = <"front left hand wheel">
				>
				["at0002"] = <
					text = <"wheel part">; 			
					description = <"wheel part">
				>
				["at0003"] = <
					text = <"front right hand wheel">; 	
					description = <"front right hand wheel">
				>
				["at0004"] = <
					text = <"rear left hand wheel">; 	
					description = <"rear left hand wheel">
				>
				["at0005"] = <
					text = <"rear right hand wheel">; 	
					description = <"rear right hand wheel">
				>
			>
		>
	>
	

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
open_ehr-0.9.4 spec/lib/open_ehr/parser/adl14/adl-test-car.paths.test.adl
open_ehr-0.9.3 spec/lib/open_ehr/parser/adl14/adl-test-car.paths.test.adl
open_ehr-0.9.2 spec/lib/open_ehr/parser/adl14/adl-test-car.paths.test.adl