{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "EnvelopeFolder", "description": "", "type": "object", "properties": { "id": { "type": "integer", "readOnly": true }, "name": { "type": "string", "maxLength": 50 }, "created_by": { "type": "integer", "readOnly": true }, "created_at": { "type": "string", "format": "date-time", "readOnly": true, "nullable": true }, "updated_by": { "type": "integer", "readOnly": true, "nullable": true }, "updated_at": { "type": "string", "format": "date-time", "readOnly": true, "nullable": true } }, "required": [ "created_at", "created_by", "id", "name", "updated_at", "updated_by" ] }