addedInput schema / properties / environment / properties / values / items / anyOf
Added value: +[
+ {
+ "additionalProperties": false,
+ "description": "Information about the variable.",
+ "properties": {
+ "description": {
+ "description": "The variable's description.",
+ "maxLength": 512,
+ "type": "string"
+ },
+ "enabled": {
+ "description": "If true, the variable is enabled.",
+ "type": "boolean"
+ },
+ "key": {
+ "description": "The variable's name.",
+ "type": "string"
+ },
+ "type": {
+ "description": "The variable's type:\n- `secret` — The variable value is masked.\n- `default` — The variable value is visible in plain text.\n",
+ "enum": [
+ "secret",
+ "default"
+ ],
+ "type": "string"
+ },
+ "value": {
+ "description": "The variable's value.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "description": "Information about the variable stored in the Postman Vault. This property only returns when a variable is defined as secret.",
+ "properties": {
+ "description": {
+ "description": "The variable's description.",
+ "maxLength": 512,
+ "type": "string"
+ },
+ "enabled": {
+ "description": "If true, the variable is enabled.",
+ "type": "boolean"
+ },
+ "key": {
+ "description": "The variable's name.",
+ "type": "string"
+ },
+ "secret": {
+ "description": "If true, the variable is marked as secret and its value is retrieved from the mentioned provider in the source field.",
+ "type": "boolean"
+ },
+ "source": {
+ "additionalProperties": false,
+ "description": "Information about the source of the variable's value.",
+ "properties": {
+ "postman": {
+ "additionalProperties": false,
+ "description": "Information about the Postman-specific source of the variable's value.",
+ "properties": {
+ "secretId": {
+ "description": "The variable's secret ID.",
+ "type": "string"
+ },
+ "type": {
+ "const": "cloud",
+ "description": "The variable's type:\n- `cloud` — The variable value is synced and stored in the Postman Cloud.\n",
+ "type": "string"
+ },
+ "vaultId": {
+ "description": "The variable's ID in the Postman Vault.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "provider": {
+ "const": "postman",
+ "description": "The secret's provider.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": {
+ "description": "The variable's type:\n- `secret` — The variable value is masked.\n- `default` — The variable value is visible in plain text.\n",
+ "enum": [
+ "secret",
+ "default"
+ ],
+ "type": "string"
+ },
+ "value": {
+ "description": "The variable's value.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+]
removedInput schema / properties / environment / properties / values / items / properties
Removed value: -{
- "description": {
- "description": "The variable's description.",
- "maxLength": 512,
- "type": "string"
- },
- "enabled": {
- "description": "If true, the variable is enabled.",
- "type": "boolean"
- },
- "key": {
- "description": "The variable's name.",
- "type": "string"
- },
- "type": {
- "description": "The variable's type:\n- `secret` — The variable value is masked.\n- `default` — The variable value is visible in plain text.\n",
- "enum": [
- "secret",
- "default"
- ],
- "type": "string"
- },
- "value": {
- "description": "The variable's value.",
- "type": "string"
- }
-}