Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| display_name | string | |
| remote_key_name | string | |
| description | string | |
| is_custom | boolean | |
| is_common_model_field | boolean | |
| is_required | boolean | |
| field_type | object | |
| field_format | object | |
| field_choices | array | |
| item_schema | object |
JSON Schema
{
"$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"
}
}
}