Skip to content

Commit

Permalink
Remove VirtualNodeSchemaRequest and Response, add VirtualNodeSchema.avsc
Browse files Browse the repository at this point in the history
  • Loading branch information
BenYip123 committed Jan 2, 2024
1 parent b9e9b12 commit 6165d42
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
"type": [
"net.corda.data.virtualnode.VirtualNodeCreateRequest",
"net.corda.data.virtualnode.VirtualNodeDbConnectionUpdateRequest",
"net.corda.data.virtualnode.VirtualNodeUpgradeRequest",
"net.corda.data.virtualnode.VirtualNodeSchemaRequest"
]
}
]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"type": "record",
"name": "VirtualNodeSchema",
"namespace": "net.corda.data.virtualnode",
"doc": "Represents the input parameters for getting a schema SQL",
"fields": [
{
"name": "dbType",
"type": "string",
"doc": "The type of database to get the schema from."
},
{
"name": "virtualNodeShortHash",
"type": [ "null", "string" ],
"doc": "Short hash of the virtual node."
},
{
"name": "cpiChecksum",
"type": [ "null", "string" ],
"doc": "The checksum of the CPI file."
}
]
}

This file was deleted.

This file was deleted.

0 comments on commit 6165d42

Please sign in to comment.