@airgap/serializer
Version:
The @airgap/serializer provides serializers used in AirGap applications.
23 lines (22 loc) • 493 B
JSON
{
"$ref": "#/definitions/MessageSignResponse",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"MessageSignResponse": {
"additionalProperties": false,
"properties": {
"message": {
"type": "string"
},
"publicKey": {
"type": "string"
},
"signature": {
"type": "string"
}
},
"required": ["message", "publicKey", "signature"],
"type": "object"
}
}
}