Merge · Schema

AssociationTypeRequestRequest

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
source_object_class object
target_object_classes array
remote_key_name string
display_name string
cardinality object
is_required boolean
View JSON Schema on GitHub

JSON Schema

merge-associationtyperequestrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssociationTypeRequestRequest",
  "title": "AssociationTypeRequestRequest",
  "type": "object",
  "properties": {
    "source_object_class": {
      "$ref": "#/components/schemas/ObjectClassDescriptionRequest"
    },
    "target_object_classes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ObjectClassDescriptionRequest"
      }
    },
    "remote_key_name": {
      "type": "string"
    },
    "display_name": {
      "type": "string"
    },
    "cardinality": {
      "$ref": "#/components/schemas/CardinalityEnum"
    },
    "is_required": {
      "type": "boolean",
      "default": false
    }
  },
  "required": [
    "source_object_class",
    "target_object_classes",
    "remote_key_name"
  ]
}