Merge · Schema

Association

# The Association Object ### Description The `Association` record refers to an instance of an Association Type. ### Usage Example TODO

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
created_at string The datetime that this object was created by Merge.
modified_at string The datetime that this object was modified by Merge.
source_object string
target_object string
association_type stringnull The association type the association belongs to.
View JSON Schema on GitHub

JSON Schema

merge-association-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Association",
  "title": "Association",
  "type": "object",
  "properties": {
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The datetime that this object was created by Merge."
    },
    "modified_at": {
      "type": "string",
      "format": "date-time",
      "description": "The datetime that this object was modified by Merge."
    },
    "source_object": {
      "type": "string",
      "format": "uuid"
    },
    "target_object": {
      "type": "string",
      "format": "uuid"
    },
    "association_type": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid",
      "description": "The association type the association belongs to."
    }
  },
  "description": "# The Association Object\n### Description\nThe `Association` record refers to an instance of an Association Type.\n### Usage Example\nTODO"
}