You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to create a html page for the json schemas where documentation of every schema is on a seperate Tab as below.
But the problem I am facing is the json documentation is not going into the tab, but just outside the tab
And also it keeps on appending to the existing html page.
I believe the issue is in the below lines
var element = $("
I am trying to create a html page for the json schemas where documentation of every schema is on a seperate Tab as below.
But the problem I am facing is the json documentation is not going into the tab, but just outside the tab
And also it keeps on appending to the existing html page.
I believe the issue is in the below lines
var element = $("
$("body").append(element);
docson.doc(element, item);
Kindly let me know how to resolve this
<title> Canonical Data Model JSON Draft 4 Schemas</title> <script src="lib/require.js"></script> <style> body {font-family: "Lato", sans-serif;}/* Style the tab */
div.tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
}
/* Style the buttons inside the tab */
div.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
font-size: 17px;
}
/* Change background color of buttons on hover */
div.tab button:hover {
background-color: #ddd;
}
/* Create an active/current tablink class */
div.tab button.active {
background-color: #ccc;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
-webkit-animation: fadeEffect 1s;
animation: fadeEffect 1s;
}
/* Fade in tabs */
@-webkit-keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
@Keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
/* Style the close button */
.topright {
float: right;
cursor: pointer;
font-size: 20px;
}
.topright:hover {color: red;}
</style>
Logistic User
Schema defining the user for the logistic operations
Contract
Schema defining the Contract.
The text was updated successfully, but these errors were encountered: