AddTimeOption options for adding time to an issue
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "AddTimeOption", "description": "AddTimeOption options for adding time to an issue", "type": "object", "required": [ "time" ], "properties": { "created": { "type": "string", "format": "date-time", "x-go-name": "Created" }, "time": { "description": "time in seconds", "type": "integer", "format": "int64", "x-go-name": "Time" }, "user_name": { "description": "User who spent the time (optional)", "type": "string", "x-go-name": "User" } }, "x-go-package": "forgejo.org/modules/structs" }