action noosh_get_spec_list { label: "List specs of project Level" description: "List specs of project Level" provider: noosh method: GET path: "/v1/workgroups/{workgroup_id}/projects/{project_id}/specs" encoding: json input: { type: "object" properties: { project_id: { type: "string" } workgroup_id: { type: "string" } } required: ["project_id", "workgroup_id"] additionalProperties: false } output: { description: "Java type: com.noosh.nooshapi.vo.SpecListVO" properties: { results: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.SpecSimpleVO" properties: { client_status: { type: "string" } create_date: { type: "string" format: "date" } created_by: { description: "Java type: com.noosh.nooshapi.vo.PersonVO" properties: { email: { type: "string" } first_name: { type: "string" } last_name: { type: "string" } middle_name: { type: "string" } } } job_id: { type: "integer" format: "int64" } last_updated: { type: "string" format: "date" } reference_number: { type: "string" } spec_id: { type: "integer" format: "int64" } spec_name: { type: "string" } spec_options_complete: { type: "array" items: { type: "object" additionalProperties: true } } supplier_status: { type: "string" } uofms: { type: "array" items: { description: "Java type: com.noosh.nooshapi.vo.UofmSimpleVO" properties: { is_default: { type: "boolean" } uofm_id: { type: "integer" format: "int64" } uofm_name: { type: "string" } } } } user_state: { type: "string" } } } } status_code: { type: "integer" format: "int32" } status_reason: { type: "string" } } } }