{
  "service": "faraday",
  "displayName": "Faraday",
  "categories": [
    "AI",
    "Data"
  ],
  "authTypes": [
    "api_key"
  ],
  "auth": [
    {
      "type": "api_key",
      "label": "API Key",
      "placeholder": "FARADAY_API_KEY",
      "description": "Faraday API key used with the Authorization Bearer header. Create or manage API keys after signing in to Faraday: https://app.faraday.ai."
    }
  ],
  "homepageUrl": "https://faraday.ai",
  "actions": [
    {
      "id": "faraday.get_account",
      "service": "faraday",
      "name": "get_account",
      "description": "Retrieve a Faraday account by ID.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "account_id": {
            "type": "string",
            "minLength": 1,
            "description": "The Faraday account ID to retrieve."
          }
        },
        "additionalProperties": false,
        "required": [
          "account_id"
        ],
        "description": "Input payload for retrieving a Faraday account."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "account": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday account resource."
          },
          "raw": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday account resource."
          }
        },
        "additionalProperties": false,
        "required": [
          "account",
          "raw"
        ],
        "description": "The Faraday account response."
      }
    },
    {
      "id": "faraday.get_current_account",
      "service": "faraday",
      "name": "get_current_account",
      "description": "Retrieve the Faraday account identified by the API key.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "Input payload for this Faraday action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "account": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday account resource."
          },
          "raw": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday account resource."
          }
        },
        "additionalProperties": false,
        "required": [
          "account",
          "raw"
        ],
        "description": "The Faraday current account response."
      }
    },
    {
      "id": "faraday.get_dataset",
      "service": "faraday",
      "name": "get_dataset",
      "description": "Retrieve a Faraday dataset by ID.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "dataset_id": {
            "type": "string",
            "minLength": 1,
            "description": "The Faraday dataset ID to retrieve."
          }
        },
        "additionalProperties": false,
        "required": [
          "dataset_id"
        ],
        "description": "Input payload for retrieving a Faraday dataset."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "dataset": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday dataset resource."
          },
          "raw": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday dataset resource."
          }
        },
        "additionalProperties": false,
        "required": [
          "dataset",
          "raw"
        ],
        "description": "The Faraday dataset response."
      }
    },
    {
      "id": "faraday.get_scope",
      "service": "faraday",
      "name": "get_scope",
      "description": "Retrieve a Faraday scope by ID.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "scope_id": {
            "type": "string",
            "minLength": 1,
            "description": "The Faraday scope ID to retrieve."
          }
        },
        "additionalProperties": false,
        "required": [
          "scope_id"
        ],
        "description": "Input payload for retrieving a Faraday scope."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "scope": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday scope resource."
          },
          "raw": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday scope resource."
          }
        },
        "additionalProperties": false,
        "required": [
          "scope",
          "raw"
        ],
        "description": "The Faraday scope response."
      }
    },
    {
      "id": "faraday.get_target",
      "service": "faraday",
      "name": "get_target",
      "description": "Retrieve a Faraday target by ID.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "target_id": {
            "type": "string",
            "minLength": 1,
            "description": "The Faraday target ID to retrieve."
          }
        },
        "additionalProperties": false,
        "required": [
          "target_id"
        ],
        "description": "Input payload for retrieving a Faraday target."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "target": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday target resource."
          },
          "raw": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday target resource."
          }
        },
        "additionalProperties": false,
        "required": [
          "target",
          "raw"
        ],
        "description": "The Faraday target response."
      }
    },
    {
      "id": "faraday.get_trait",
      "service": "faraday",
      "name": "get_trait",
      "description": "Retrieve a Faraday trait by ID.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "trait_id": {
            "type": "string",
            "minLength": 1,
            "description": "The Faraday trait ID to retrieve."
          }
        },
        "additionalProperties": false,
        "required": [
          "trait_id"
        ],
        "description": "Input payload for retrieving a Faraday trait."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "trait": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday trait resource."
          },
          "raw": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The Faraday resource ID when returned."
              },
              "name": {
                "type": "string",
                "description": "The Faraday resource name when returned."
              },
              "resource_type": {
                "type": "string",
                "description": "The Faraday resource type when returned."
              },
              "status": {
                "type": "string",
                "description": "The Faraday resource status when returned."
              },
              "created_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was created."
              },
              "updated_at": {
                "type": "string",
                "description": "The timestamp when the Faraday resource was last updated."
              }
            },
            "additionalProperties": true,
            "description": "A Faraday trait resource."
          }
        },
        "additionalProperties": false,
        "required": [
          "trait",
          "raw"
        ],
        "description": "The Faraday trait response."
      }
    },
    {
      "id": "faraday.list_accounts",
      "service": "faraday",
      "name": "list_accounts",
      "description": "List Faraday accounts controlled by the API key.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "Input payload for this Faraday action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "accounts": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The Faraday resource ID when returned."
                },
                "name": {
                  "type": "string",
                  "description": "The Faraday resource name when returned."
                },
                "resource_type": {
                  "type": "string",
                  "description": "The Faraday resource type when returned."
                },
                "status": {
                  "type": "string",
                  "description": "The Faraday resource status when returned."
                },
                "created_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was created."
                },
                "updated_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was last updated."
                }
              },
              "additionalProperties": true,
              "description": "A Faraday account resource."
            },
            "description": "The Faraday account resources returned by the API."
          },
          "raw": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The Faraday resource ID when returned."
                },
                "name": {
                  "type": "string",
                  "description": "The Faraday resource name when returned."
                },
                "resource_type": {
                  "type": "string",
                  "description": "The Faraday resource type when returned."
                },
                "status": {
                  "type": "string",
                  "description": "The Faraday resource status when returned."
                },
                "created_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was created."
                },
                "updated_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was last updated."
                }
              },
              "additionalProperties": true,
              "description": "A Faraday account resource."
            },
            "description": "The raw Faraday account array returned by the API."
          }
        },
        "additionalProperties": false,
        "required": [
          "accounts",
          "raw"
        ],
        "description": "The Faraday account list response."
      }
    },
    {
      "id": "faraday.list_datasets",
      "service": "faraday",
      "name": "list_datasets",
      "description": "List Faraday datasets available in the account.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "Input payload for this Faraday action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "datasets": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The Faraday resource ID when returned."
                },
                "name": {
                  "type": "string",
                  "description": "The Faraday resource name when returned."
                },
                "resource_type": {
                  "type": "string",
                  "description": "The Faraday resource type when returned."
                },
                "status": {
                  "type": "string",
                  "description": "The Faraday resource status when returned."
                },
                "created_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was created."
                },
                "updated_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was last updated."
                }
              },
              "additionalProperties": true,
              "description": "A Faraday dataset resource."
            },
            "description": "The Faraday dataset resources returned by the API."
          },
          "raw": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The Faraday resource ID when returned."
                },
                "name": {
                  "type": "string",
                  "description": "The Faraday resource name when returned."
                },
                "resource_type": {
                  "type": "string",
                  "description": "The Faraday resource type when returned."
                },
                "status": {
                  "type": "string",
                  "description": "The Faraday resource status when returned."
                },
                "created_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was created."
                },
                "updated_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was last updated."
                }
              },
              "additionalProperties": true,
              "description": "A Faraday dataset resource."
            },
            "description": "The raw Faraday dataset array returned by the API."
          }
        },
        "additionalProperties": false,
        "required": [
          "datasets",
          "raw"
        ],
        "description": "The Faraday dataset list response."
      }
    },
    {
      "id": "faraday.list_scopes",
      "service": "faraday",
      "name": "list_scopes",
      "description": "List Faraday scopes defined on the account.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "Input payload for this Faraday action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "scopes": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The Faraday resource ID when returned."
                },
                "name": {
                  "type": "string",
                  "description": "The Faraday resource name when returned."
                },
                "resource_type": {
                  "type": "string",
                  "description": "The Faraday resource type when returned."
                },
                "status": {
                  "type": "string",
                  "description": "The Faraday resource status when returned."
                },
                "created_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was created."
                },
                "updated_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was last updated."
                }
              },
              "additionalProperties": true,
              "description": "A Faraday scope resource."
            },
            "description": "The Faraday scope resources returned by the API."
          },
          "raw": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The Faraday resource ID when returned."
                },
                "name": {
                  "type": "string",
                  "description": "The Faraday resource name when returned."
                },
                "resource_type": {
                  "type": "string",
                  "description": "The Faraday resource type when returned."
                },
                "status": {
                  "type": "string",
                  "description": "The Faraday resource status when returned."
                },
                "created_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was created."
                },
                "updated_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was last updated."
                }
              },
              "additionalProperties": true,
              "description": "A Faraday scope resource."
            },
            "description": "The raw Faraday scope array returned by the API."
          }
        },
        "additionalProperties": false,
        "required": [
          "scopes",
          "raw"
        ],
        "description": "The Faraday scope list response."
      }
    },
    {
      "id": "faraday.list_targets",
      "service": "faraday",
      "name": "list_targets",
      "description": "List Faraday targets defined on the account.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "Input payload for this Faraday action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "targets": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The Faraday resource ID when returned."
                },
                "name": {
                  "type": "string",
                  "description": "The Faraday resource name when returned."
                },
                "resource_type": {
                  "type": "string",
                  "description": "The Faraday resource type when returned."
                },
                "status": {
                  "type": "string",
                  "description": "The Faraday resource status when returned."
                },
                "created_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was created."
                },
                "updated_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was last updated."
                }
              },
              "additionalProperties": true,
              "description": "A Faraday target resource."
            },
            "description": "The Faraday target resources returned by the API."
          },
          "raw": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The Faraday resource ID when returned."
                },
                "name": {
                  "type": "string",
                  "description": "The Faraday resource name when returned."
                },
                "resource_type": {
                  "type": "string",
                  "description": "The Faraday resource type when returned."
                },
                "status": {
                  "type": "string",
                  "description": "The Faraday resource status when returned."
                },
                "created_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was created."
                },
                "updated_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was last updated."
                }
              },
              "additionalProperties": true,
              "description": "A Faraday target resource."
            },
            "description": "The raw Faraday target array returned by the API."
          }
        },
        "additionalProperties": false,
        "required": [
          "targets",
          "raw"
        ],
        "description": "The Faraday target list response."
      }
    },
    {
      "id": "faraday.list_traits",
      "service": "faraday",
      "name": "list_traits",
      "description": "List user-defined and Faraday-provided traits.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "Input payload for this Faraday action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "traits": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The Faraday resource ID when returned."
                },
                "name": {
                  "type": "string",
                  "description": "The Faraday resource name when returned."
                },
                "resource_type": {
                  "type": "string",
                  "description": "The Faraday resource type when returned."
                },
                "status": {
                  "type": "string",
                  "description": "The Faraday resource status when returned."
                },
                "created_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was created."
                },
                "updated_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was last updated."
                }
              },
              "additionalProperties": true,
              "description": "A Faraday trait resource."
            },
            "description": "The Faraday trait resources returned by the API."
          },
          "raw": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The Faraday resource ID when returned."
                },
                "name": {
                  "type": "string",
                  "description": "The Faraday resource name when returned."
                },
                "resource_type": {
                  "type": "string",
                  "description": "The Faraday resource type when returned."
                },
                "status": {
                  "type": "string",
                  "description": "The Faraday resource status when returned."
                },
                "created_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was created."
                },
                "updated_at": {
                  "type": "string",
                  "description": "The timestamp when the Faraday resource was last updated."
                }
              },
              "additionalProperties": true,
              "description": "A Faraday trait resource."
            },
            "description": "The raw Faraday trait array returned by the API."
          }
        },
        "additionalProperties": false,
        "required": [
          "traits",
          "raw"
        ],
        "description": "The Faraday trait list response."
      }
    },
    {
      "id": "faraday.list_usages",
      "service": "faraday",
      "name": "list_usages",
      "description": "List Faraday usage statistics for the account.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "Input payload for this Faraday action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "usages": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string",
                  "description": "The usage metric name."
                },
                "description": {
                  "type": "string",
                  "description": "The usage metric description."
                },
                "usage": {
                  "type": "number",
                  "description": "The current usage value."
                },
                "limit": {
                  "type": "number",
                  "description": "The usage limit value when Faraday returns one."
                }
              },
              "additionalProperties": true,
              "description": "One Faraday usage metric returned by the API."
            },
            "description": "The Faraday usage metrics returned by the API."
          },
          "raw": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string",
                  "description": "The usage metric name."
                },
                "description": {
                  "type": "string",
                  "description": "The usage metric description."
                },
                "usage": {
                  "type": "number",
                  "description": "The current usage value."
                },
                "limit": {
                  "type": "number",
                  "description": "The usage limit value when Faraday returns one."
                }
              },
              "additionalProperties": true,
              "description": "One Faraday usage metric returned by the API."
            },
            "description": "The raw Faraday usage array returned by the API."
          }
        },
        "additionalProperties": false,
        "required": [
          "usages",
          "raw"
        ],
        "description": "The Faraday usage list response."
      }
    }
  ]
}
