changedInput schema / properties / api_id / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / api_id / description
Previous value: -"Filter by API UUID."New value: +"API UUID filters."
addedInput schema / properties / application_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Application UUID filters.",
+ "title": "Application Id"
+}
addedInput schema / properties / created_at_from
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "ISO-8601 lower time bound.",
+ "title": "Created At From"
+}
addedInput schema / properties / created_at_to
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "ISO-8601 upper time bound.",
+ "title": "Created At To"
+}
addedInput schema / properties / credential_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Credential UUID filters.",
+ "title": "Credential Id"
+}
changedInput schema / properties / days / description
Previous value: -"Only records newer than N days."New value: +"Compatibility shortcut: records newer than N days."
changedInput schema / properties / limit / description
Previous value: -"Max records to return."New value: +"Max records."
addedInput schema / properties / offset
Added value: +{
+ "default": 0,
+ "description": "Pagination offset.",
+ "minimum": 0,
+ "title": "Offset",
+ "type": "integer"
+}
addedInput schema / properties / ordering
Added value: +{
+ "anyOf": [
+ {
+ "enum": [
+ "-created_at",
+ "-updated_at"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Usage ordering.",
+ "title": "Ordering"
+}
addedInput schema / properties / perspective
Added value: +{
+ "default": "both",
+ "description": "Billing, actor, or union perspective.",
+ "enum": [
+ "billing",
+ "actor",
+ "both"
+ ],
+ "title": "Perspective",
+ "type": "string"
+}
changedInput schema / properties / status_code / anyOf
Previous value: -[
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "type": "integer"
+ },
+ {
+ "items": {
+ "type": "integer"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / status_code / description
Previous value: -"Filter by HTTP status code, e.g. 200."New value: +"HTTP status filters."