{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "EditIssueOption", "description": "EditIssueOption options for editing an issue", "type": "object", "properties": { "assignee": { "description": "deprecated", "type": "string", "x-go-name": "Assignee" }, "assignees": { "type": "array", "items": { "type": "string" }, "x-go-name": "Assignees" }, "body": { "type": "string", "x-go-name": "Body" }, "due_date": { "type": "string", "format": "date-time", "x-go-name": "Deadline" }, "milestone": { "type": "integer", "format": "int64", "x-go-name": "Milestone" }, "ref": { "type": "string", "x-go-name": "Ref" }, "state": { "type": "string", "x-go-name": "State" }, "title": { "type": "string", "x-go-name": "Title" }, "unset_due_date": { "type": "boolean", "x-go-name": "RemoveDeadline" }, "updated_at": { "type": "string", "format": "date-time", "x-go-name": "Updated" } }, "x-go-package": "forgejo.org/modules/structs" }