We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Complex field are not shown in schema view, for instance:
{ "type": "record", "name": "transactionXYZ", "namespace": "com.example.ecommerce", "doc": "E-commerce Platform Finalized Transaction", "fields": [ { "name": "id", "type": "string", "doc": "Transaction and order identifier" }, { "name": "userId", "type": "string", "doc": "User identifier" }, { "name": "timestamp", "type": "int", "doc": "Epoch timestamp" }, { "name": "offers", "type": [ "null", { "type": "array", "items": [ "null", { "type": "record", "name": "offer", "doc": "Offer object", "fields": [ { "name": "id", "type": "string", "doc": "Offer identifier on platform" }, { "name": "price", "type": "float", "doc": "Unit price of the offer" }, { "name": "quantity", "type": "int", "doc": "Quantity purchased" } ] } ] } ], "doc": "List of offers" }, { "name": "__metadata", "type": [ "null", { "type": "map", "values": "string" } ], "doc": "Internal metadata field", "default": null } ] }
Schema view in hermes does not have field "offers":
The text was updated successfully, but these errors were encountered:
I would like to take it on hacktoberfest
Sorry, something went wrong.
Hey, cool to hear that 😄 assigned. If you have any questions/problems, let us know.
Franciszek-Bubnicki
No branches or pull requests
Complex field are not shown in schema view, for instance:
Schema view in hermes does not have field "offers":
The text was updated successfully, but these errors were encountered: