If you are beginning your journey with Senzing, please start with Senzing Quick Start guides.
You are in the Senzing Garage where projects are "tinkered" on. Although this GitHub repository may help you understand an approach to using Senzing, it's not considered to be "production ready" and is not considered to be part of the Senzing product. Heck, it may not even be appropriate for your application of Senzing!
At the moment, this is "work-in-progress" with Semantic Versions of 0.n.x.
Although it can be reviewed and commented on,
the recommendation is not to use it yet.
The Senzing sz-sdk-json-type-definition uses JSON Type Definition
to model the JSON that is returned from Senzing SDK calls.
Code generated from this model improves compile-time type checking and code-completion in Integrated Development Environments (IDE) (e.g. "VSCode's IntelliSense").
By using the code generated by JSON Type Definition, JSON returned by the Senzing SDK calls are easier to parse. Examples:
- Python - main.py
- Go - main.go
- Java - Main.java
- Typescript - main.ts
- C-sharp Program.cs
The actual specification is senzingsdk-RFC8927.json.
From this specification, code is generated for the following languages:
- Python comparison:
-
Here's how to parse a Senzing JSON response without
senzing-json:result = sz_engine.get_virtual_entity_by_record_id(record_keys, flags) feature_list = result.get("RESOLVED_ENTITY", {}).get("FEATURES", {}).get("NAME", [])
- Note that the JSON keys and datatypes of the values must be known ahead of time. Also, this method is subject to typographical errors.
-
Here's how to parse a Senzing JSON response with
senzing-json:result = sz_engine.get_virtual_entity_by_record_id(record_keys, flags) virtual_entity = SzEngineGetVirtualEntityByRecordIDResponse.from_json_data(result) feature_list = virtual_entity.resolved_entity.features["NAME"]
- When using an IDE, the fields and datatypes are supplied by the IDE's code-completion. Typos will be flagged by the IDE.
-
- Development
- Errors
- Examples
- Packages