This visual execution shows how to add example data to a Pydantic schema in FastAPI. First, you define a schema class with fields like name and age. Then, inside the Config class, you add schema_extra with an example dictionary. When you use this schema in a FastAPI endpoint, the example data automatically appears in the generated API documentation. This helps clients see sample input data. The example data is only for docs and does not affect how FastAPI validates incoming requests. The execution table traces each step from defining the schema to the client seeing the example in docs. The variable tracker shows how the example data is stored in the schema. Key moments clarify common confusions about example usage and validation. The quiz tests understanding of when and how example data is attached and used.