Eclipse Foundation Node API

The Node API from Eclipse Foundation — 1 operation(s) for node.

OpenAPI Specification

eclipse-node-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Eclipse Marketplace REST Eclipse Marketplace REST API Node API
  description: 'REST API for the Eclipse Marketplace. Returns XML describing markets,

    categories, taxonomies, individual listing nodes and search results

    that can be used to integrate with the Eclipse Marketplace Client and

    third-party tools. No authentication is required for public reads.

    This specification is a best-effort, documentation-derived description

    and may omit fields.

    '
  version: 1.0.0
  contact:
    name: Eclipse Foundation
    url: https://wiki.eclipse.org/Marketplace/REST
servers:
- url: https://marketplace.eclipse.org/api/p
  description: Public REST root
tags:
- name: Node
paths:
  /node/{nodeId}:
    get:
      summary: Get a marketplace listing node
      operationId: getNode
      parameters:
      - in: path
        name: nodeId
        required: true
        schema:
          type: integer
        description: Numeric identifier of a marketplace listing.
      responses:
        '200':
          description: Listing XML
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/MarketplaceNode'
      tags:
      - Node
components:
  schemas:
    MarketplaceNode:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        url:
          type: string
          format: uri
        type:
          type: string
        categories:
          type: array
          items:
            type: object
            additionalProperties: true
        tags:
          type: array
          items:
            type: string
        owner:
          type: string
        favorited:
          type: integer
        installstotal:
          type: integer
        installsrecent:
          type: integer
        shortdescription:
          type: string
        body:
          type: string
        image:
          type: string
          format: uri
        license:
          type: string
        version:
          type: string
        eclipseversion:
          type: string
        updateurl:
          type: string
          format: uri
        ius:
          type: array
          items:
            type: string
        platforms:
          type: array
          items:
            type: string
        companyname:
          type: string
        status:
          type: string
        supporturl:
          type: string
          format: uri