@prefix dcterms: .
@prefix this: .
@prefix sub: .
@prefix xsd: .
@prefix rdfs: .
@prefix prov: .
@prefix np: .
@prefix npx: .
@prefix orcid: .
@prefix bpmn: .
@prefix p-plan: .
@prefix plex: .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
sub:input_apple rdfs:label "1 apple, cored and chopped" .
sub:input_butter rdfs:label "1 tablespoon butter" .
sub:input_onion rdfs:label "1 onion, chopped" .
sub:make-curry-sauce dcterms:description "Melt the butter in a skillet over medium heat. Add the apple and onion to the melted butter, season with the curry powder, and cook and stir until the apple and onion are tender, 7 to 10 minutes.";
dcterms:language plex:LinguisticSystem_xsd_language_English;
p-plan:hasInputVar sub:input_apple, sub:input_butter, sub:input_onion;
p-plan:hasOutputVar sub:output_currysauce;
a bpmn:ManualTask, p-plan:Step .
}
sub:provenance {
sub:assertion prov:hadPrimarySource .
}
sub:pubinfo {
this: dcterms:created "2020-03-11T09:19:26.582+01:00"^^xsd:dateTime;
dcterms:creator orcid:0000-0002-1267-0234;
a npx:ExampleNanopub .
}