refactor, wip

This commit is contained in:
Cory Bennett
2016-10-01 00:48:42 -07:00
parent 070c38520b
commit a54a6eb2d0
37 changed files with 3620 additions and 223 deletions
+31
View File
@@ -0,0 +1,31 @@
package jiradata
/////////////////////////////////////////////////////////////////////////
// This Code is Generated by SlipScheme Project:
// https://github.com/coryb/slipscheme
//
// Generated with command:
// slipscheme -pkg jiradata -overwrite ../schemas/SearchResults.json
/////////////////////////////////////////////////////////////////////////
// DO NOT EDIT //
/////////////////////////////////////////////////////////////////////////
// Properties defined from schema:
// {
// "title": "Properties",
// "type": "object",
// "properties": {
// "properties": {
// "title": "properties",
// "type": "object",
// "patternProperties": {
// ".+": {
// "type": "string"
// }
// }
// }
// }
// }
type Properties struct {
Properties map[string]string `json:"properties,omitempty" yaml:"properties,omitempty"`
}