addedInput schema / properties / allowed_api_ids
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional API UUID allowlist; empty means unrestricted.",
+ "title": "Allowed Api Ids"
+}
changedInput schema / properties / application_id / description
Previous value: -"UUID of the application (subscription) to attach the key to. Required."New value: +"Application UUID."
changedInput schema / properties / confirm / description
Previous value: -"Must be true to actually create the key."New value: +"Must be true to create the credential."
changedInput schema / properties / expired_at / description
Previous value: -"Optional ISO-8601 expiry, e.g. '2026-12-31T00:00:00Z'."New value: +"Optional ISO-8601 expiry."
addedInput schema / properties / for_user_id
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "User ID to authorize; application owners only.",
+ "title": "For User Id"
+}
addedInput schema / properties / host
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional host restriction.",
+ "title": "Host"
+}
changedInput schema / properties / limited_amount / anyOf
Previous value: -[
- {
- "type": "number"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "minimum": 0,
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+]
changedInput schema / properties / limited_amount / description
Previous value: -"Optional spend cap for this key, in Credits."New value: +"Optional spend cap in Credits."
addedInput schema / properties / metadata
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional credential metadata.",
+ "title": "Metadata"
+}
changedInput schema / properties / name / description
Previous value: -"Optional human-readable name for the key."New value: +"Optional human-readable name."