Sha256: 92bf2e0a039b38e0fd442f621533b01b350852b2cd4f5795484dd554f98f0955
Contents?: true
Size: 1.01 KB
Versions: 14
Compression:
Stored size: 1.01 KB
Contents
{ "$schema" : "http://json-schema.org/draft-04/schema#", "type" : "object", "title" : "password_reset", "description" : "Allows users to reset their password", "required" : [ "identifier", "question", "answer", "password" ], "properties" : { "identifier" : { "description" : "User identifier e.g. email address or mobile phone number", "oneOf" : [ { "$ref" : "./base_types/base_types.json#definitions/email" }, { "$ref" : "./base_types/base_types.json#definitions/phone" } ] }, "question" : { "description" : "Security question", "type" : "string" }, "answer" : { "description" : "Answer to a security question", "type" : "string" }, "password" : { "description" : "New password", "type" : "string" } }, "links" : [ { "rel" : "create", "href" : "password_resets", "method" : "POST" } ] }
Version data entries
14 entries across 14 versions & 1 rubygems