https://github.com/microsoft/jsontojsonmapper
JsonToJsonMapper works on JSON format to exchange information between systems. It enables transformation of JSON data from one schema to another.
https://github.com/microsoft/jsontojsonmapper
automapper json-mapper json-to-json jsonschema jsonschema-generator mapper-algorithm
Last synced: 4 months ago
JSON representation
JsonToJsonMapper works on JSON format to exchange information between systems. It enables transformation of JSON data from one schema to another.
- Host: GitHub
- URL: https://github.com/microsoft/jsontojsonmapper
- Owner: microsoft
- License: mit
- Created: 2021-03-26T10:19:29.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-25T17:52:11.000Z (about 1 year ago)
- Last Synced: 2025-01-30T10:41:30.723Z (4 months ago)
- Topics: automapper, json-mapper, json-to-json, jsonschema, jsonschema-generator, mapper-algorithm
- Language: C#
- Homepage:
- Size: 1.89 MB
- Stars: 56
- Watchers: 5
- Forks: 12
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
- Support: SUPPORT.md
Awesome Lists containing this project
README
[](https://github.com/microsoft/JsonToJsonMapper/actions/workflows/dotnet-build-continuous.yml)
[](https://github.com/microsoft/JsonToJsonMapper/actions/workflows/dotnet-samples-build-continuous.yml)
[](https://coveralls.io/github/microsoft/JsonToJsonMapper?branch=main)
#Please note we are also targeting base json library in .net core going forward
# JsonToJsonMapperAutoMapper works on JSON format to exchange information between systems. It enables transformation of data from one canonical schema to another and allows integration of different SaaS applications through orchestration.
Following are some of the capabilities that Automapper currently supports:
1. Transformation from a flat type to flat/complex type.
2. Transformation from a complex type to flat/complex type.
3. Allows execution of CSharp script through Roslyn for complex transformation.
4. Supports JArray
5. Supports transformation of values from one datatype to another.
6. Data type validation
## Following are the handlers currently supported by the tool
**Transpose**
1. Key
2. Value
3. PrependText**Type converter**
1. Primitive data types
2. JObject
3. Jarray
4. DateTime Formatting and Timezone
5. Nullable int, guid and decimal**Roslyn Script**
1. Script
2. Params
3. Execution**Value Mapping**
1. Params**Function Handler**
1. Concatenation
2. Replace value
3. Split
4. ToUpper
5. ToLower
### Example
Source Json
```json
{
"result": [
{
"id": 2,
"leadId": 6,
"activityDate": "2013-09-26T06:56:35+0000",
"activityTypeId": 12,
"attributes": [
{
"name": "Source Type",
"value": "Web page visit"
},
{
"name": "Source Info",
"value": "https://www.bing.com/"
}
]
}
]
}
```
Expeced output
```javascript
{
"Content": [
{
"leadId": 6,
"Source Type": "Web page visit",
"Source Info": "https://www.bing.com/"
}
]
}
```Mapping config
```javascript
{
"MappingRuleConfig": {
"TruthTable": [
{
"DestinationColumn": "ContentJSON",
"ComplexType": {
"DataType": "JArray",
"Node": "$.result[*]",
"TruthTable": [
{
"SourceColumn": "$.leadId",
"DestinationColumn": "leadId",
"DataType": "long"
},
{
"SourceColumn": "$.attributes[*]",
"DataType": "JArray",
"TransformValue": {
"Type": "PromoteArrayToProperty",
"KeyLookupField": "$.name",
"ValueLookupField": "$.value"
}
}
]
}
]
}
}
```## Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.When you submit a pull request, a CLA bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [[email protected]](mailto:[email protected]) with any additional questions or comments.## Code of Conduct
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
## Trademarks
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
trademarks or logos is subject to and must follow
[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
Any use of third-party trademarks or logos are subject to those third-party's policies.