addedInput schema / properties / include_all_colocated_pubmed
Added value: +{
+ "default": false,
+ "description": "When true, return every PubMed ID for each colocated variant, overriding max_pubmed_ids_per_variant. Default false to keep responses compact.",
+ "type": "boolean"
+}
addedInput schema / properties / max_pubmed_ids_per_variant
Added value: +{
+ "default": 10,
+ "description": "Maximum PubMed IDs to return per colocated known variant. Well-studied variants (e.g. rs334) cite 100+ papers; the default trims each list. Set to 0 to return every PubMed ID uncapped. pubmedTotal on each colocated variant reports the true pre-cap count. Ignored when include_all_colocated_pubmed is true.",
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+}
addedInput schema / properties / max_transcript_consequences
Added value: +{
+ "default": 10,
+ "description": "Maximum transcript consequences to return per VEP record. High-impact variants can affect 60+ transcripts; the default keeps the response focused on the top consequences. Set to 0 to return every transcript consequence uncapped. transcriptConsequencesTotal on each record always reports the true pre-cap count.",
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+}
addedOutput schema / properties / cap
Added value: +{
+ "description": "The max_transcript_consequences limit applied.",
+ "type": "number"
+}
changedOutput schema / properties / notice / description
Previous value: -"Guidance when no results are returned."New value: +"Guidance when no results are returned or when caps omitted detail."
changedOutput schema / properties / results / items / properties / colocatedVariants / items / properties / pubmed / description
Previous value: -"PubMed IDs for literature associated with this variant."New value: +"PubMed IDs for literature associated with this variant, capped to max_pubmed_ids_per_variant. pubmedTotal reports the full count when the list was capped."
addedOutput schema / properties / results / items / properties / colocatedVariants / items / properties / pubmedTotal
Added value: +{
+ "description": "Total PubMed IDs available for this variant before the max_pubmed_ids_per_variant cap. Equals the returned pubmed length when the list was not capped.",
+ "type": "number"
+}
changedOutput schema / properties / results / items / properties / transcriptConsequences / description
Previous value: -"Per-transcript consequence details. High-impact variants may affect many transcripts; focus on canonical transcripts (isCanonical from ensembl_lookup_gene) for primary effect."New value: +"Per-transcript consequence details, capped to max_transcript_consequences. High-impact variants may affect many transcripts; focus on canonical transcripts (isCanonical from ensembl_lookup_gene) for primary effect. transcriptConsequencesTotal reports the full count."
addedOutput schema / properties / results / items / properties / transcriptConsequencesTotal
Added value: +{
+ "description": "Total transcript consequences available before the max_transcript_consequences cap. Equals the returned transcriptConsequences length when not capped.",
+ "type": "number"
+}
addedOutput schema / properties / shown
Added value: +{
+ "description": "Total transcript consequences returned across all records after the cap.",
+ "type": "number"
+}
addedOutput schema / properties / truncated
Added value: +{
+ "description": "True when transcript consequences were capped at max_transcript_consequences.",
+ "type": "boolean"
+}