{
	"title": "StoredPassword",
	"description": "A list of passwords and a last change date for a user.",
	"properties": {
		"id": {
			"type": "integer",
			"apiSummary": true
		},
		"user_id": {
			"type": "integer",
			"apiSummary": true
		},
		"password": {
			"type": "string",
			"validation": [
				"nullable"
			]
		},
		"lastChangeTime": {
			"type": "string",
			"validation": [
				"date:Y-m-d H:i:s",
				"nullable"
			]
		}
	}
}