addedOutput schema / properties / appliedFilters
Added value: +{
+ "additionalProperties": false,
+ "description": "Normalized filter values that were applied to the PubMed query",
+ "properties": {
+ "author": {
+ "description": "Author filter applied to the search",
+ "type": "string"
+ },
+ "dateRange": {
+ "additionalProperties": false,
+ "description": "Date range filter applied to the search",
+ "properties": {
+ "dateType": {
+ "description": "Applied date field used for the range filter",
+ "enum": [
+ "pdat",
+ "mdat",
+ "edat"
+ ],
+ "type": "string"
+ },
+ "maxDate": {
+ "description": "Applied maximum date",
+ "type": "string"
+ },
+ "minDate": {
+ "description": "Applied minimum date",
+ "type": "string"
+ }
+ },
+ "required": [
+ "minDate",
+ "maxDate",
+ "dateType"
+ ],
+ "type": "object"
+ },
+ "freeFullText": {
+ "description": "Whether results were restricted to free full-text articles",
+ "type": "boolean"
+ },
+ "hasAbstract": {
+ "description": "Whether results were restricted to articles with abstracts",
+ "type": "boolean"
+ },
+ "journal": {
+ "description": "Journal filter applied to the search",
+ "type": "string"
+ },
+ "language": {
+ "description": "Language filter applied to the search",
+ "type": "string"
+ },
+ "meshTerms": {
+ "description": "MeSH term filters applied to the search",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "publicationTypes": {
+ "description": "Publication type filters applied to the search",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "species": {
+ "description": "Species filter applied to the search",
+ "enum": [
+ "humans",
+ "animals"
+ ],
+ "type": "string"
+ }
+ },
+ "type": "object"
+}
changedOutput schema / required
Previous value: -[
- "query",
- "totalFound",
- "offset",
- "pmids",
- "summaries",
- "searchUrl"
-]New value: +[
+ "query",
+ "effectiveQuery",
+ "appliedFilters",
+ "totalFound",
+ "offset",
+ "pmids",
+ "summaries",
+ "searchUrl"
+]