:py:mod:`json2graph.decoder.decode_obj_path` ============================================ .. py:module:: json2graph.decoder.decode_obj_path .. autoapi-nested-parse:: Functions to decode specificities of the object Path. Function's nomenclatures: - Functions that set one property are named: set___. - Functions that set multiple object properties are named: set__relations. - Functions that set multiple data properties are named: set__attributes. - Functions that set both object and data properties are named: set__properties. - Functions that set default values: set__defaults. Module Contents --------------- Functions ~~~~~~~~~ .. autoapisummary:: json2graph.decoder.decode_obj_path.set_path_path_point json2graph.decoder.decode_obj_path.create_path_properties .. py:function:: set_path_path_point(path_dict, ontouml_graph) Create an ontouml:Point, their properties and the ontouml:point of an ontouml:Path. :param path_dict: Path object loaded as a dictionary. :type path_dict: dict :param ontouml_graph: Knowledge graph that complies with the OntoUML Vocabulary. :type ontouml_graph: Graph .. py:function:: create_path_properties(json_data, ontouml_graph) Decode an object of type Path. Receives the whole JSON loaded data as a dictionary and manipulates it to create all properties in which the object's type is domain of. Created instances of: - ontouml:Point Created properties: - ontouml:point (range ontouml:Point) :param json_data: JSON's data to have its fields decoded loaded into a dictionary. :type json_data: dict :param ontouml_graph: Knowledge graph that complies with the OntoUML Vocabulary. :type ontouml_graph: Graph