changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "type": "string"
+ },
+ "executionBackend": {
+ "type": "string"
+ },
+ "inputSchema": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "minimumAbilityVersion": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "operationType": {
+ "enum": [
+ "read",
+ "write"
+ ],
+ "type": "string"
+ },
+ "outputSchema": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "pricingSummary": {
+ "additionalProperties": false,
+ "properties": {
+ "label": {
+ "type": "string"
+ },
+ "maxCreditsPerCall": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "minCreditsPerCall": {
+ "minimum": 0,
+ "type": "number"
+ },
+ "type": {
+ "enum": [
+ "flat_rate",
+ "dynamic",
+ "mixed"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "label"
+ ],
+ "type": "object"
+ },
+ "requiredBundleId": {
+ "type": "string"
+ },
+ "requiredIntegrations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "riskLevel": {
+ "maximum": 5,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "sourceCode": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "description",
+ "type",
+ "requiredIntegrations"
+ ],
+ "type": "object"
+}