science-periodicals / ontology

:mortar_board: sci.pe (science periodicals) extension of schema:ScholarlyArticle to describe the production process, content, distribution and preservation of scholarly articles (and similar artifacts).
http://ns.sci.pe
Apache License 2.0
4 stars 0 forks source link

Author notes, Disclosure Statements, Acknowledgment Statements #19

Closed sballesteros closed 8 years ago

sballesteros commented 8 years ago
{
  "@id": "http://example.com/article",
  "@type": "schema:ScholarlyArticle",

  "author": {
    "@type": "ContributorRole", // the persona (as opposed to the person)

    "author": {
      "@id": "http://example.com/peter",
      "@type": "schema:Person",
      // the person affiliations (non specific to the work)
      "affiliation": [
        {
          "@id": "http://www.princeton.edu",
          "@type": "CollegeOrUniversity"
        },
        {
          "@id": "http://www.harvard.edu/",
          "@type": "CollegeOrUniversity"
        }
      ]
    },

    // the persona  affiliations (specific to the work)
    "roleAffiliation": {
      "@id": "http://www.princeton.edu",
      "@type": "CollegeOrUniversity"
    },

    // the persona sponsor
    "sponsor": {
      "@type": "SponsorRole",
      "sponsor": {
        "@type": "Organization"
      },
      "roleOffer": {
        "@type": "FundingSource",
        "serialNumber": "grantId"
      },
      "startDate": "2015-01-01"
    },

    // comments on the persona (Author notes, Disclosure Statements, Acknowledgment Statements)
    "roleComment": [
      {
        "@type": "Comment",
        "text": "senior author on this work"
        "about": {
          "@type": "CreateAction"
        }
      },

      {
        "@type": "Comment",
        "text": "wrote the article"
        "about": {
          "@type": "WriteAction"
        }
      },

      {
        "@type": "DisclosureStatement",
        "text": "received personal fees for consulting for: Pfizer Inc - New York, NY, USA.",
        "about": {
          "@type": "PayAction",
          "agent": {
            "@type": "Corporation",
            "name": "Pfizer"
          }
        }
      },

      {
        "@type": "AcknowledgementStatement",
        "text": "acknowledge the proofreading work of: Bush, Vannevar \"Vannevar Bush\""
        "about": {
          "@type": "ReadAction"
          "agent": {
            "@type": "Person",
            "name": "Vannevar Bush"
          }
        }
      }
    ]
  },

  // Funding for the work itself
  "sponsor": {
    "@type": "SponsorRole",
    "sponsor": {
      "@type": "Organization"
    },
    "roleOffer": {
      "@type": "FundingSource",
      "serialNumber": "grantId"
    },
    "startDate": "2015-01-01"
  }

}