@qualipool/swissrets-json
Version:
A swiss real estate transfer standard.
71 lines (50 loc) • 2.45 kB
Markdown
[](https://pnpm.io)
[](https://github.com/qualipool/swissrets-json/releases)
[](https://github.com/qualipool/swissrets-json/actions?query=workflow%3Apr)
[](https://github.com/qualipool/swissrets/blob/master/LICENSE.md)
SwissRETS JSON
=========
SwissRETS is a swiss real estate transaction standard. It aims to solve data exchange between real estate software and platforms. It's meant to be a replacement for old and static formats like the widely used [IDX 3.01](https://en.wikipedia.org/wiki/Internet_Data_Exchange) in Switzerland.
This repository is a fork of the XML-based repository https://github.com/qualipool/swissrets. The primary development of the standard will take place here, while we aim to maintain the XML standard without introducing new features.
Check out the schema [documentation](https://qualipool.github.io/swissrets-json/).
## Online Validator
You can validate SwissRETS-JSON data on our online validator: https://qualipool.github.io/swissrets-json/validator.html
## NPM Package
### Referencing the package
* Add the package with `pnpm add @qualipool/swissrets-json`
### Using the typescript schema validator
```ts
import {
validateSwissRets,
SwissRetsInventory
} from '@qualipool/swissrets-json';
// validating a SwissRETS JSON string
const stringValue = `{
"created": "2023-03-23T08:11:12Z",
"generator": {
"name": "CASAGATEWAY",
"version": "0.9"
},
"properties": []
}`;
const result = validateSwissRets(Value);
console.log(result);
// validating a SwissRETS JSON object
const srObject: SwissRetsInventory = {
created: '2023-03-23T08:11:12Z',
generator: {
name: 'CASAGATEWAY',
version: '0.9'
},
properties: []
};
result = validateSwissRets(srObject);
console.log(result);
```
## Code of conduct
Please review and follow the [Code of conduct](./CODE_OF_CONDUCT.md).
Please report any unacceptable behaviour to the maintainers.
## Migration from XML to JSON standard
Find the guidelines for the migration from the XML standard in the [Migration Guide](./MIGRATION-GUIDE.md).
## License
[MIT](./LICENSE.md)