@uplo1/schemas 1.0.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.
Files changed (83) hide show
  1. package/README.md +173 -0
  2. package/accounting/accounting.json +58 -0
  3. package/accounting/index.json +13 -0
  4. package/agriculture/agriculture.json +58 -0
  5. package/agriculture/index.json +13 -0
  6. package/architecture/architecture.json +58 -0
  7. package/architecture/index.json +13 -0
  8. package/banking/banking.json +58 -0
  9. package/banking/index.json +13 -0
  10. package/construction/construction.json +58 -0
  11. package/construction/index.json +13 -0
  12. package/consulting/consulting.json +58 -0
  13. package/consulting/index.json +13 -0
  14. package/customer_success/customer_success.json +58 -0
  15. package/customer_success/index.json +13 -0
  16. package/cybersecurity/cybersecurity.json +58 -0
  17. package/cybersecurity/index.json +13 -0
  18. package/data_analytics/data_analytics.json +58 -0
  19. package/data_analytics/index.json +13 -0
  20. package/defense/defense.json +58 -0
  21. package/defense/index.json +13 -0
  22. package/education/education.json +58 -0
  23. package/education/index.json +13 -0
  24. package/energy/energy.json +58 -0
  25. package/energy/index.json +13 -0
  26. package/engineering/engineering.json +58 -0
  27. package/engineering/index.json +13 -0
  28. package/environmental/environmental.json +58 -0
  29. package/environmental/index.json +13 -0
  30. package/facilities/facilities.json +58 -0
  31. package/facilities/index.json +13 -0
  32. package/finance/finance.json +58 -0
  33. package/finance/index.json +13 -0
  34. package/food_safety/food_safety.json +58 -0
  35. package/food_safety/index.json +13 -0
  36. package/github/github.json +58 -0
  37. package/github/index.json +13 -0
  38. package/government/government.json +58 -0
  39. package/government/index.json +13 -0
  40. package/healthcare/healthcare.json +58 -0
  41. package/healthcare/index.json +13 -0
  42. package/hospitality/hospitality.json +58 -0
  43. package/hospitality/index.json +13 -0
  44. package/hr/hr.json +58 -0
  45. package/hr/index.json +13 -0
  46. package/index.json +287 -0
  47. package/insurance/index.json +13 -0
  48. package/insurance/insurance.json +58 -0
  49. package/it_devops/index.json +13 -0
  50. package/it_devops/it_devops.json +58 -0
  51. package/knowledge_management/index.json +13 -0
  52. package/knowledge_management/knowledge_management.json +58 -0
  53. package/legal/index.json +13 -0
  54. package/legal/legal.json +58 -0
  55. package/logistics/index.json +13 -0
  56. package/logistics/logistics.json +58 -0
  57. package/manufacturing/index.json +13 -0
  58. package/manufacturing/manufacturing.json +58 -0
  59. package/media/index.json +13 -0
  60. package/media/media.json +58 -0
  61. package/nonprofit/index.json +13 -0
  62. package/nonprofit/nonprofit.json +58 -0
  63. package/operations/index.json +13 -0
  64. package/operations/operations.json +58 -0
  65. package/package.json +110 -0
  66. package/pharma/index.json +13 -0
  67. package/pharma/pharma.json +58 -0
  68. package/procurement/index.json +13 -0
  69. package/procurement/procurement.json +58 -0
  70. package/product_management/index.json +13 -0
  71. package/product_management/product_management.json +58 -0
  72. package/real_estate/index.json +13 -0
  73. package/real_estate/real_estate.json +58 -0
  74. package/research/index.json +13 -0
  75. package/research/research.json +58 -0
  76. package/retail/index.json +13 -0
  77. package/retail/retail.json +58 -0
  78. package/sales_marketing/index.json +13 -0
  79. package/sales_marketing/sales_marketing.json +58 -0
  80. package/telecom/index.json +13 -0
  81. package/telecom/telecom.json +58 -0
  82. package/training/index.json +13 -0
  83. package/training/training.json +58 -0
@@ -0,0 +1,58 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://uplo.ai/schemas/cybersecurity/cybersecurity.json",
4
+ "title": "Cybersecurity",
5
+ "description": "Schemas for vulnerability reports, threat assessments, incident response, and access reviews",
6
+ "type": "object",
7
+ "properties": {
8
+ "id": {
9
+ "type": "string",
10
+ "format": "uuid",
11
+ "description": "Unique entry identifier"
12
+ },
13
+ "schema_id": {
14
+ "type": "string",
15
+ "const": "cybersecurity",
16
+ "description": "Schema type identifier"
17
+ },
18
+ "title": {
19
+ "type": "string",
20
+ "description": "Entry title"
21
+ },
22
+ "extracted_data": {
23
+ "type": "object",
24
+ "description": "Structured data extracted by UPLO"
25
+ },
26
+ "source_id": {
27
+ "type": "string",
28
+ "format": "uuid",
29
+ "description": "Source document reference"
30
+ },
31
+ "confidence": {
32
+ "type": "number",
33
+ "minimum": 0,
34
+ "maximum": 1,
35
+ "description": "Extraction confidence score"
36
+ },
37
+ "status": {
38
+ "type": "string",
39
+ "enum": [
40
+ "unverified",
41
+ "verified",
42
+ "stale",
43
+ "rejected"
44
+ ]
45
+ },
46
+ "created_at": {
47
+ "type": "string",
48
+ "format": "date-time"
49
+ }
50
+ },
51
+ "required": [
52
+ "id",
53
+ "schema_id",
54
+ "title",
55
+ "extracted_data"
56
+ ],
57
+ "additionalProperties": true
58
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "pack": "cybersecurity",
3
+ "displayName": "Cybersecurity",
4
+ "category": "IT & DevOps",
5
+ "schemas": [
6
+ {
7
+ "id": "cybersecurity",
8
+ "name": "Cybersecurity",
9
+ "description": "Schemas for vulnerability reports, threat assessments, incident response, and access reviews",
10
+ "file": "cybersecurity.json"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://uplo.ai/schemas/data_analytics/data_analytics.json",
4
+ "title": "Data Analytics",
5
+ "description": "Schemas for dataset catalogs, pipelines, dashboards, and data quality reports",
6
+ "type": "object",
7
+ "properties": {
8
+ "id": {
9
+ "type": "string",
10
+ "format": "uuid",
11
+ "description": "Unique entry identifier"
12
+ },
13
+ "schema_id": {
14
+ "type": "string",
15
+ "const": "data_analytics",
16
+ "description": "Schema type identifier"
17
+ },
18
+ "title": {
19
+ "type": "string",
20
+ "description": "Entry title"
21
+ },
22
+ "extracted_data": {
23
+ "type": "object",
24
+ "description": "Structured data extracted by UPLO"
25
+ },
26
+ "source_id": {
27
+ "type": "string",
28
+ "format": "uuid",
29
+ "description": "Source document reference"
30
+ },
31
+ "confidence": {
32
+ "type": "number",
33
+ "minimum": 0,
34
+ "maximum": 1,
35
+ "description": "Extraction confidence score"
36
+ },
37
+ "status": {
38
+ "type": "string",
39
+ "enum": [
40
+ "unverified",
41
+ "verified",
42
+ "stale",
43
+ "rejected"
44
+ ]
45
+ },
46
+ "created_at": {
47
+ "type": "string",
48
+ "format": "date-time"
49
+ }
50
+ },
51
+ "required": [
52
+ "id",
53
+ "schema_id",
54
+ "title",
55
+ "extracted_data"
56
+ ],
57
+ "additionalProperties": true
58
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "pack": "data_analytics",
3
+ "displayName": "Data Analytics",
4
+ "category": "Data & Analytics",
5
+ "schemas": [
6
+ {
7
+ "id": "data_analytics",
8
+ "name": "Data Analytics",
9
+ "description": "Schemas for dataset catalogs, pipelines, dashboards, and data quality reports",
10
+ "file": "data_analytics.json"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://uplo.ai/schemas/defense/defense.json",
4
+ "title": "Defense",
5
+ "description": "Schemas for requirements specifications, test verification, configuration items, and certification records",
6
+ "type": "object",
7
+ "properties": {
8
+ "id": {
9
+ "type": "string",
10
+ "format": "uuid",
11
+ "description": "Unique entry identifier"
12
+ },
13
+ "schema_id": {
14
+ "type": "string",
15
+ "const": "defense",
16
+ "description": "Schema type identifier"
17
+ },
18
+ "title": {
19
+ "type": "string",
20
+ "description": "Entry title"
21
+ },
22
+ "extracted_data": {
23
+ "type": "object",
24
+ "description": "Structured data extracted by UPLO"
25
+ },
26
+ "source_id": {
27
+ "type": "string",
28
+ "format": "uuid",
29
+ "description": "Source document reference"
30
+ },
31
+ "confidence": {
32
+ "type": "number",
33
+ "minimum": 0,
34
+ "maximum": 1,
35
+ "description": "Extraction confidence score"
36
+ },
37
+ "status": {
38
+ "type": "string",
39
+ "enum": [
40
+ "unverified",
41
+ "verified",
42
+ "stale",
43
+ "rejected"
44
+ ]
45
+ },
46
+ "created_at": {
47
+ "type": "string",
48
+ "format": "date-time"
49
+ }
50
+ },
51
+ "required": [
52
+ "id",
53
+ "schema_id",
54
+ "title",
55
+ "extracted_data"
56
+ ],
57
+ "additionalProperties": true
58
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "pack": "defense",
3
+ "displayName": "Defense",
4
+ "category": "Government & Public Sector",
5
+ "schemas": [
6
+ {
7
+ "id": "defense",
8
+ "name": "Defense",
9
+ "description": "Schemas for requirements specifications, test verification, configuration items, and certification records",
10
+ "file": "defense.json"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://uplo.ai/schemas/education/education.json",
4
+ "title": "Education",
5
+ "description": "Schemas for syllabi, lesson plans, research summaries, and accreditation",
6
+ "type": "object",
7
+ "properties": {
8
+ "id": {
9
+ "type": "string",
10
+ "format": "uuid",
11
+ "description": "Unique entry identifier"
12
+ },
13
+ "schema_id": {
14
+ "type": "string",
15
+ "const": "education",
16
+ "description": "Schema type identifier"
17
+ },
18
+ "title": {
19
+ "type": "string",
20
+ "description": "Entry title"
21
+ },
22
+ "extracted_data": {
23
+ "type": "object",
24
+ "description": "Structured data extracted by UPLO"
25
+ },
26
+ "source_id": {
27
+ "type": "string",
28
+ "format": "uuid",
29
+ "description": "Source document reference"
30
+ },
31
+ "confidence": {
32
+ "type": "number",
33
+ "minimum": 0,
34
+ "maximum": 1,
35
+ "description": "Extraction confidence score"
36
+ },
37
+ "status": {
38
+ "type": "string",
39
+ "enum": [
40
+ "unverified",
41
+ "verified",
42
+ "stale",
43
+ "rejected"
44
+ ]
45
+ },
46
+ "created_at": {
47
+ "type": "string",
48
+ "format": "date-time"
49
+ }
50
+ },
51
+ "required": [
52
+ "id",
53
+ "schema_id",
54
+ "title",
55
+ "extracted_data"
56
+ ],
57
+ "additionalProperties": true
58
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "pack": "education",
3
+ "displayName": "Education",
4
+ "category": "Education",
5
+ "schemas": [
6
+ {
7
+ "id": "education",
8
+ "name": "Education",
9
+ "description": "Schemas for syllabi, lesson plans, research summaries, and accreditation",
10
+ "file": "education.json"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://uplo.ai/schemas/energy/energy.json",
4
+ "title": "Energy",
5
+ "description": "Schemas for asset registries, outage reports, compliance filings, and generation logs",
6
+ "type": "object",
7
+ "properties": {
8
+ "id": {
9
+ "type": "string",
10
+ "format": "uuid",
11
+ "description": "Unique entry identifier"
12
+ },
13
+ "schema_id": {
14
+ "type": "string",
15
+ "const": "energy",
16
+ "description": "Schema type identifier"
17
+ },
18
+ "title": {
19
+ "type": "string",
20
+ "description": "Entry title"
21
+ },
22
+ "extracted_data": {
23
+ "type": "object",
24
+ "description": "Structured data extracted by UPLO"
25
+ },
26
+ "source_id": {
27
+ "type": "string",
28
+ "format": "uuid",
29
+ "description": "Source document reference"
30
+ },
31
+ "confidence": {
32
+ "type": "number",
33
+ "minimum": 0,
34
+ "maximum": 1,
35
+ "description": "Extraction confidence score"
36
+ },
37
+ "status": {
38
+ "type": "string",
39
+ "enum": [
40
+ "unverified",
41
+ "verified",
42
+ "stale",
43
+ "rejected"
44
+ ]
45
+ },
46
+ "created_at": {
47
+ "type": "string",
48
+ "format": "date-time"
49
+ }
50
+ },
51
+ "required": [
52
+ "id",
53
+ "schema_id",
54
+ "title",
55
+ "extracted_data"
56
+ ],
57
+ "additionalProperties": true
58
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "pack": "energy",
3
+ "displayName": "Energy",
4
+ "category": "Energy & Utilities",
5
+ "schemas": [
6
+ {
7
+ "id": "energy",
8
+ "name": "Energy",
9
+ "description": "Schemas for asset registries, outage reports, compliance filings, and generation logs",
10
+ "file": "energy.json"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://uplo.ai/schemas/engineering/engineering.json",
4
+ "title": "Engineering",
5
+ "description": "Schemas for technical specs, BOMs, test reports, and incident reports",
6
+ "type": "object",
7
+ "properties": {
8
+ "id": {
9
+ "type": "string",
10
+ "format": "uuid",
11
+ "description": "Unique entry identifier"
12
+ },
13
+ "schema_id": {
14
+ "type": "string",
15
+ "const": "engineering",
16
+ "description": "Schema type identifier"
17
+ },
18
+ "title": {
19
+ "type": "string",
20
+ "description": "Entry title"
21
+ },
22
+ "extracted_data": {
23
+ "type": "object",
24
+ "description": "Structured data extracted by UPLO"
25
+ },
26
+ "source_id": {
27
+ "type": "string",
28
+ "format": "uuid",
29
+ "description": "Source document reference"
30
+ },
31
+ "confidence": {
32
+ "type": "number",
33
+ "minimum": 0,
34
+ "maximum": 1,
35
+ "description": "Extraction confidence score"
36
+ },
37
+ "status": {
38
+ "type": "string",
39
+ "enum": [
40
+ "unverified",
41
+ "verified",
42
+ "stale",
43
+ "rejected"
44
+ ]
45
+ },
46
+ "created_at": {
47
+ "type": "string",
48
+ "format": "date-time"
49
+ }
50
+ },
51
+ "required": [
52
+ "id",
53
+ "schema_id",
54
+ "title",
55
+ "extracted_data"
56
+ ],
57
+ "additionalProperties": true
58
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "pack": "engineering",
3
+ "displayName": "Engineering",
4
+ "category": "Engineering & Technology",
5
+ "schemas": [
6
+ {
7
+ "id": "engineering",
8
+ "name": "Engineering",
9
+ "description": "Schemas for technical specs, BOMs, test reports, and incident reports",
10
+ "file": "engineering.json"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://uplo.ai/schemas/environmental/environmental.json",
4
+ "title": "Environmental",
5
+ "description": "Schemas for impact assessments, monitoring reports, permit applications, and compliance audits",
6
+ "type": "object",
7
+ "properties": {
8
+ "id": {
9
+ "type": "string",
10
+ "format": "uuid",
11
+ "description": "Unique entry identifier"
12
+ },
13
+ "schema_id": {
14
+ "type": "string",
15
+ "const": "environmental",
16
+ "description": "Schema type identifier"
17
+ },
18
+ "title": {
19
+ "type": "string",
20
+ "description": "Entry title"
21
+ },
22
+ "extracted_data": {
23
+ "type": "object",
24
+ "description": "Structured data extracted by UPLO"
25
+ },
26
+ "source_id": {
27
+ "type": "string",
28
+ "format": "uuid",
29
+ "description": "Source document reference"
30
+ },
31
+ "confidence": {
32
+ "type": "number",
33
+ "minimum": 0,
34
+ "maximum": 1,
35
+ "description": "Extraction confidence score"
36
+ },
37
+ "status": {
38
+ "type": "string",
39
+ "enum": [
40
+ "unverified",
41
+ "verified",
42
+ "stale",
43
+ "rejected"
44
+ ]
45
+ },
46
+ "created_at": {
47
+ "type": "string",
48
+ "format": "date-time"
49
+ }
50
+ },
51
+ "required": [
52
+ "id",
53
+ "schema_id",
54
+ "title",
55
+ "extracted_data"
56
+ ],
57
+ "additionalProperties": true
58
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "pack": "environmental",
3
+ "displayName": "Environmental",
4
+ "category": "Environmental",
5
+ "schemas": [
6
+ {
7
+ "id": "environmental",
8
+ "name": "Environmental",
9
+ "description": "Schemas for impact assessments, monitoring reports, permit applications, and compliance audits",
10
+ "file": "environmental.json"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://uplo.ai/schemas/facilities/facilities.json",
4
+ "title": "Facilities",
5
+ "description": "Schemas for space plans, maintenance requests, lease abstracts, and safety inspections",
6
+ "type": "object",
7
+ "properties": {
8
+ "id": {
9
+ "type": "string",
10
+ "format": "uuid",
11
+ "description": "Unique entry identifier"
12
+ },
13
+ "schema_id": {
14
+ "type": "string",
15
+ "const": "facilities",
16
+ "description": "Schema type identifier"
17
+ },
18
+ "title": {
19
+ "type": "string",
20
+ "description": "Entry title"
21
+ },
22
+ "extracted_data": {
23
+ "type": "object",
24
+ "description": "Structured data extracted by UPLO"
25
+ },
26
+ "source_id": {
27
+ "type": "string",
28
+ "format": "uuid",
29
+ "description": "Source document reference"
30
+ },
31
+ "confidence": {
32
+ "type": "number",
33
+ "minimum": 0,
34
+ "maximum": 1,
35
+ "description": "Extraction confidence score"
36
+ },
37
+ "status": {
38
+ "type": "string",
39
+ "enum": [
40
+ "unverified",
41
+ "verified",
42
+ "stale",
43
+ "rejected"
44
+ ]
45
+ },
46
+ "created_at": {
47
+ "type": "string",
48
+ "format": "date-time"
49
+ }
50
+ },
51
+ "required": [
52
+ "id",
53
+ "schema_id",
54
+ "title",
55
+ "extracted_data"
56
+ ],
57
+ "additionalProperties": true
58
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "pack": "facilities",
3
+ "displayName": "Facilities",
4
+ "category": "Facilities Management",
5
+ "schemas": [
6
+ {
7
+ "id": "facilities",
8
+ "name": "Facilities",
9
+ "description": "Schemas for space plans, maintenance requests, lease abstracts, and safety inspections",
10
+ "file": "facilities.json"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,58 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://uplo.ai/schemas/finance/finance.json",
4
+ "title": "Finance",
5
+ "description": "Schemas for financial statements, invoices, tax documents, and audits",
6
+ "type": "object",
7
+ "properties": {
8
+ "id": {
9
+ "type": "string",
10
+ "format": "uuid",
11
+ "description": "Unique entry identifier"
12
+ },
13
+ "schema_id": {
14
+ "type": "string",
15
+ "const": "finance",
16
+ "description": "Schema type identifier"
17
+ },
18
+ "title": {
19
+ "type": "string",
20
+ "description": "Entry title"
21
+ },
22
+ "extracted_data": {
23
+ "type": "object",
24
+ "description": "Structured data extracted by UPLO"
25
+ },
26
+ "source_id": {
27
+ "type": "string",
28
+ "format": "uuid",
29
+ "description": "Source document reference"
30
+ },
31
+ "confidence": {
32
+ "type": "number",
33
+ "minimum": 0,
34
+ "maximum": 1,
35
+ "description": "Extraction confidence score"
36
+ },
37
+ "status": {
38
+ "type": "string",
39
+ "enum": [
40
+ "unverified",
41
+ "verified",
42
+ "stale",
43
+ "rejected"
44
+ ]
45
+ },
46
+ "created_at": {
47
+ "type": "string",
48
+ "format": "date-time"
49
+ }
50
+ },
51
+ "required": [
52
+ "id",
53
+ "schema_id",
54
+ "title",
55
+ "extracted_data"
56
+ ],
57
+ "additionalProperties": true
58
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "pack": "finance",
3
+ "displayName": "Finance",
4
+ "category": "Finance & Banking",
5
+ "schemas": [
6
+ {
7
+ "id": "finance",
8
+ "name": "Finance",
9
+ "description": "Schemas for financial statements, invoices, tax documents, and audits",
10
+ "file": "finance.json"
11
+ }
12
+ ]
13
+ }