@pacp/spec 1.0.2 → 1.1.0
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 +9 -13
- package/dist/index.cjs +0 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +30 -36
- package/dist/index.d.ts +30 -36
- package/dist/index.js +0 -4
- package/dist/index.js.map +1 -1
- package/dist/pacp.schema.json +795 -217
- package/dist/profiles/fiscal-br.schema.json +1 -1
- package/dist/profiles/iluminacao.schema.json +1 -1
- package/dist/profiles/moveis.schema.json +2 -2
- package/dist/profiles/pisos-revestimentos.schema.json +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://
|
|
3
|
+
"$id": "https://cdn.jsdelivr.net/npm/@pacp/spec@latest/dist/profiles/fiscal-br.schema.json",
|
|
4
4
|
"title": "PACP Profile: Fiscal Brasil",
|
|
5
5
|
"description": "Extension profile para dados fiscais brasileiros. Define campos x-* recomendados para compliance fiscal no Brasil.",
|
|
6
6
|
"type": "object",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://
|
|
3
|
+
"$id": "https://cdn.jsdelivr.net/npm/@pacp/spec@latest/dist/profiles/iluminacao.schema.json",
|
|
4
4
|
"title": "PACP Profile: Iluminacao",
|
|
5
5
|
"description": "Extension profile para produtos de iluminacao. Define campos x-* recomendados para o setor.",
|
|
6
6
|
"type": "object",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://
|
|
3
|
+
"$id": "https://cdn.jsdelivr.net/npm/@pacp/spec@latest/dist/profiles/moveis.schema.json",
|
|
4
4
|
"title": "PACP Profile: Moveis e Alta Decoracao",
|
|
5
5
|
"description": "Extension profile para produtos de moveis e alta decoracao. Define campos x-* recomendados para o setor.",
|
|
6
6
|
"type": "object",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"description": "Indica se o produto requer montagem."
|
|
11
11
|
},
|
|
12
12
|
"x-load_capacity": {
|
|
13
|
-
"$ref": "https://
|
|
13
|
+
"$ref": "https://cdn.jsdelivr.net/npm/@pacp/spec@latest/dist/pacp.schema.json#/$defs/measure",
|
|
14
14
|
"description": "Capacidade de carga do movel (ex: {value: 50, unit: 'kg'})."
|
|
15
15
|
},
|
|
16
16
|
"x-material_composition": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://
|
|
3
|
+
"$id": "https://cdn.jsdelivr.net/npm/@pacp/spec@latest/dist/profiles/pisos-revestimentos.schema.json",
|
|
4
4
|
"title": "PACP Profile: Pisos e Revestimentos",
|
|
5
5
|
"description": "Extension profile para produtos de pisos e revestimentos ceramicos, porcelanatos e afins. Define campos x-* recomendados para o setor.",
|
|
6
6
|
"type": "object",
|
package/package.json
CHANGED