Skip to content
up authored by Lorenzo's avatar Lorenzo
...@@ -55,11 +55,11 @@ Since each service implementation has to deal with the textual analysis of a pre ...@@ -55,11 +55,11 @@ Since each service implementation has to deal with the textual analysis of a pre
A typical annotation using the BO-ECLI annotation format is composed by the prefix, the kind of entity represented by the enclosed text and a normalized value of the enclosed text: A typical annotation using the BO-ECLI annotation format is composed by the prefix, the kind of entity represented by the enclosed text and a normalized value of the enclosed text:
*"text text [BOECLI:ENTITY_NAME:ENTITY_VALUE]text text text[/BOECLI] text text"* <pre>text text [BOECLI:ENTITY_NAME:ENTITY_VALUE]text text text[/BOECLI] text text</pre>
For example, an annotation of a case-law authority (the Italian Supreme Court) in an Italian text: For example, an annotation of a case-law authority (the Italian Supreme Court) in an Italian text:
*"vedi [BOECLI:CASELAW_AUTHORITY:IT_CASS]Corte Cass.[/BOECLI] sent. n."* <pre>vedi [BOECLI:CASELAW_AUTHORITY:IT_CASS]Corte Cass.[/BOECLI] sent. n.</pre>
### Example ### Example
...@@ -68,23 +68,23 @@ Annotation steps on the following sentence in Italian language: ...@@ -68,23 +68,23 @@ Annotation steps on the following sentence in Italian language:
<pre>vedi sent. Cost. n.57/2013 con la quale</pre> <pre>vedi sent. Cost. n.57/2013 con la quale</pre>
*1. Case-law authority identification, Italian implementation:* *Case-law authority identification, Italian implementation:*
<pre>vedi sent. [BOECLI:CASELAW_AUTHORITY:IT_COST]Cost.[/BOECLI] n.57/2013 con la quale</pre> <pre>vedi sent. [BOECLI:CASELAW_AUTHORITY:IT_COST]Cost.[/BOECLI] n.57/2013 con la quale</pre>
*2. Type of document identification, Italian implementation:* *Type of document identification, Italian implementation:*
<pre>vedi [BOECLI:CASELAW_TYPE:JUDGMENT]sent.[/BOECLI] [BOECLI:CASELAW_AUTHORITY:IT_COST]Cost.[/BOECLI] n.57/2013 con la quale</pre> <pre>vedi [BOECLI:CASELAW_TYPE:JUDGMENT]sent.[/BOECLI] [BOECLI:CASELAW_AUTHORITY:IT_COST]Cost.[/BOECLI] n.57/2013 con la quale</pre>
*3. Numbers identification, Italian implementation:* *Numbers identification, Italian implementation:*
<pre>vedi [BOECLI:CASELAW_TYPE:JUDGMENT]sent.[/BOECLI] [BOECLI:CASELAW_AUTHORITY:IT_COST]Cost.[/BOECLI] [BOECLI:NUMBER_YEAR:57:2013]n.57/2013[/BOECLI] con la quale</pre> <pre>vedi [BOECLI:CASELAW_TYPE:JUDGMENT]sent.[/BOECLI] [BOECLI:CASELAW_AUTHORITY:IT_COST]Cost.[/BOECLI] [BOECLI:NUMBER_YEAR:57:2013]n.57/2013[/BOECLI] con la quale</pre>
*4. Recognition of references to case-law, generic patterns, Common implementation:* *Recognition of references to case-law, generic patterns, Common implementation:*
<pre>vedi [BOECLI:LEGAL_REFERENCE:1]sent. Cost. n.57/2013[/BOECLI] con la quale</pre> <pre>vedi [BOECLI:LEGAL_REFERENCE:1]sent. Cost. n.57/2013[/BOECLI] con la quale</pre>
*5. Default Html Rendering, Common implementation:* *Default Html Rendering, Common implementation:*
<pre>vedi &lt;a href="https://e-justice.europa.eu/ecli/ECLI:IT:COST:2013:57"&gt;sent. Cost. n.57/2013&lt;/a&gt; con la quale</pre> <pre>vedi &lt;a href="https://e-justice.europa.eu/ecli/ECLI:IT:COST:2013:57"&gt;sent. Cost. n.57/2013&lt;/a&gt; con la quale</pre>
... ...
......