@airgap/serializer
Version:
The @airgap/serializer provides serializers used in AirGap applications.
35 lines (34 loc) • 839 B
JSON
{
"$ref": "#/definitions/AccountShareResponse",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"AccountShareResponse": {
"additionalProperties": false,
"properties": {
"derivationPath": {
"type": "string"
},
"groupId": {
"type": "string"
},
"groupLabel": {
"type": "string"
},
"isActive": {
"type": "boolean"
},
"isExtendedPublicKey": {
"type": "boolean"
},
"masterFingerprint": {
"type": "string"
},
"publicKey": {
"type": "string"
}
},
"required": ["publicKey", "derivationPath", "isExtendedPublicKey", "masterFingerprint", "isActive", "groupId", "groupLabel"],
"type": "object"
}
}
}