addedInput schema / properties / application_id / anyOf
Added value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / application_id / default
Added value: +null
changedInput schema / properties / application_id / description
Previous value: -"UUID of the application to recharge. Required."New value: +"Single application UUID."
removedInput schema / properties / application_id / type
Removed value: -"string"
addedInput schema / properties / application_ids
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Batch application UUIDs.",
+ "title": "Application Ids"
+}
changedInput schema / properties / confirm / description
Previous value: -"Must be true to actually create the order."New value: +"Must be true to create the order."
addedInput schema / properties / description
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional order description.",
+ "title": "Description"
+}
addedInput schema / properties / metadata
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional order metadata.",
+ "title": "Metadata"
+}
addedInput schema / properties / package_id / anyOf
Added value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / package_id / default
Added value: +null
changedInput schema / properties / package_id / description
Previous value: -"UUID of the package (quota bundle) to buy. Required."New value: +"Single package UUID."
removedInput schema / properties / package_id / type
Removed value: -"string"
addedInput schema / properties / package_ids
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Batch package UUIDs in matching order.",
+ "title": "Package Ids"
+}
addedInput schema / properties / scope
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional order scope.",
+ "title": "Scope"
+}
removedInput schema / required
Removed value: -[
- "application_id",
- "package_id"
-]