The tool converts API spec in OpenAPI fka Swagger 2.0 format to text in JIRA-compatible format, which can be then used to create User Stories or Tasks or whatever ticket types you use in JIRA for API development.
go run openapi2jira.go -in=myapi.yml -out=userstory.txt
import (
"github.com/vshisterov/openapi2jira/jira"
"github.com/vshisterov/openapi2jira/openapi"
)
api, err := openapi.ParseFile("myapi.yml")
// or if you have the spec already loaded as string:
api, err := openapi.Parse(myapi)
text := jira.ToJira(api)