Моя схема AVRO имеет запись fileObject
, но мне нужно изменить это на массив fileObject
. Как я могу это сделать?
{
"name": "file",
"type": ["null", {
"type": "record",
"name": "FileObject",
"doc": "file object",
"fields": [{
"name": "fileUrl",
"type": ["null", "string"],
"doc": "url of the file"
},
{
"name": "spId",
"type": ["null", "string"],
"doc": "space id"
},
{
"name": "contentId",
"type": ["null", "string"],
"doc": "content id of the file"
},
{
"name": "versionId",
"type": ["null", "string"],
"doc": "version id of the file"
}
]
}]
},