Sourcedocument.md
Preview
Schema (.avsc)schema.avsc
Preview
Valid
record com.forge.example.User · 4 fields
Fields
| Name | Type | Default |
|---|---|---|
| id | string | — |
| null | string | null | |
| age | int | — |
| role | enum{ADMIN,USER,GUEST} | — |
Formatted JSON
{
"type": "record",
"name": "User",
"namespace": "com.forge.example",
"fields": [
{
"name": "id",
"type": "string"
},
{
"name": "email",
"type": [
"null",
"string"
],
"default": null
},
{
"name": "age",
"type": "int"
},
{
"name": "role",
"type": {
"type": "enum",
"name": "Role",
"symbols": [
"ADMIN",
"USER",
"GUEST"
]
}
}
]
} Schema
Upload an Avro OCF (.avro) file to view its schema and records.
Records
Records will appear here as a table after decoding.