@traittech/traits-validator-2 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @trevo-finance/traits-validator
1
+ ## @traittech/traits-validator-2
2
2
 
3
3
  Lightweight helper over the Trevo Traits Registry.
4
4
 
@@ -1,4 +1,53 @@
1
1
  {
2
+ "finance.trevo.studio.compliance_provider": {
3
+ "$id": "https://trevo-finance.github.io/trevo-traits-registry/traits/finance.trevo.studio/compliance_provider/trait.json",
4
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
5
+ "title": "Compliance provider details",
6
+ "description": "This trait provides detailed information about a compliance provider.",
7
+ "type": "object",
8
+ "properties": {
9
+ "tagline": {
10
+ "description": "A short tagline or slogan for the compliance provider.",
11
+ "type": "string",
12
+ "minLength": 1,
13
+ "maxLength": 100
14
+ },
15
+ "jurisdictions": {
16
+ "description": "List of jurisdictions covered by the provider.",
17
+ "type": "array",
18
+ "items": {
19
+ "type": "string"
20
+ }
21
+ },
22
+ "categories": {
23
+ "description": "Categories of services provided.",
24
+ "type": "array",
25
+ "items": {
26
+ "type": "string"
27
+ }
28
+ },
29
+ "pricing": {
30
+ "description": "Pricing information.",
31
+ "type": "object",
32
+ "properties": {
33
+ "per_check": {
34
+ "description": "Price per check in USD.",
35
+ "type": "number"
36
+ }
37
+ },
38
+ "required": [
39
+ "per_check"
40
+ ],
41
+ "additionalProperties": false
42
+ },
43
+ "description": {
44
+ "description": "Detailed description in Markdown format.",
45
+ "type": "string",
46
+ "minLength": 1
47
+ }
48
+ },
49
+ "additionalProperties": false
50
+ },
2
51
  "finance.trevo.studio.compliance_provider_description": {
3
52
  "$id": "https://trevo-finance.github.io/trevo-traits-registry/traits/finance.trevo.studio/compliance_provider_description/trait.json",
4
53
  "$schema": "https://json-schema.org/draft/2020-12/schema",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@traittech/traits-validator-2",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "main": "dist/esm/index.js",
@@ -1,4 +1,53 @@
1
1
  {
2
+ "finance.trevo.studio.compliance_provider": {
3
+ "$id": "https://trevo-finance.github.io/trevo-traits-registry/traits/finance.trevo.studio/compliance_provider/trait.json",
4
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
5
+ "title": "Compliance provider details",
6
+ "description": "This trait provides detailed information about a compliance provider.",
7
+ "type": "object",
8
+ "properties": {
9
+ "tagline": {
10
+ "description": "A short tagline or slogan for the compliance provider.",
11
+ "type": "string",
12
+ "minLength": 1,
13
+ "maxLength": 100
14
+ },
15
+ "jurisdictions": {
16
+ "description": "List of jurisdictions covered by the provider.",
17
+ "type": "array",
18
+ "items": {
19
+ "type": "string"
20
+ }
21
+ },
22
+ "categories": {
23
+ "description": "Categories of services provided.",
24
+ "type": "array",
25
+ "items": {
26
+ "type": "string"
27
+ }
28
+ },
29
+ "pricing": {
30
+ "description": "Pricing information.",
31
+ "type": "object",
32
+ "properties": {
33
+ "per_check": {
34
+ "description": "Price per check in USD.",
35
+ "type": "number"
36
+ }
37
+ },
38
+ "required": [
39
+ "per_check"
40
+ ],
41
+ "additionalProperties": false
42
+ },
43
+ "description": {
44
+ "description": "Detailed description in Markdown format.",
45
+ "type": "string",
46
+ "minLength": 1
47
+ }
48
+ },
49
+ "additionalProperties": false
50
+ },
2
51
  "finance.trevo.studio.compliance_provider_description": {
3
52
  "$id": "https://trevo-finance.github.io/trevo-traits-registry/traits/finance.trevo.studio/compliance_provider_description/trait.json",
4
53
  "$schema": "https://json-schema.org/draft/2020-12/schema",