@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 +1 -1
- package/dist/schemes/registry.json +49 -0
- package/package.json +1 -1
- package/schemes/registry.json +49 -0
package/README.md
CHANGED
|
@@ -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
package/schemes/registry.json
CHANGED
|
@@ -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",
|