changedInput schema / properties / application_id / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / application_id / description
Previous value: -"Filter by application UUID."New value: +"Filter by one or more application UUIDs."
addedInput schema / properties / granted
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Filter owner-issued grants (true) or owner-held credentials (false).",
+ "title": "Granted"
+}
addedInput schema / properties / host
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Filter by one or more credential hosts.",
+ "title": "Host"
+}
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",
+ "-created_at"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Order by creation time.",
+ "title": "Ordering"
+}