Skip to content

Seamlessly dereference your JSON schema on click of a button. Live now ๐Ÿš€

Notifications You must be signed in to change notification settings

whoAbhishekSah/json-dereference-online

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

9 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

JSON-dereference-online

Derefence your JSON schema on the fly. App is live. Try now ๐Ÿš€

Build Instructions:

Prerequisite

  • yarn v1.19.1

Setup instructions

  1. Clone the repo
  2. yarn install
  3. yarn start - Runs the app in the development mode. Open http://localhost:3000 to view it in the browser.

Contribution

  • Have a nice feature or UI suggestion in mind ๐ŸŽ‰? please create an issue !
  • Did you just broke this app ๐Ÿคจ? Please raise an issue !

Features planned

  • Editor support

FAQ

  • Will this app store my data?

    • No, this app doesn't store or sell your personal data in any way. (Or send to a server in N.Korea/China for that matter)
  • What tools does this app use?

Sample input to try !
{
  "paths": {
    "/class_definitions": {
      "get": {
        "description": "Get all class definitions",
        "produces": [
          "application/json"
        ],
        "tags": [
          "Class Definitions"
        ],
        "summary": "Get class definitions",
        "operationId": "get-class-definitions",
        "responses": {
          "200": {
            "description": "OK",
            "schema": {
              "type": "array",
              "items": {
                "$ref": "#/definitions/ClassDefinition"
              }
            }
          }
        }
      }
    }
  },
  "definitions": {
    "ClassDefinition": {
      "type": "object",
      "properties": {
        "id": {
          "type": "integer"
        },
        "created_at": {
          "type": "string"
        },
        "created_by": {
          "type": "string"
        },
        "updated_at": {
          "type": "string"
        },
        "updated_by": {
          "type": "string"
        },
        "status": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "creator_team": {
          "type": "string"
        }
      }
    }
  }
}

About

Seamlessly dereference your JSON schema on click of a button. Live now ๐Ÿš€

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published