{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateTargetFieldRequest", "title": "CreateTargetFieldRequest", "type": "object", "properties": { "name": { "type": "string", "description": "The name of the target field." }, "description": { "type": "string", "default": "", "description": "The description of the target field." }, "common_model": { "type": "string", "description": "The name of the Common Model to associate the target field with." } }, "required": [ "name", "common_model" ] }