Merge · Schema

RemoteEndpointInfo

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
method string
url_path string
field_traversal_path array
View JSON Schema on GitHub

JSON Schema

merge-remoteendpointinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RemoteEndpointInfo",
  "title": "RemoteEndpointInfo",
  "type": "object",
  "properties": {
    "method": {
      "type": "string"
    },
    "url_path": {
      "type": "string"
    },
    "field_traversal_path": {
      "type": "array",
      "items": {
        "description": "Any type"
      }
    }
  },
  "required": [
    "method",
    "url_path",
    "field_traversal_path"
  ]
}