Noosh Spec API

The Spec API from Noosh — 7 operation(s) for spec.

Operations 11

GET /1.1/workgroups/{workgroup_id}/projects/{project_id}/specs/{spec_id} List a specific spec of project Level #
PUT /1.1/workgroups/{workgroup_id}/projects/{project_id}/specs/{spec_id} Update a specific Spec #
GET /1.1/workgroups/{workgroup_id}/specTypes/{spec_type_id}/specTypeFields Get Spec Type Fields #
GET /v1/workgroups/{workgroup_id}/productTypes Get product type of workgroup level #
GET /v1/workgroups/{workgroup_id}/productTypesOfSpecTypes Get product type of spec level by workgroupId #
POST /v1/workgroups/{workgroup_id}/productTypesOfSpecTypes Register product types for spec types #
GET /v1/workgroups/{workgroup_id}/projects/{project_id}/specs List specs of project Level #
POST /v1/workgroups/{workgroup_id}/projects/{project_id}/specs Create a Spec #
GET /v1/workgroups/{workgroup_id}/projects/{project_id}/specs/{spec_id} List a specific spec of project Level #
PUT /v1/workgroups/{workgroup_id}/projects/{project_id}/specs/{spec_id} Update a specific Spec #
GET /v1/workgroups/{workgroup_id}/specTypes/{spec_type_id}/specTypeFields Get Spec Type Fields #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/noosh-spec-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

noosh-spec-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Full description of Noosh API
  version: '1.0'
  title: Noosh API application Spec API
  contact: {}
  x-api-evangelist-note: Harvested verbatim from https://api.noosh.com/api/swagger.json on 2026-08-13. The published document declares host example.com:80 and basePath /v1, which are build-time placeholders (the same document is mirrored by APIs.guru with host noosh.local:80). host has been set to api.noosh.com — the host that actually serves this document and the Swagger UI at /api/developer/index.html — and basePath removed because every path already carries its own version prefix (/v1, /1.1, /1.2, /3). The unmodified document is preserved at openapi/_original/noosh-openapi.json. Every route returns HTTP 403 to unauthenticated callers (AWS API Gateway + CloudFront), so the deployment path prefix could not be confirmed live.
servers:
- url: https://api.noosh.com
tags:
- name: Spec
paths:
  /1.1/workgroups/{workgroup_id}/projects/{project_id}/specs/{spec_id}:
    get:
      tags:
      - Spec
      summary: List a specific spec of project Level
      description: List a specific spec of project Level
      operationId: getSpec
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      - name: spec_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V1x1SpecExpandVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/V1x1SpecExpandVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/V1x1SpecExpandVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/V1x1SpecExpandVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/V1x1SpecExpandVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/V1x1SpecExpandVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/V1x1SpecExpandVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/V1x1SpecExpandVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
    put:
      tags:
      - Spec
      summary: Update a specific Spec
      description: Update a specific Spec
      operationId: putSpec
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      - name: spec_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpecHTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/SpecHTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/SpecHTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/SpecHTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/SpecHTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/SpecHTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/SpecHTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/SpecHTTPStatusVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/V1X1SpecUpdatingPO'
          application/x-json-smile:
            schema:
              $ref: '#/components/schemas/V1X1SpecUpdatingPO'
          application/xml:
            schema:
              $ref: '#/components/schemas/V1X1SpecUpdatingPO'
          text/xml:
            schema:
              $ref: '#/components/schemas/V1X1SpecUpdatingPO'
          application/x-yaml:
            schema:
              $ref: '#/components/schemas/V1X1SpecUpdatingPO'
          text/x-yaml:
            schema:
              $ref: '#/components/schemas/V1X1SpecUpdatingPO'
          text/csv:
            schema:
              $ref: '#/components/schemas/V1X1SpecUpdatingPO'
  /1.1/workgroups/{workgroup_id}/specTypes/{spec_type_id}/specTypeFields:
    get:
      tags:
      - Spec
      summary: Get Spec Type Fields
      description: Get Spec Type Fields
      operationId: getSpecTypeFields
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: spec_type_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpecTypeFieldsListVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/SpecTypeFieldsListVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/SpecTypeFieldsListVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/SpecTypeFieldsListVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/SpecTypeFieldsListVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/SpecTypeFieldsListVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/SpecTypeFieldsListVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/SpecTypeFieldsListVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
  /v1/workgroups/{workgroup_id}/productTypes:
    get:
      tags:
      - Spec
      summary: Get product type of workgroup level
      description: Get product type of workgroup level
      operationId: getProductTypeListOfWorkgroup
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
  /v1/workgroups/{workgroup_id}/productTypesOfSpecTypes:
    get:
      tags:
      - Spec
      summary: Get product type of spec level by workgroupId
      description: Get product type of spec level by workgroupId
      operationId: getSpecProductTypeListOfWorkgroup
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/WorkgroupAttributeListVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
    post:
      tags:
      - Spec
      summary: Register product types for spec types
      description: Register product types for spec types
      operationId: postSpecProductTypeListOfWorkgroup
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
        '422':
          description: Invalid data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
          application/x-json-smile:
            schema:
              $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
          application/xml:
            schema:
              $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
          text/xml:
            schema:
              $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
          application/x-yaml:
            schema:
              $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
          text/x-yaml:
            schema:
              $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
          text/csv:
            schema:
              $ref: '#/components/schemas/WgSpecPrdTypeRegPersistVO'
  /v1/workgroups/{workgroup_id}/projects/{project_id}/specs:
    get:
      tags:
      - Spec
      summary: List specs of project Level
      description: List specs of project Level
      operationId: getSpecList
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/SpecListVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
    post:
      tags:
      - Spec
      summary: Create a Spec
      description: Create a Spec
      operationId: postSpec
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpecVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/SpecVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/SpecVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/SpecVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/SpecVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/SpecVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/SpecVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/SpecVO'
        '422':
          description: Invalid data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SpecPersistVO'
          application/x-json-smile:
            schema:
              $ref: '#/components/schemas/SpecPersistVO'
          application/xml:
            schema:
              $ref: '#/components/schemas/SpecPersistVO'
          text/xml:
            schema:
              $ref: '#/components/schemas/SpecPersistVO'
          application/x-yaml:
            schema:
              $ref: '#/components/schemas/SpecPersistVO'
          text/x-yaml:
            schema:
              $ref: '#/components/schemas/SpecPersistVO'
          text/csv:
            schema:
              $ref: '#/components/schemas/SpecPersistVO'
  /v1/workgroups/{workgroup_id}/projects/{project_id}/specs/{spec_id}:
    get:
      tags:
      - Spec
      summary: List a specific spec of project Level
      description: List a specific spec of project Level
      operationId: getSpec
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      - name: spec_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/SpecListVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/SpecListVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              sche

# --- truncated at 32 KB (59 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/noosh/refs/heads/main/openapi/noosh-spec-api-openapi.yml