planning

package
v0.0.0-...-c6b3d93 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 31, 2024 License: MIT Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Epic

type Epic struct {
	Title       string  `json:"title" jsonschema:"title=Title,description=The title of the epic,required"`
	Description string  `json:"description" jsonschema:"title=Description,description=The description of the epic,required"`
	Stories     []Story `` /* 129-byte string literal not displayed */
}

type Process

type Process struct {
	Epics []Epic `json:"epics" jsonschema:"title=Epics,description=The epics that are needed to achieve the goal,required"`
}

func (*Process) GenerateSchema

func (p *Process) GenerateSchema() string

type Story

type Story struct {
	Title       string `json:"title" jsonschema:"title=Title,description=The title of the story,required"`
	Description string `json:"description" jsonschema:"title=Description,description=The description of the story written in Gherkin,required"`
	Tasks       []Task `json:"tasks" jsonschema:"title=Tasks,description=The tasks that are needed to achieve the story,required"`
}

type Task

type Task struct {
	Title       string `json:"title" jsonschema:"title=Title,description=The title of the task,required"`
	Description string `json:"description" jsonschema:"title=Description,description=The description of the task written in Gherkin,required"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL