Merge · Schema

RemoteFieldRequest

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
remote_field_class string
value object
View JSON Schema on GitHub

JSON Schema

merge-remotefieldrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RemoteFieldRequest",
  "title": "RemoteFieldRequest",
  "type": "object",
  "properties": {
    "remote_field_class": {
      "type": "string",
      "format": "uuid"
    },
    "value": {
      "type": "object",
      "additionalProperties": {
        "description": "Any type"
      }
    }
  },
  "required": [
    "remote_field_class"
  ]
}