{ "$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" }