/* Source File: baselineEntityRelationship.json Copyright (c) 2023 GraphLogic Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . Description: This JSON object represents a graph-based entity in GraphLogic's open source model. Link: https://www.graphlogic.com/open-source - The "lifecycle_status" property indicates the status of the entity (active or inactive). - An entity can be marked as "inactive" to retain its data without deletion. */ { "entity": { "id": "entity_id", "type": "entity_type", "name": "Entity Name", "description": "Description of the entity", "created_at": "2024-01-16T14:30:00Z", "updated_at": "2024-01-16T14:45:00Z", "created_by": "User123", "updated_by": "User456", "tags": ["tag1", "tag2"], "properties": { "property1": "value1", "property2": "value2" }, "lifecycle_status": "active", "relationships": [ { "relationship_type": "related_to", "related_entity_id": "related_entity_id", "lifecycle_status": "active" } ] } }