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.
2 parents 5cbebb6 + e3530cb commit e6a0cbeCopy full SHA for e6a0cbe
schemas-core/src/main/resources/avro/psi/parsedRecordWithId.avsc
@@ -0,0 +1,18 @@
1
+{
2
+ "type": "record",
3
+ "namespace": "org.cedar.schemas.avro.psi",
4
+ "name": "ParsedRecordWithId",
5
+ "doc": "A wrapper to tie a ParsedRecord together with an ID",
6
+ "fields": [
7
+ {
8
+ "name": "id",
9
+ "type": "string",
10
+ "doc": "The id string to be associated with the record"
11
+ },
12
13
+ "name": "record",
14
+ "type": "ParsedRecord",
15
+ "doc": "The ParsedRecord object to be associated with the id"
16
+ }
17
+ ]
18
+}
0 commit comments