Derefence your JSON schema on the fly. App is live. Try now ๐
- yarn v1.19.1
- Clone the repo
yarn install
yarn start
- Runs the app in the development mode. Open http://localhost:3000 to view it in the browser.
- Have a nice feature or UI suggestion in mind ๐? please create an issue !
- Did you just broke this app ๐คจ? Please raise an issue !
- Editor support
-
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?
- This app uses the json-schema-deref to perform the said job.
{
"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"
}
}
}
}
}