Web of Science APIs · Schema
DocumentSource
Source publication information
ResearchAcademicBibliometricsCitationsScienceScholarly
Properties
| Name | Type | Description |
|---|---|---|
| sourceTitle | string | Title of the source journal or book |
| publishYear | integer | Year of publication |
| publishMonth | string | Month of publication |
| volume | string | Volume number |
| issue | string | Issue number |
| pages | object | |
| articleNumber | string | Article number (for electronic journals) |
| supplement | string | Supplement identifier |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/web-of-science-apis/json-schema/web-of-science-document-source-schema.json",
"title": "DocumentSource",
"description": "Source publication information",
"type": "object",
"properties": {
"sourceTitle": {
"type": "string",
"description": "Title of the source journal or book"
},
"publishYear": {
"type": "integer",
"description": "Year of publication"
},
"publishMonth": {
"type": "string",
"description": "Month of publication"
},
"volume": {
"type": "string",
"description": "Volume number"
},
"issue": {
"type": "string",
"description": "Issue number"
},
"pages": {
"$ref": "#/components/schemas/DocumentPages"
},
"articleNumber": {
"type": "string",
"description": "Article number (for electronic journals)"
},
"supplement": {
"type": "string",
"description": "Supplement identifier"
}
}
}