Contact Us 1-800-596-4880

Creating and Using API Spec Fragments

logo cloud IDE Cloud IDE

logo desktop IDE Desktop IDE

Open Beta Release: The cloud IDE is in open beta. Any use of Anypoint Code Builder in its beta state is subject to the applicable beta services terms and conditions, available from the IDE.

Using Anypoint Code Builder, you can create your own API fragments and publish them to Anypoint Exchange to share with other people, add fragments from Exchange to your API specification, or create fragments in your project to add directly to your API specification. Alternatively, you can create and add a fragment directly in your project without publishing it to Exchange.

Anypoint Code Builder does not support scaffolding API specs that reference OAS or JSON schema fragments that you import from Exchange as project dependencies. Instead, you can scaffold a spec with such fragments by providing the fragments inline within the spec or through fragment files that you create manually within your project directory. RAML fragments from Exchange are not affected by this limitation.

The process for adding a fragment from Exchange is:

  1. Add the API fragment from Exchange to your API spec project as a dependency.

  2. Add the API fragment to your API spec using the $ref (OAS) or !include (RAML) directives.

The process for adding a fragment without publishing it to Exchange is:

Use these examples to explore the functionality of Anypoint Code Builder:

Before You Begin

Before adding fragments:

Create an API Fragment and Publish it to Exchange

The process for creating and publishing API spec fragments is similar to the process for API specs.

To create an API spec fragment:

  1. In the activity bar of the IDE, click the (Anypoint Code Builder) icon.

    Anypoint Code Builder icon highlighted in the activity bar
  2. From Quick Actions, click Design an API:

    *Design an API* link highlighted in the *Quick Actions* section
  3. In Design an API, click the API Fragment tab:

    API Fragment tab on the Design an API page

    Ensure that you select the API Fragment tab.

  4. Complete the API Fragment form:

    Field Name Field Value

    Project Name

    Unique name for your fragment.

    This name is used as the fragment title in Exchange and name of the fragment file. For example, if the project name is Example OAS Fragment, the specification file name is example-oas-fragment.

    To reuse an existing project name, you must delete the project that is already using the name first. See Deleting API Specs and Fragments.

    Project Location

    Your home directory or another directory you create.

    Don’t create the project within another project directory.

    API Specification Language

    Select OAS 3.0 (YAML) to use the example in this procedure.

    <Language> Syntax

    The syntax for the selected language.

    Select YAML to use the example in this procedure.

    Business Group

    Business Group in Anypoint Platform for your API fragment. See Business Groups.

    You cannot change the selected business group after creating the API fragment.

  5. Click Create Project.

    If prompted, trust the authors of the files in the folder.

    When the project is ready for editing, the API fragment project opens in the Explorer view. For example, this OAS 3.0 (YAML) API fragment:

    API Fragment tab on the Design an API page

  6. Continue designing your API fragment.

    As you enter elements, use auto-complete (Ctrl+Space) to display available options within the context.

    If you created an OAS 3.0 (YAML) fragment project, you can replace the initial API fragment with the example code to test adding fragments to a spec.

  7. Publish your fragment to Exchange.

    The status bar shows the progress. When complete, you see a message that the API fragment successfully published to Exchange.

  8. Navigate to Anypoint Platform and log in using your credentials.

    Show me how
  9. Navigate to Anypoint Exchange.

    Show me how

    Your API specification appears as an API spec fragment type asset in your organization, for example:

    API Spec Fragment in Exchange

    If your API spec appears on Exchange as a REST API rather than an API spec fragment, check that the classifier attribute in the exchange.json file in the project folder in your IDE is set to one of the following, depending on the language:

    • OAS: oas-components

    • RAML: raml-fragment

    • JSON Schema: json-schema

    If the attribute is set to one of the following, the project is an API spec rather than a fragment:

    • OAS: oas

    • RAML: raml

Add a Fragment from Exchange to Your Project

To add an API spec fragment from Exchange to the project directory so that you can include the fragment in your spec:

  1. Open your API spec project file, for example, example-oas-spec.

  2. Open the Command Palette.

    Show me how
    • Use the keyboard shortcuts:

      • Mac: Cmd+Shift+p

      • Windows: Ctrl+Shift+p

    • In the desktop IDE, select View > Command Palette.

    • In the cloud IDE, click the (menu) icon, and select View > Command Palette.

  3. Enter mulesoft and select the following command:

    MuleSoft: Add Fragment dependency from Exchange
  4. If prompted, log in to Anypoint Platform.

  5. In the Search for Asset field, provide the name of the data type asset to add.

    To search for assets, type the search term and press Enter, for example:

    Search for fragment in Assets from Exchange dropdown
  6. Select the fragment from the Assets From Exchange menu.

  7. Select a version of the fragment.

    The status bar shows the progress. When complete, you see a message that the selected API fragment was successfully added to the project.

  8. Verify that the fragment dependency was added by checking the dependencies section of the exchange.json file, for example:

    Verify the fragment dependency in the exchange.json file

    You can also see the fragment in the Explorer view under Project Dependencies, for example:

    API fragment in the Explorer view

    The fragment files are located in your home directory on your system in the .exchange_modules directory, for example, ~/.exchange_modules (Mac).

Add an API Fragment to Your API Spec

To add an API spec fragment to a spec:

  1. Open your API spec project file, for example, example-oas-spec.

  2. Place the cursor where you want to add the fragment.

  3. Depending on the API spec language, select the directive to add the fragment to your specification.

    • OAS specs: Use the $ref directive.

    • RAML specs: Use the !include directive.

    • OAS Example

    • RAML Example

    This $ref directive adds the AmericanFlightDataType from example-oas-fragment as a data type:

    schema:
      $ref: exchange_modules/e91cab06-650b-4634-9c6f-5bc4f4fc4d17/example-oas-fragment/1.0.0/example-oas-fragment.yaml#/components/schemas/AmericanFlightDataType

    This !include directive adds the AmericanFlight object from AmericanFlightDataType.raml as a data type:

    types:
      AmericanFlight: !include exchange_modules/68ef9520-24e9-4cf2-b2f5-620025690913/training-american-flight-data-type/1.0.1/AmericanFlightDataType.raml
  4. Use auto-complete (Ctrl+Space) to display available options within each context, for example:

    Add the fragment to your API spec
  5. To reference an element within a component defined in the fragment file:

    1. Select the fragment file name.

    2. Enter #/.

    3. Press Ctrl+Space.

    4. Select the element from the options, for example:

      Reference an element in the fragment

After adding the fragment to your spec, you can:

  • Navigate to the dependency:

    Place the cursor on the fragment reference and press Command+Click. For example:

    Navigate to the fragment dependency
  • View the dependency in the API Console:

    Place the cursor on the fragment reference and click the (API Console) icon to open the fragment in the console.

    For more information, see Review Your Spec in the API Console.

Create and Add a Fragment Directly in Your Spec

To create a fragment in your project and include it in your specification:

  1. Open your API spec project file, for example, example-oas-spec.

  2. In the Explorer view, right-click on an empty space, and create a folder for your fragments, such as fragments.

  3. In the fragments folder, create a new file, such as my-fragment and add your fragment code.

  4. Place the cursor where you want to add the fragment.

  5. Depending on the API spec language, select the directive to add the fragment from the folder to your spec:

    • OAS specs: Use the $ref directive.

    • RAML specs: Use the !include directive.

    • OAS Example

    • RAML Example

    This $ref directive adds the api_key object from the my-fragment.yaml file:

    api-key:
        $ref: fragments/my-fragment.yaml#/components/securitySchemes/api_key

    This !include directive adds the AmericanFlightsExample.raml example:

    examples:
      output: !include examples/AmericanFlightExample.raml
  6. Use auto-complete (Ctrl+Space) to display available options within each context, for example:

    Add the fragment from a folder to your API spec
  7. To reference an element within a component defined in the fragment file:

    1. Select the fragment file name.

    2. Enter #/.

    3. Press Ctrl+Space.

    4. Select the element from the options, for example:

      Reference an element in the fragment

After adding the fragment to your spec, you can:

  • Navigate to the dependency:

    Place the cursor on the fragment reference and press Command+Click. For example:

    Navigate to the fragment dependency
  • View the dependency in the API Console:

    Place the cursor on the fragment reference and click the (API Console) icon to open the fragment in the console.

    For more information, see Review Your Spec in the API Console.

Example OAS 3.0 (YAML) API Spec Fragment

If you created an OAS 3.0 (YAML) fragment project, you can replace the initial API fragment with following example code:

Example OAS 3.0 (YAML) API Spec Fragment
openapi: "3.0.0"
info:
  version: 1.0.0
  title: ExampleComponents
paths: {}

components:
  schemas:
    AmericanFlightDataType:
      type: object
      description: American Flight Data Type
      properties:
        ID:
          type: number
        code:
          type: string
        price:
          type: number
        departureDate:
          type: string
        origin:
          type: string
        destination:
          type: string
        emptySeats:
          type: number
        plane:
          type: object
          properties:
            type:
              type: string
            totalSeats:
              type: number
      example:
        ID: 1
        code: ER38sd
        price: 400
        departureDate: 2017/07/26
        origin: CLE
        destination: SFO
        emptySeats: 0
        plane:
          type: Boeing 737
          totalSeats: 150

Example OAS 3.0 (YAML) API Spec

If you created an OAS 3.0 (YAML) API spec project, you can replace the initial API spec with following example code to test adding the API spec fragments:

Example OAS 3.0 (YAML) API Spec
openapi: "3.0.0"
info:
  version: 1.0.0
  title: Example OAS Spec
paths:

  /flights/{ID}:
    get:
      parameters:
        -
          name: ID
          required: true
          in: path
          schema:
            type: string
      responses:
        "200":
          description: "Flight with ID"
          content:
            application/json:
              schema: