{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/crm-associations-api-create-label-input-schema.json", "title": "CreateLabelInput", "description": "Input for creating an association label", "type": "object", "properties": { "label": { "type": "string", "description": "Display text for the label", "example": "Example Record" }, "name": { "type": "string", "description": "Internal name for the label", "example": "Example Record" }, "inverseLabel": { "type": "string", "description": "Label for the inverse direction", "example": "Example Record" } }, "required": [ "label", "name" ] }