addedInput schema / properties / affiliation
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "enum": [
+ "owner",
+ "granted"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Filter applications owned by or granted to the caller.",
+ "title": "Affiliation"
+}
addedInput schema / properties / application_type
Added value: +{
+ "anyOf": [
+ {
+ "enum": [
+ "Usage",
+ "Period"
+ ],
+ "type": "string"
+ },
+ {
+ "items": {
+ "enum": [
+ "Usage",
+ "Period"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Filter by Usage or Period application type.",
+ "title": "Application Type"
+}
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"
+}
changedInput schema / properties / scope / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "enum": [
+ "Individual",
+ "Global"
+ ],
+ "type": "string"
+ },
+ {
+ "items": {
+ "enum": [
+ "Individual",
+ "Global"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / scope / description
Previous value: -"Filter by scope: 'Individual' or 'Global'."New value: +"Filter by Individual or Global scope."
changedInput schema / properties / service_id / anyOf
Previous value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "type": "string"
+ },
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / service_id / description
Previous value: -"Filter by service UUID."New value: +"Filter by one or more service UUIDs."