PropertyValueSuggestion
The definition of an automatic value.
| Name | Description | Type |
|---|---|---|
property_definition_id | The property definition ID. | number |
value | The typed value. | TypedValue |
display_value | Display value for the suggestion. Can be empty. | string |
confidence | The projected quality of the suggestion. | number |
is_fact | True if the suggestion is a fact (i.e. known to be valid for sure). | boolean |
is_new_value_list_item | True if the suggestion depicts a new value for value lists. | boolean |
new_value_list_item_property_suggestions | Suggestions that should be used when new object is created with this suggestion. | PropertyValueSuggestion[] |
reason | Rationale explaining why the suggestion is being made. Can be empty. | string |
Example
{
"property_definition_id": 0,
"value": {
"is_null_value": false,
"type": 15 /* Enum: Datatype */,
"data": {
"acl": {
"checked_out_to_user": 0,
"is_fully_authoritative": false,
"custom_component": {
"named_acl_id": 0,
"has_named_acl": false,
"current_user_id": 0,
"has_current_user": false,
"permissions": [] /* Array of AccessControlEntry */,
"overridability_permissions": [] /* Array of AccessControlEntry */,
"status": {
"all": false,
"deleted": false,
"source_item_linked_via_pseudo_users": false
}
},
"restrictive_components": [] /* Array of AccessControlListComponentMapEntry */,
"secondary_access_control_list": {} /* AccessControlList */,
"additive_components": [] /* Array of AccessControlListComponentMapEntry */
}
}
},
"display_value": "<display value>",
"confidence": 0,
"is_fact": false,
"is_new_value_list_item": false,
"new_value_list_item_property_suggestions": [] /* Array of PropertyValueSuggestion */,
"reason": "<reason>"
}