highbond_entity (Resource)
Schema
Required
| title | String | The title of the entity | 
Optional
| child_entity_id | List of String | The IDs of the childern entity | 
| description | String | A detailed description of the entity. | 
| entity_category_id | String | The ID of the category | 
| force_updates | Boolean | Allows overriding top-level 'create_only' option. | 
| id | String | The ID of this resource. | 
| parent_entity_id | String | The ID of the parent entity | 
Read-Only
| children_count | Number | A count of entity children | 
| created_at | String | The timestamp identifying when the entity was created | 
| updated_at | String | The timestamp identifying when the entity was last updated | 
Example Usage
resource "highbond_entity" "main" {
  title              = "New entity_10"
  parent_entity_id   = "48280"
  entity_category_id = highbond_entity_category.main.id
  child_entity_id    = ["35499"]
  force_updates      = true // Create only with force update changes
}
