Page 1 of 1

Authors names format in WS responses

Posted: Tue Feb 11, 2014 5:19 pm
by idexlab
Hello,

we are using OPS REST with JSON format.

When we get Bibliographic data back, inventors' names are provided as an unstructured string e.g.:
"Doe John, van der Viel Joan" which makes it tricky to decode as First name, LastName pairs.

However the EPO website patent search does provide a structured format as an alternative, e.g.:
"(Doe, John; van der Viel, Joan) " which is much easier to digest.

Does anyone know if and how the structured format can be retrieved through the API ?

thanks & regards,
pierre.

Re: Authors names format in WS responses

Posted: Wed Feb 12, 2014 1:13 pm
by EPO / OPS Support
Dear user,

This is one example from OPS and it seems quite structured to me. You have to understand that by using OPS you are accessing raw data directly and therefore you are limited with what you can do:
<parties>
<applicants>
<applicant sequence="1" data-format="epodoc">
<applicant-name>
<name>BOER BEHEER NIJMEGEN BV DE [NL]
</name>
</applicant-name>
</applicant>
<applicant sequence="1" data-format="original">
<applicant-name>
<name>BEHEERMAATSCHAPPIJ DE BOER NIJMEGEN B.V</name>
</applicant-name>
</applicant>
</applicants>
<inventors>
<inventor sequence="1" data-format="epodoc">
<inventor-name>
<name>KOSMAN WILHELMUS JACOBUS MARIA [NL]</name>
</inventor-name>
</inventor>
<inventor sequence="1" data-format="original">
<inventor-name>
<name>KOSMAN, WILHELMUS JACOBUS MARIA</name>
</inventor-name>
</inventor>
</inventors>
</parties>
Kind regards,
OPS support

Re: Authors names format in WS responses

Posted: Wed Feb 19, 2014 1:26 pm
by idexlab
Thank you, it looks like I missed it in the first place...
regards,
Pierre