removedInput schema / oneOf
Removed value: -[
- {
- "properties": {
- "action": {
- "const": "app",
- "type": "string"
- },
- "domain": {
- "description": "Explicit application FQDN substring",
- "type": "string"
- },
- "format": {
- "default": "pretty",
- "description": "Output format style",
- "enum": [
- "pretty",
- "json",
- "table"
- ],
- "type": "string"
- },
- "include_full": {
- "description": "Alias for projection: full",
- "type": "boolean"
- },
- "limit": {
- "default": 10,
- "description": "Max recent deployments to include (default 10, max 50)",
- "maximum": 50,
- "minimum": 1,
- "type": "integer"
- },
- "max_chars": {
- "default": 16000,
- "description": "Maximum characters in text response before truncation",
- "maximum": 100000,
- "minimum": 1000,
- "type": "integer"
- },
- "name": {
- "description": "Explicit application name substring",
- "type": "string"
- },
- "page": {
- "default": 1,
- "description": "Page number for pagination",
- "maximum": 9007199254740991,
- "minimum": 1,
- "type": "integer"
- },
- "per_page": {
- "default": 10,
- "description": "Items per page",
- "maximum": 100,
- "minimum": 1,
- "type": "integer"
- },
- "projection": {
- "default": "summary",
- "description": "Detail projection depth",
- "enum": [
- "summary",
- "full"
- ],
- "type": "string"
- },
- "query": {
- "description": "Fuzzy query string (UUID, name, or FQDN)",
- "type": "string"
- },
- "reveal": {
- "default": false,
- "description": "Reveal sensitive/masked values in full projection (default false — secrets masked as ***)",
- "type": "boolean"
- },
- "uuid": {
- "description": "Explicit application UUID",
- "type": "string"
- }
- },
- "required": [
- "action"
- ],
- "type": "object"
- },
- {
- "properties": {
- "action": {
- "const": "server",
- "type": "string"
- },
- "format": {
- "default": "pretty",
- "description": "Output format style",
- "enum": [
- "pretty",
- "json",
- "table"
- ],
- "type": "string"
- },
- "include_full": {
- "description": "Alias for projection: full",
- "type": "boolean"
- },
- "ip": {
- "description": "Explicit server IP substring",
- "type": "string"
- },
- "max_chars": {
- "default": 16000,
- "description": "Maximum characters in text response before truncation",
- "maximum": 100000,
- "minimum": 1000,
- "type": "integer"
- },
- "name": {
- "description": "Explicit server name substring",
- "type": "string"
- },
- "page": {
- "default": 1,
- "description": "Page number for pagination",
- "maximum": 9007199254740991,
- "minimum": 1,
- "type": "integer"
- },
- "per_page": {
- "default": 10,
- "description": "Items per page",
- "maximum": 100,
- "minimum": 1,
- "type": "integer"
- },
- "projection": {
- "default": "summary",
- "description": "Detail projection depth",
- "enum": [
- "summary",
- "full"
- ],
- "type": "string"
- },
- "query": {
- "description": "Fuzzy query string (UUID, name, or IP)",
- "type": "string"
- },
- "reveal": {
- "default": false,
- "description": "Reveal sensitive/masked values in full projection (default false — secrets masked as ***)",
- "type": "boolean"
- },
- "trigger_validate": {
- "default": true,
- "description": "Triggers non-blocking server verification (D-10)",
- "type": "boolean"
- },
- "uuid": {
- "description": "Explicit server UUID",
- "type": "string"
- }
- },
- "required": [
- "action"
- ],
- "type": "object"
- },
- {
- "properties": {
- "action": {
- "const": "scan",
- "type": "string"
- },
- "format": {
- "default": "pretty",
- "description": "Output format style",
- "enum": [
- "pretty",
- "json",
- "table"
- ],
- "type": "string"
- },
- "include_full": {
- "description": "Alias for projection: full",
- "type": "boolean"
- },
- "max_chars": {
- "default": 16000,
- "description": "Maximum characters in text response before truncation",
- "maximum": 100000,
- "minimum": 1000,
- "type": "integer"
- },
- "page": {
- "default": 1,
- "description": "Page number for pagination",
- "maximum": 9007199254740991,
- "minimum": 1,
- "type": "integer"
- },
- "per_page": {
- "default": 10,
- "description": "Items per page",
- "maximum": 100,
- "minimum": 1,
- "type": "integer"
- },
- "projection": {
- "default": "summary",
- "description": "Detail projection depth",
- "enum": [
- "summary",
- "full"
- ],
- "type": "string"
- },
- "reveal": {
- "default": false,
- "description": "Reveal sensitive/masked values in full projection (default false — secrets masked as ***)",
- "type": "boolean"
- }
- },
- "required": [
- "action"
- ],
- "type": "object"
- }
-]
addedInput schema / properties
Added value: +{
+ "action": {
+ "description": "The action to run",
+ "enum": [
+ "app",
+ "server",
+ "scan"
+ ],
+ "type": "string"
+ },
+ "domain": {
+ "description": "Explicit application FQDN substring",
+ "type": "string"
+ },
+ "format": {
+ "description": "Output format style",
+ "enum": [
+ "pretty",
+ "json",
+ "table"
+ ],
+ "type": "string"
+ },
+ "include_full": {
+ "description": "Alias for projection: full",
+ "type": "boolean"
+ },
+ "instance": {
+ "description": "Coolify instance name from registry (optional — uses env credentials or registry default)",
+ "pattern": "^[a-z][a-z0-9_-]{1,31}$",
+ "type": "string"
+ },
+ "ip": {
+ "description": "Explicit server IP substring",
+ "type": "string"
+ },
+ "limit": {
+ "description": "Max recent deployments to include (default 10, max 50)",
+ "maximum": 50,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "max_chars": {
+ "description": "Maximum characters in text response before truncation",
+ "maximum": 100000,
+ "minimum": 1000,
+ "type": "integer"
+ },
+ "name": {
+ "description": "Explicit name substring",
+ "type": "string"
+ },
+ "page": {
+ "description": "Page number for pagination",
+ "maximum": 9007199254740991,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "per_page": {
+ "description": "Items per page",
+ "maximum": 100,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "projection": {
+ "description": "Detail projection depth",
+ "enum": [
+ "summary",
+ "full"
+ ],
+ "type": "string"
+ },
+ "query": {
+ "description": "Fuzzy query string (UUID, name, or FQDN/IP)",
+ "type": "string"
+ },
+ "reveal": {
+ "description": "Reveal sensitive/masked values in full projection (default false — secrets masked as ***)",
+ "type": "boolean"
+ },
+ "trigger_validate": {
+ "description": "Triggers non-blocking server verification (D-10)",
+ "type": "boolean"
+ },
+ "uuid": {
+ "description": "Explicit resource UUID",
+ "type": "string"
+ }
+}