changedInput schema / properties / format / anyOf
Previous value: -[
- {
- "description": "Single citation style. One of: apa, mla, bibtex, ris.",
- "enum": [
- "apa",
- "mla",
- "bibtex",
- "ris"
- ],
- "type": "string"
- },
- {
- "description": "Multiple citation styles to generate. Each entry: apa, mla, bibtex, or ris.",
- "items": {
- "enum": [
- "apa",
- "mla",
- "bibtex",
- "ris"
- ],
- "type": "string"
- },
- "minItems": 1,
- "type": "array"
- }
-]New value: +[
+ {
+ "description": "Single citation style. One of: apa, mla, bibtex, ris, vancouver.",
+ "enum": [
+ "apa",
+ "mla",
+ "bibtex",
+ "ris",
+ "vancouver"
+ ],
+ "type": "string"
+ },
+ {
+ "description": "Multiple citation styles to generate. Each entry: apa, mla, bibtex, ris, or vancouver.",
+ "items": {
+ "enum": [
+ "apa",
+ "mla",
+ "bibtex",
+ "ris",
+ "vancouver"
+ ],
+ "type": "string"
+ },
+ "minItems": 1,
+ "type": "array"
+ }
+]
changedInput schema / properties / format / description
Previous value: -"Citation format(s) to generate — single style as a string or multiple as an array. Allowed values: apa, mla, bibtex, ris."New value: +"Citation format(s) to generate — single style as a string or multiple as an array. Allowed values: apa, mla, bibtex, ris, vancouver."