Input for creating an association label
{ "type": "object", "description": "Input for creating an association label", "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" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CreateLabelInput" }