@travetto/schema
Advanced tools
Comparing version 3.0.0-rc.24 to 3.0.0-rc.25
{ | ||
"name": "@travetto/schema", | ||
"version": "3.0.0-rc.24", | ||
"version": "3.0.0-rc.25", | ||
"description": "Data type registry for runtime validation, reflection and binding.", | ||
@@ -30,6 +30,6 @@ "keywords": [ | ||
"dependencies": { | ||
"@travetto/registry": "^3.0.0-rc.23" | ||
"@travetto/registry": "^3.0.0-rc.24" | ||
}, | ||
"peerDependencies": { | ||
"@travetto/transformer": "^3.0.0-rc.21" | ||
"@travetto/transformer": "^3.0.0-rc.22" | ||
}, | ||
@@ -36,0 +36,0 @@ "peerDependenciesMeta": { |
@@ -9,6 +9,10 @@ <!-- This file was generated by @travetto/doc and should not be modified directly --> | ||
npm install @travetto/schema | ||
# or | ||
yarn add @travetto/schema | ||
``` | ||
This module's purpose is to allow for proper declaration and validation of data types, in the course of running a program. The framework defined here, is | ||
leveraged in the [Configuration](https://github.com/travetto/travetto/tree/main/module/config#readme "Configuration support"), [Application](https://github.com/travetto/travetto/tree/main/module/app#readme "Application registration/management and run support."), [RESTful API](https://github.com/travetto/travetto/tree/main/module/rest#readme "Declarative api for RESTful APIs with support for the dependency injection module."), [OpenAPI Specification](https://github.com/travetto/travetto/tree/main/module/openapi#readme "OpenAPI integration support for the travetto framework") and [Data Modeling Support](https://github.com/travetto/travetto/tree/main/module/model#readme "Datastore abstraction for core operations.") modules. The schema is the backbone of all data transfer, as it helps to | ||
leveraged in the [Configuration](https://github.com/travetto/travetto/tree/main/module/config#readme "Configuration support"), [Application](https://github.com/travetto/travetto/tree/main/module/app#readme "Application registration/management and run support."), [RESTful API](https://github.com/travetto/travetto/tree/main/module/rest#readme "Declarative api for RESTful APIs with support for the dependency injection module."), [OpenAPI Specification](https://github.com/travetto/travetto/tree/main/module/openapi#readme "OpenAPI integration support for the Travetto framework") and [Data Modeling Support](https://github.com/travetto/travetto/tree/main/module/model#readme "Datastore abstraction for core operations.") modules. The schema is the backbone of all data transfer, as it helps to | ||
provide validation on correctness of input, whether it is a rest request, command line inputs, or a configuration file. | ||
@@ -15,0 +19,0 @@ |
87033
365