Sha256: 2a89a518c2ad03d8a6ba3a6dd4395ff9f5d293b3b0a2c9a90aa221a8473ba024

Contents?: true

Size: 528 Bytes

Versions: 9

Compression:

Stored size: 528 Bytes

Contents

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "minLength": 1
    },
    "email": {
      "type": "string",
      "format": "email",
      "maxLength": 1024
    },
    "password": {
      "type": "string",
      "minLength": 8,
      "maxLength": 2048,
      "pattern": "^(?=.*[A-Z])(?=.*[^A-z0-9])(?=.*[0-9])(?=.*[a-z]).{8,}$"
    }
  },
  "required": [
    "token",
    "email",
    "password"
  ],
  "additionalProperties": false
}

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
losant_rest-1.10.3 schemas/passwordResetFinish.json
losant_rest-1.10.2 schemas/passwordResetFinish.json
losant_rest-1.10.1 schemas/passwordResetFinish.json
losant_rest-1.10.0 schemas/passwordResetFinish.json
losant_rest-1.9.3 schemas/passwordResetFinish.json
losant_rest-1.9.2 schemas/passwordResetFinish.json
losant_rest-1.9.1 schemas/passwordResetFinish.json
losant_rest-1.9.0 schemas/passwordResetFinish.json
losant_rest-1.8.9 schemas/passwordResetFinish.json