@prefix this: <http://purl.org/np/RAFA0LEAR8Tn_YFVWlF_eKLfXXWcsWUg5zLvI0lalm7kY> .
@prefix sub: <http://purl.org/np/RAFA0LEAR8Tn_YFVWlF_eKLfXXWcsWUg5zLvI0lalm7kY#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix bpmn: <http://dkm.fbk.eu/index.php/BPMN2_Ontology#> .
@prefix p-plan: <http://purl.org/net/p-plan#> .
@prefix plex: <http://purl.org/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 dct: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." ;
    dct: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 <https://www.allrecipes.com/recipe/216795/curried-chicken/> .
}
sub:pubinfo {
  this: dct:created "2020-03-11T09:19:26.582+01:00"^^xsd:dateTime ;
    dct:creator orcid:0000-0002-1267-0234 ;
    a npx:ExampleNanopub .
}