json.Instance
¶
An json.Instance
object represents a JSON instance document.
-
class
json.
Instance
¶ Proper instances of this class will be created within RaptorXML only, instantiation from script code will throw a
NotImplementedError
exception.
Class methods¶
-
classmethod
json.Instance.
is_wellformed_buffer
(type cls, buf, *, catalog=None, **kargs)¶ Checks the buffer buf containing a JSON document according to the ECMA-404 specification for wellformedness and returns an
xml.ErrorLog
object with the results. Optional user XML catalogs can be specified with the catalog argument. Other validation options can be specified using additional kargs. Please consult the RaptorXML CLI documentation http://manual.altova.com/RaptorXML/raptorxmlxbrlserver/rxcli_jsonavro_wfjson.htm for a list of available options. Any errors and warnings reported during the validation can be accessed through the returnedxml.ErrorLog
object.
-
classmethod
json.Instance.
is_wellformed_url
(type cls, url, *, catalog=None, **kargs)¶ Checks the JSON document at the given url according to the ECMA-404 specification for wellformedness and returns an
xml.ErrorLog
object with the results. Optional user XML catalogs can be specified with the catalog argument. Other validation options can be specified using additional kargs. Please consult the RaptorXML CLI documentation http://manual.altova.com/RaptorXML/raptorxmlxbrlserver/rxcli_jsonavro_wfjson.htm for a list of available options. Any errors and warnings reported during the validation can be accessed through the returnedxml.ErrorLog
object.
-
classmethod
json.Instance.
validate_buffer
(type cls, buf, *, Schema schema, catalog=None, **kargs)¶ Validates the buffer buf containing a JSON documents against the specified JSON schema according to the JSON schema draft 4 and returns
xml.ErrorLog
object with the results. Optional user XML catalogs can be specified with the catalog argument. Other validation options can be specified using additional kargs. Please consult the RaptorXML CLI documentation http://manual.altova.com/RaptorXML/raptorxmlxbrlserver/rxcli_jsonavro_valjson.htm for a list of available options. Any errors and warnings reported during the validation can be accessed through the returnedxml.ErrorLog
object.
-
classmethod
json.Instance.
validate_url
(type cls, url, *, Schema schema, catalog=None, **kargs)¶ Validates the JSON document at the given url against the specified JSON schema according to the JSON schema draft 4 and returns
xml.ErrorLog
object with the results. Optional user XML catalogs can be specified with the catalog argument. Other validation options can be specified using additional kargs. Please consult the RaptorXML CLI documentation http://manual.altova.com/RaptorXML/raptorxmlxbrlserver/rxcli_jsonavro_valjson.htm for a list of available options. Any errors and warnings reported during the validation can be accessed through the returnedxml.ErrorLog
object.