@api-components/api-schema-document

A component to render XML schema with examples

Usage no npm install needed!

<script type="module">
  import apiComponentsApiSchemaDocument from 'https://cdn.skypack.dev/@api-components/api-schema-document';
</script>

README

DEPRECATED

This component is being deprecated. The code base has been moved to api-documentation module. This module will be archived when PR 37 is merged.


A component to render XML/JSON schema with examples for an API model.

Published on NPM

Tests and publishing

Version compatibility

This version only works with AMF model version 2 (AMF parser >= 4.0.0). For compatibility with previous model version use 3.x.x version of the component.

Usage

Installation

npm install --save @api-components/api-schema-document

In an html file

<html>
  <head>
    <script type="module">
      import '@api-components/api-schema-document/api-schema-document.js';
    </script>
  </head>
  <body>
    <api-schema-document></api-schema-document>
  </body>
</html>

In a LitElement

import { LitElement, html } from 'lit-element';
import '@api-components/api-schema-document/api-schema-document.js';

class SampleElement extends PolymerElement {
  render() {
    return html`
    <api-schema-document .amf="${this.amf}"></api-schema-document>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Development

git clone https://github.com/advanced-rest-client/api-schema-document
cd api-schema-document
npm install

Running the demo locally

npm start

Running the tests

npm test