-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove VirtualNodeSchemaRequest and Response, add VirtualNodeSchema.avsc
- Loading branch information
Showing
4 changed files
with
23 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
data/avro-schema/src/main/resources/avro/net/corda/data/virtualnode/VirtualNodeSchema.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." | ||
} | ||
] | ||
} |
23 changes: 0 additions & 23 deletions
23
...o-schema/src/main/resources/avro/net/corda/data/virtualnode/VirtualNodeSchemaRequest.avsc
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
...-schema/src/main/resources/avro/net/corda/data/virtualnode/VirtualNodeSchemaResponse.avsc
This file was deleted.
Oops, something went wrong.