Skip to content

Commit e3530cb

Browse files
committed
add more docs and a newline
1 parent 6e434b5 commit e3530cb

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

schemas-core/src/main/resources/avro/psi/parsedRecordWithId.avsc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,17 @@
22
"type": "record",
33
"namespace": "org.cedar.schemas.avro.psi",
44
"name": "ParsedRecordWithId",
5-
"doc": "A wrapper to tie a ParsedRecord together with its ID",
5+
"doc": "A wrapper to tie a ParsedRecord together with an ID",
66
"fields": [
77
{
88
"name": "id",
9-
"type": "string"
9+
"type": "string",
10+
"doc": "The id string to be associated with the record"
1011
},
1112
{
1213
"name": "record",
13-
"type": "ParsedRecord"
14+
"type": "ParsedRecord",
15+
"doc": "The ParsedRecord object to be associated with the id"
1416
}
1517
]
16-
}
18+
}

0 commit comments

Comments
 (0)