s.
=head1 JIRA ISSUE HASH FORMAT
When you work with an issue in JIRA's REST API, it gives you a JSON file that
follows this spec:
L<https://developer.atlassian.com/cloud/jira/platform/rest/#api-api
and not make you deal directly
with JSON. When you create a new issue, you can pass in just the pieces you
want and L</"create_issue"> will transform them to JSON for you. The same for
closing and de
So in those cases you'll need to pass in an
"update_hash" which will be transformed to the proper JSON by the method.
An update_hash looks like this:
{ field1 => value, field2 => value2, ...}
F