Skip to content

data_entity

DataEntity

Represents a simplified version of a data entity for serialization purposes.

Source code in exe_kg_lib/classes/exe_kg_serialization/data_entity.py
 5
 6
 7
 8
 9
10
11
12
13
14
class DataEntity:
    """
    Represents a simplified version of a data entity for serialization purposes.
    """

    def __init__(self, name: str = "", source: str = "", data_semantics: str = "", data_structure: str = ""):
        self.name = name
        self.source = source
        self.data_semantics = data_semantics
        self.data_structure = data_structure