Share via

How Structured data & Semi structured data differ

Makhubela Trinity Shongi 0 Reputation points
2026-05-16T21:43:30.17+00:00

Are Social media users and followers in a graph database structured data or semi structured data?

Azure | Azure Training
0 comments No comments

Answer accepted by question author

  1. Q&A Assist
    2026-05-16T21:43:42.7233333+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    In a graph database, social media users and followers are modeled as structured data.

    Reasoning:

    • A graph database uses a well-defined data model: nodes (entities), edges (relationships), and properties (key-value pairs).
    • In a social network graph:
      • Each user is typically a node (for example, a Person node with properties like firstName, lastName, age).
      • The follower/following relationship is an edge (for example, FRIENDS_WITH or FOLLOWS) connecting two user nodes, possibly with properties (such as since date).
    • This is a structured representation because the types of nodes, edges, and properties follow a consistent schema or schema-optional model, even if not all properties are present on every node.

    Semi-structured data, by contrast, is typically represented in formats like JSON, where fields can vary between records and the schema is not strictly enforced by the storage engine. Graph databases can ingest semi-structured sources, but once data is stored as nodes and edges with properties, it is treated as structured graph data.


    References:

    Was this answer helpful?

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.