Tuesday, March 10, 2015

Sample Nanotation on Election Data and Results

Sample Nanotation on Election Data

.

Nanotation,also known as micro , that describes an election that was held on the 21st of june 2014 in Nigeria is as follows:


	{

		@prefix schema:   .
		@prefix election:  .
		
		<>
		a schema:NewsArticle, election:Poll ;
		
		schema:name "Election Results";
		schema:headline "Election Results";

		schema:author [
				  a schema:Person ;
				  schema:name "Emeka Okoye" ;
				  schema:url  ;
		
		]	;
		schema:creator [
				  a schema:Person ;
				  schema:name "Emeka Okoye" ;
				  schema:url  ;
		
		]	;
		
		schema:about [
				  a schema:Thing ;
				  schema:name "Election" ;
				  schema:url  ;
		
		]	, 
		
		[
				  a schema:Thing ;
				  schema:name "Elections in Nigeria" ;
				  schema:url  ;
		
		]	; 
		
		schema:articleBody "your story or article goes here" ;
		schema:sourceOrganization 	[
				  a schema:Organization ;
				  schema:name "OpenDataNG" ;
				  schema:url  ;
		
		]	; 

		schema:provider [
				  a schema:Organization ;
				  schema:name "OpenDataNG" ;
				  schema:url  ;
		
		]	;  
		
		election:hasElectionDate "2014-06-21"^^xsd:date ;
		election:hasConstituency  ;
		election:hasRegisteredVoters "733766"^^xsd:integer ;
		election:hasAccreditedVoters "369257"^^xsd:integer ;
		election:hasTotalBallots "360455"^^xsd:integer ;
		election:hasInvalidBallots "10089"^^xsd:integer ;
		election:hasValidBallots "350366"^^xsd:integer ;
		election:hasViolence "false"^^xsd:boolean ;
		election:isCandidate <#candidate1>, <#candidate2>, <#candidate3> ;
		election:hasElectoralFraud "false"^^xsd:boolean .
		
		<#candidate1> a election:Candidate ;
		schema:name "Ayodele Peter Fayose" ;
		election:isOfPoliticalParty  ;
		election:hasVotes "203090"^^xsd:integer ;
		election:isElected "true"^^xsd:boolean .

		<#candidate2> a election:Candidate ;
		schema:name "John Olukayode Fayemi" ;
		election:isOfPoliticalParty  ;
		election:hasVotes "120433"^^xsd:integer ;
		election:isElected "false"^^xsd:boolean .
		
		
		<#candidate3> a election:Candidate ;
		schema:name "Bamidele Michael Opeyemi" ;
		election:isOfPoliticalParty  ;
		election:hasVotes "18135"^^xsd:integer ;
		election:isElected "false"^^xsd:boolean .
		
	
	}

No comments:

Post a Comment