We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e434b5 commit e3530cbCopy full SHA for e3530cb
schemas-core/src/main/resources/avro/psi/parsedRecordWithId.avsc
@@ -2,15 +2,17 @@
2
"type": "record",
3
"namespace": "org.cedar.schemas.avro.psi",
4
"name": "ParsedRecordWithId",
5
- "doc": "A wrapper to tie a ParsedRecord together with its ID",
+ "doc": "A wrapper to tie a ParsedRecord together with an ID",
6
"fields": [
7
{
8
"name": "id",
9
- "type": "string"
+ "type": "string",
10
+ "doc": "The id string to be associated with the record"
11
},
12
13
"name": "record",
- "type": "ParsedRecord"
14
+ "type": "ParsedRecord",
15
+ "doc": "The ParsedRecord object to be associated with the id"
16
}
17
]
-}
18
+}
0 commit comments