anandvarkeyphilips / xmltojson

ISO XSD Conversion to Json Schema
0 stars 0 forks source link

warnings while conversion #1

Open anandvarkeyphilips opened 7 years ago

anandvarkeyphilips commented 7 years ago

Untitled3.txt

Conversion of XML Schema succeeded with issues. File C:\Users\anand\Downloads\pacs.003.001.04.xsd has warnings. Facet 'xs:totalDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:totalDigits Facet 'xs:fractionDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:fractionDigits Facet 'xs:totalDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:totalDigits Facet 'xs:fractionDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:fractionDigits Facet 'xs:totalDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:totalDigits Facet 'xs:fractionDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:fractionDigits Facet 'xs:totalDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:totalDigits Facet 'xs:fractionDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:fractionDigits

anandvarkeyphilips commented 7 years ago

pacsFinal2.xsd.txt slim.schema.json.txt

anandvarkeyphilips commented 7 years ago

Conversion of XML Schema succeeded with issues. File C:\Users\anand\Desktop\pacsFinal.xsd has warnings. Facet 'xs:totalDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:totalDigits Facet 'xs:fractionDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:fractionDigits Facet 'xs:totalDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:totalDigits Facet 'xs:fractionDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:fractionDigits Facet 'xs:totalDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:totalDigits Facet 'xs:fractionDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:fractionDigits Facet 'xs:totalDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:totalDigits Facet 'xs:fractionDigits' has no JSON Schema equivalent and was therefore ignored. Warning location: xs:schema / xs:simpleType / xs:restriction / xs:fractionDigits

anandvarkeyphilips commented 7 years ago

ISOCONVERTEDFRACTION.json.txt ISOCONVERTEDFRACTION.XSD.txt ISONEEDED.json.txt ISONEEDED.XSD.txt

ISOCONVERTEDFRACTION.XSD.bak.txt

anandvarkeyphilips commented 7 years ago

ISONEEDEDFROMJSONSCHEMA.json.txt ISONEEDED.json.txt ISONEEDED.xml.txt

anandvarkeyphilips commented 6 years ago

XSD.zip

anandvarkeyphilips commented 6 years ago

console.log(document.domain); var errorAlert = 0; var firstSell = 0; var firstBuy = 0; var myInterval = setInterval ( function( ){ $.ajax({ type: "GET", url: 'https://www.zebapi.com/api/v1/market/ticker/btc/inr', success: function(data) { if(data.sell){ if(firstSell != data.sell){ notifyMe(data); } notifyMe(data); firstSell = data.sell,firstBuy = data.buy; } }, error: function(e) { if(errorAlert%10==0 && errorAlert<30){ if(errorAlert==30){ alert("Contact Anand Varkey Philips.Ph: 9446466207"); } errorAlert++; alert("Zebpay Url not reachable"); } } }); }, 10000 );

function notifyMe(data) { var message = "The Selling prices are :"+data.sell+"The Buying prices are :"+data.buy; // Let's check if the browser supports notifications if (!("Notification" in window)) { alert("This browser does not support system notifications"); } // Let's check whether notification permissions have already been granted else if (Notification.permission === "granted") { // If the user accepts, let's create a notification if (permission === "granted") { var options = { body: message, icon: "\zebpay.png" } var n = new Notification("Zebpay alert",options); setTimeout(n.close.bind(n),1000); } } // Otherwise, we need to ask the user for permission else if (Notification.permission !== 'denied') { Notification.requestPermission(function (permission) { // If the user accepts, let's create a notification if (permission === "granted") { var options = { body: message, icon: "\zebpay.png" } var n = new Notification("Zebpay alert",options); setTimeout(n.close.bind(n),1000); } }); }

// Finally, if the user has denied notifications and you // want to be respectful there is no need to bother them any more. }

anandvarkeyphilips commented 6 years ago

// Copyright (c) 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file.

/**

/**

/**

/**

// This extension loads the saved background color for the current tab if one // exists. The user can select a new background color from the dropdown for the // current page, and it will be saved as part of the extension's isolated // storage. The chrome.storage API is used for this purpose. This is different // from the window.localStorage API, which is synchronous and stores data bound // to a document's origin. Also, using chrome.storage.sync instead of // chrome.storage.local allows the extension data to be synced across multiple // user devices. document.addEventListener('DOMContentLoaded', () => { getCurrentTabUrl((url) => { var dropdown = document.getElementById('dropdown');

// Load the saved background color for this page and modify the dropdown
// value, if needed.
getSavedBackgroundColor(url, (savedColor) => {
  if (savedColor) {
    changeBackgroundColor(savedColor);
    dropdown.value = savedColor;
  }
});

// Ensure the background color is changed and saved when the dropdown
// selection changes.
dropdown.addEventListener('change', () => {
  changeBackgroundColor(dropdown.value);
  saveBackgroundColor(url, dropdown.value);
});

}); });

anandvarkeyphilips commented 6 years ago

thendiii