@prefix xsd: 	   <http://www.w3.org/2001/XMLSchema#> . 
@prefix rdf: 	   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . 
@prefix rdfs: 	   <http://www.w3.org/2000/01/rdf-schema#> . 
@prefix owl: 	   <http://www.w3.org/2002/07/owl#> . 

@prefix skos: 	   <http://www.w3.org/2004/02/skos/core#> . 
@prefix vann: 	   <http://purl.org/vocab/vann/> . 
@prefix dc: 	   <http://purl.org/dc/elements/1.1/> . 
@prefix foaf: 	   <http://xmlns.com/foaf/0.1/> . 
@prefix dcterms:   <http://purl.org/dc/terms/> . 
@prefix cc:        <http://creativecommons.org/ns#> .
@prefix sh: 	   <http://www.w3.org/ns/shacl#> . 
@prefix shsh:      <http://www.w3.org/ns/shacl-shacl#> .

@prefix ex: 	   <http://example.net/ns#> . 

@prefix ottr: 	   <http://ns.ottr.xyz/0.4/> . 

@prefix o-wottr:   <http://spec.ottr.xyz/wOTTR/0.4.4/tpl/> . 

# CORRECT: This is a signature with multiple annotation instances.
ex:signature a ottr:Signature ;
  ottr:parameters ( ) ;
  ottr:annotation 
    [ ottr:of ex:tb ; ottr:values (1 2 3) ] ,
    [ ottr:of ex:tc ; ottr:values (ex:a 1 2) ] ,
    [ ottr:of ex:td ; ottr:values (true false) ] ,
    [ ottr:of ex:te ; ottr:values (((0))) ] ,
    [ ottr:of ex:tf ; ottr:arguments ([ ottr:value 2 ] [ ottr:value "asdf"] ) ] ,
    [ ottr:of ex:tg ; 
      ottr:modifier ottr:cross; 
      ottr:arguments ([ ottr:value (1 2 3); ottr:modifier ottr:listExpand ] [ ottr:value "asdf"] ) ] .
