scienceai / scholarly.vernacular.io

A vernacular of HTML for scholarly publishing
http://scholarly.vernacular.io/
Apache License 2.0
38 stars 10 forks source link

Periodical, Issue, Volume and support for commercial Offering and Paywall #48

Open sballesteros opened 8 years ago

sballesteros commented 8 years ago
{
  "@id": "graphId",
  "@type": "ScholarlyArticle",
  "name": "Preliminary materials for a theory of the young-girl",
  "isPartOf": {
    "@id": "issueId",
    "@type": "PublicationIssue",
    "issueNumber": 10,
    "isPartOf": {
      "@id": "volumeId",
      "@type": "PublicationVolume",
      "volumeNumber": 2,
      "isPartOf": {
        "@id": "periodicalId",
        "@type": "Periodical",
        "name": "Tiqqun"
      }
    }
  },
  "potentialAction": {
    "@type": "ReadAction",
    "expectsAcceptanceOf": {
      "@type": "Offer",
      "potentialAction": {
        "@type": "PayAction",
        "price": "100USD"
      }
    }
  }
}

Note: a manuscript in progress (pre-print) aiming to be published somewhere can be model as:

{
  "@id": "graphId",
  "@type": "ScholarlyArticle",
  "name": "Preliminary materials for a theory of the young-girl",
  "potentialAction": {
    "@type": "AddAction",
    "targetCollection": {
      "@id": "issueId",
      "@type": "PublicationIssue",
      "issueNumber": 10,
      "isPartOf": {
        "@id": "volumeId",
        "@type": "PublicationVolume",
        "volumeNumber": 2,
        "isPartOf": {
          "@id": "periodicalId",
          "@type": "Periodical",
          "name": "Tiqqun"
        }
      }
    }
  }
}