()
| 44 | } |
| 45 | |
| 46 | func getObjectAction() schema.Action { |
| 47 | return schema.NewAction( |
| 48 | "ObjectAction", |
| 49 | "GET", |
| 50 | "/object/", |
| 51 | "action with input type object", |
| 52 | map[string]interface{}{ |
| 53 | "type": "object", |
| 54 | "properties": map[string]interface{}{ |
| 55 | "a": map[string]interface{}{ |
| 56 | "type": "number", |
| 57 | }, |
| 58 | "b": map[string]interface{}{ |
| 59 | "type": "boolean", |
| 60 | }, |
| 61 | }, |
| 62 | }, |
| 63 | nil, |
| 64 | nil, |
| 65 | ) |
| 66 | } |
| 67 | |
| 68 | var _ = Describe("Arguments", func() { |
| 69 | Describe("Parsing raw value", func() { |