{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RemoteFieldClass", "title": "RemoteFieldClass", "type": "object", "properties": { "id": { "type": "string" }, "display_name": { "type": "string" }, "remote_key_name": { "type": "string" }, "description": { "type": "string" }, "is_custom": { "type": "boolean" }, "is_common_model_field": { "type": "boolean" }, "is_required": { "type": "boolean" }, "field_type": { "$ref": "#/components/schemas/FieldTypeEnum" }, "field_format": { "$ref": "#/components/schemas/FieldFormatEnum" }, "field_choices": { "type": "array", "items": { "type": "string" } }, "item_schema": { "$ref": "#/components/schemas/ItemSchema" } } }