Proposer Request schema - KostasMparmparousis/uLookup GitHub Wiki

Το παρακάτω JSON schema περιγράφει την δομή του request την οποία το Proposer αναμένει να παραλάβει. Επιπλεόν μπορεί να ερμηνευτεί ως validator ενός request.

{
    "$schema": "http://json-schema.org/draft-07/schema",
    "type": "object",
    "properties": {
        "ssn": {
            "type" : "string",
            "examples": [ "31120012345" ]
        },
        "ssnCountry": {
            "type" : "string",
            "examples": [ "GR" ]
        },
        "firstName": {
            "type" : "string",
            "examples": [ "Kostas" ]
        },
        "lastName": {
            "type" : "string",
            "examples": [ "Mparmparousis" ]
        }
    }
}