ExampleN3Style1

From W3C Wiki
@prefix	:	<#> .
@prefix	ecc:	<http://purl.oclc.org/snomed/sct#> .

<#>	rdf:type	ecc:cancerReport ;
	ecc:schemaLocation	<http://purl.oclc.org/snomed/schemas#colon> ;
	ecc:schemaVersion	'1.0' .

:clinical	rdf:type	ecc:ReportSection .


<#>	ecc:patient	_:thePatient .

_:thePatient	ecc:has	[
	a	ecc:ClinicalFinding ;
	rdf:label	'hematochezia' ;
	ecc:date	'2009' ;
	ecc:duration	'P6M'
		] .

_:thePatient	ecc:has	[
	a	ecc:ClinicalFinding ;
	rdf:label	'constipation' ;
	ecc:start	'2005' ;
	ecc:duration	'P5Y'
		] .

_:thePatient	ecc:has	[
	a	ecc:PriorPathologicDiagnosis ;	[
	rdf:label	'lung cancer' ;
	ecc:date	'2008-06-05'
		] .

_:thePatient	ecc:has	_:theSpecimen .
_:theSpecimen	a	ecc:Specimen .
_:theSpecimen	ecc:from	_:theProcedure .
_:theProcedure	a	ecc:Excision .
_:theSpecimen	ecc:size	[
	ecc:dimension	[
	ecc:value	7.0 ;
	ecc:unit	ecc:cm
		] ;
	ecc:dimension	[
	ecc:value	6.0 ;
	ecc:unit	ecc:cm
		] ;
	ecc:dimension	[
	ecc:value	5.0 ;
	ecc:unit	ecc:cm
		]
		] .
_:theSpecimen	ecc:includes	_:theSpecimenSite .
_:theSpecimenSite	=	[ecc:laterality ecc:Right; a ecc:UpperOuterQuadrant] .
_:theSpecimen	ecc:tumor	_:theTumor .
_:theTumor	ecc:site	_:theSpecimenSite .
_:theTumor	ecc:histologicType	ecc:grade2 .
_:theTumor	ecc:extent	_:theExtent .
_:theTumor	ecc:size	[
	ecc:dimension	[
	ecc:value	3.0 ;
	ecc:unit	ecc:cm
		] ;
	ecc:dimension	[
	ecc:value	2.0 ;
	ecc:unit	ecc:cm
		] ;
	ecc:dimension	[
	ecc:value	1.0 ;
	ecc:unit	ecc:cm
		]
		] .

_:theTumor	ecc:deepestInvasion	[
	rdf:type	ecc:AdjacentStructure
		] .

_:theTumor	ecc:treatmentEffect	[
	ecc:severity	ecc:noResponse 
		] .

_:theTumor	ecc:lymph-vascularInvasion	[
	ecc:value	ecc:negative
		] .

_:theTumor	ecc:perineuralInvasion	[
	ecc:value	ecc:negative
		] .

_:theSpecimen	ecc:margin	[
	a	ecc:Margin ;
	ecc:location	ecc:;
	ecc:status	[
	ecc:statusFor	ecc:intramucosalCarcinoma ;
	ecc:value	ecc:negative ;
	ecc:distance	[
		'size'
		]
		] .

_:theSuperiorMargin	ecc:relativeLocation	ecc:superior;
	ecc:status	[
	ecc:statusFor	ecc:intramucosalCarcinoma ;
	ecc:value	ecc:negative ;
	ecc:distance	[
		'size'
		]
		] .

_:thePatient	ecc:has	_:theNodes .

_:theNodes	rdf:parseType	rdf:Collection .

_:theNodeGroup-1	ecc:location	'' ;
	ecc:laterality	'' ;
	ecc:positiveNodes	12 ;
	ecc:totalNodes	23 ;
	ecc:regressedNodes	2 ;
	ecc:largestMetastasis	[
	ecc:size	'blah'
		] ;
	ecc:extracapsularExtension	ecc:Negative .

_:theTumor	ecc:treatmentEffect	ecc:Negative .	#this direct value?
#_:theTumor	ecc:treatmentEffect	owl:Nothing .	#alternative 2?
_:theTumor	ecc:treatmentEffect	[ecc:value ecc:Negative] .	#alternative 3?
_:theTumor	ecc:treatmentEffect	


.