elifesciences / refract

Convert NLM XML files into the Lens JSON
Other
9 stars 3 forks source link

Authors #13

Open michael opened 11 years ago

michael commented 11 years ago

For ArticleCitations I've changed the authors property to be just an array of strings.

So things like this:

      "authors": [
        {
          "given-names": "PD",
          "last-name": "Adams"
        },
        {
          "given-names": "PV",
          "last-name": "Afonine"
        },
        {
          "given-names": "G",
          "last-name": "Bunkóczi"
        },
        {
          "given-names": "VB",
          "last-name": "Chen"
        },
        {
          "given-names": "IW",
          "last-name": "Davis"
        },
        {
          "given-names": "N",
          "last-name": "Echols"
        }
      ],

would need to be changed to this:

      "authors": [
        "M Berriman",
        "BJ Haas",
        "PT LoVerde"
      ],