{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SharePassword", "title": "SharePassword", "type": "object", "properties": { "id": { "type": "integer", "readOnly": true }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "note": { "type": "string", "nullable": true, "maxLength": 100 }, "created_by_email": { "type": "string", "readOnly": true }, "is_active": { "type": "boolean", "readOnly": true } }, "required": [ "created_at", "created_by_email", "id", "is_active" ] }