Code Review
/
policy
/
apex-pdp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
96b6050fb387864e1ae40b2124a0d1b73ecc4c7b
[policy/apex-pdp.git]
/
1
{
2
"namespace": "example.avro",
3
"type": "record",
4
"name": "User",
5
"fields": [
6
{
7
"name": "name",
8
"type": "string"
9
},
10
{
11
"name": "favourite_number",
12
"type": [
13
"null",
14
"int"
15
]
16
},
17
{
18
"name": "favourite_colour",
19
"type": [
20
"null",
21
"string"
22
]
23
},
24
{
25
"name": "favourite_group",
26
"type": ["null", "string"],
27
"default": "null"
28
}
29
]
30
}