Represents a rating. A rating is a numerical value representing the author's opinion about the rated resource. Ratings can be accompanied by written reviews.
Name | Type | Description | Notes |
---|---|---|---|
id | str | The id of the represented object (entity). | |
created_by | str | The id of the user that created this resource. | [optional] |
created_on | int | The timestamp (in UTC time standard) of the creation of this resource. | [optional] |
last_modified_by | str | The id of the user who modified this resource the last time. | [optional] |
last_modified_on | int | The timestamp (in UTC time standard) of the last modification of this resource. | [optional] |
system | bool | Whether this is a system resource or not. | [optional] |
resource_type | str | The type of this resource, i.e. [Community, Asset, Domain, Attribute, Relation, WorkflowInstance]. | |
rating | float | The value of the rating represented as a floating point number between 0 and 1. | |
review | str | The review attached to the rating. | [optional] |
asset | NamedResourceReferenceImpl |