Small typo in r2rml

Richard,

Small typo.

The following example, right before Section 6.1:

[]

    rr:logicalTable [ rr:tableName "DEPT" ];

    rr:subjectMap [ rr:template "http://data.example.com/department/{DEPTNO}"
];

    rr:predicateObjectMap [

        rr:predicate ex:name;

        rr:objectMap [ rr:column "DNAME" ];

    ].

    rr:predicateObjectMap [

        rr:predicate ex:location;

        rr:objectMap [ rr:column "LOC" ];

    ].


has a (.) when it should be (;):


[]

    rr:logicalTable [ rr:tableName "DEPT" ];

    rr:subjectMap [ rr:template "http://data.example.com/department/{DEPTNO}"
];

    rr:predicateObjectMap [

        rr:predicate ex:name;

        rr:objectMap [ rr:column "DNAME" ];

    ];

    rr:predicateObjectMap [

        rr:predicate ex:location;

        rr:objectMap [ rr:column "LOC" ];

    ].



Juan Sequeda
+1-575-SEQ-UEDA
www.juansequeda.com

Received on Wednesday, 1 February 2012 23:01:36 UTC