action noosh_get_spec_type_fields { label: "Get Spec Type Fields" description: "Get Spec Type Fields" provider: noosh method: GET path: "/1.1/workgroups/{workgroup_id}/specTypes/{spec_type_id}/specTypeFields" encoding: json input: { type: "object" properties: { spec_type_id: { type: "string" } workgroup_id: { type: "string" } } required: ["spec_type_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.v1x1.SpecTypeFieldsListVO" properties: { result: { description: "Java type: com.noosh.nooshapi.vo.v1x1.SpecTypeFieldsVO" type: "object" } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }