action noosh_post_spec { label: "Create a Spec" description: "Create a Spec" provider: noosh method: POST path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/specs" encoding: json input: { type: "object" properties: { jsonBody: { type: "boolean" } product_type_id: { type: "integer" format: "int64" } project_id: { type: "string" } quantity_1: { type: "integer" format: "int64" } quantity_2: { type: "integer" format: "int64" } quantity_3: { type: "integer" format: "int64" } quantity_4: { type: "integer" format: "int64" } quantity_5: { type: "integer" format: "int64" } sku: { type: "string" } spec_name: { type: "string" } spec_template_id: { type: "integer" format: "int64" } spec_type_id: { type: "integer" format: "int64" } versions: { type: "array" items: { description: "Java type: com.noosh.domain.nooshapi.persist.vo.SpecVersionPersistVO" properties: { description: { type: "string" } qty: { type: "integer" format: "int64" } } } } workgroup_id: { type: "string" } } required: ["project_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.SpecVO" properties: { spec_id: { type: "integer" format: "int64" } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }