@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/manufacturing/manufacturing.json",
4
+ "title": "Manufacturing",
5
+ "description": "Schemas for work orders, quality inspections, production schedules, and equipment maintenance",
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": "manufacturing",
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": "media",
3
+ "displayName": "Media",
4
+ "category": "Media & Entertainment",
5
+ "schemas": [
6
+ {
7
+ "id": "media",
8
+ "name": "Media",
9
+ "description": "Schemas for content briefs, rights agreements, production schedules, and distribution reports",
10
+ "file": "media.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/media/media.json",
4
+ "title": "Media",
5
+ "description": "Schemas for content briefs, rights agreements, production schedules, and distribution 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": "media",
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": "nonprofit",
3
+ "displayName": "Nonprofit",
4
+ "category": "Nonprofit",
5
+ "schemas": [
6
+ {
7
+ "id": "nonprofit",
8
+ "name": "Nonprofit",
9
+ "description": "Schemas for donor records, grant reports, program outcomes, and volunteer logs",
10
+ "file": "nonprofit.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/nonprofit/nonprofit.json",
4
+ "title": "Nonprofit",
5
+ "description": "Schemas for donor records, grant reports, program outcomes, and volunteer 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": "nonprofit",
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": "operations",
3
+ "displayName": "Operations",
4
+ "category": "Operations",
5
+ "schemas": [
6
+ {
7
+ "id": "operations",
8
+ "name": "Operations",
9
+ "description": "Schemas for SOPs, capacity plans, risk registers, and operational reviews",
10
+ "file": "operations.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/operations/operations.json",
4
+ "title": "Operations",
5
+ "description": "Schemas for SOPs, capacity plans, risk registers, and operational 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": "operations",
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
+ }
package/package.json ADDED
@@ -0,0 +1,110 @@
1
+ {
2
+ "name": "@uplo1/schemas",
3
+ "version": "1.0.0",
4
+ "description": "40 industry-specific extraction schemas from UPLO — the organizational digital twin for AI",
5
+ "type": "module",
6
+ "main": "index.json",
7
+ "exports": {
8
+ ".": "./index.json",
9
+ "./accounting": "./accounting/index.json",
10
+ "./agriculture": "./agriculture/index.json",
11
+ "./architecture": "./architecture/index.json",
12
+ "./banking": "./banking/index.json",
13
+ "./construction": "./construction/index.json",
14
+ "./consulting": "./consulting/index.json",
15
+ "./customer_success": "./customer_success/index.json",
16
+ "./cybersecurity": "./cybersecurity/index.json",
17
+ "./data_analytics": "./data_analytics/index.json",
18
+ "./defense": "./defense/index.json",
19
+ "./education": "./education/index.json",
20
+ "./energy": "./energy/index.json",
21
+ "./engineering": "./engineering/index.json",
22
+ "./environmental": "./environmental/index.json",
23
+ "./facilities": "./facilities/index.json",
24
+ "./finance": "./finance/index.json",
25
+ "./food_safety": "./food_safety/index.json",
26
+ "./github": "./github/index.json",
27
+ "./government": "./government/index.json",
28
+ "./healthcare": "./healthcare/index.json",
29
+ "./hospitality": "./hospitality/index.json",
30
+ "./hr": "./hr/index.json",
31
+ "./insurance": "./insurance/index.json",
32
+ "./it_devops": "./it_devops/index.json",
33
+ "./knowledge_management": "./knowledge_management/index.json",
34
+ "./legal": "./legal/index.json",
35
+ "./logistics": "./logistics/index.json",
36
+ "./manufacturing": "./manufacturing/index.json",
37
+ "./media": "./media/index.json",
38
+ "./nonprofit": "./nonprofit/index.json",
39
+ "./operations": "./operations/index.json",
40
+ "./pharma": "./pharma/index.json",
41
+ "./procurement": "./procurement/index.json",
42
+ "./product_management": "./product_management/index.json",
43
+ "./real_estate": "./real_estate/index.json",
44
+ "./research": "./research/index.json",
45
+ "./retail": "./retail/index.json",
46
+ "./sales_marketing": "./sales_marketing/index.json",
47
+ "./telecom": "./telecom/index.json",
48
+ "./training": "./training/index.json"
49
+ },
50
+ "files": [
51
+ "**/*.json",
52
+ "README.md"
53
+ ],
54
+ "keywords": [
55
+ "json-schema",
56
+ "extraction-schemas",
57
+ "document-extraction",
58
+ "knowledge-management",
59
+ "uplo",
60
+ "mcp",
61
+ "ai-agents",
62
+ "accounting",
63
+ "agriculture",
64
+ "architecture",
65
+ "banking",
66
+ "construction",
67
+ "consulting",
68
+ "customer-success",
69
+ "cybersecurity",
70
+ "data-analytics",
71
+ "defense",
72
+ "education",
73
+ "energy",
74
+ "engineering",
75
+ "environmental",
76
+ "facilities",
77
+ "finance",
78
+ "food-safety",
79
+ "github",
80
+ "government",
81
+ "healthcare",
82
+ "hospitality",
83
+ "hr",
84
+ "insurance",
85
+ "it-devops",
86
+ "knowledge-management",
87
+ "legal",
88
+ "logistics",
89
+ "manufacturing",
90
+ "media",
91
+ "nonprofit",
92
+ "operations",
93
+ "pharma",
94
+ "procurement",
95
+ "product-management",
96
+ "real-estate",
97
+ "research",
98
+ "retail",
99
+ "sales-marketing",
100
+ "telecom",
101
+ "training"
102
+ ],
103
+ "repository": {
104
+ "type": "git",
105
+ "url": "https://github.com/anthropics/uplo.git",
106
+ "directory": "packages/schemas"
107
+ },
108
+ "license": "MIT",
109
+ "homepage": "https://uplo.ai/schemas"
110
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "pack": "pharma",
3
+ "displayName": "Pharma",
4
+ "category": "Healthcare & Life Sciences",
5
+ "schemas": [
6
+ {
7
+ "id": "pharma",
8
+ "name": "Pharma",
9
+ "description": "Schemas for clinical trials, drug labels, adverse events, and regulatory submissions",
10
+ "file": "pharma.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/pharma/pharma.json",
4
+ "title": "Pharma",
5
+ "description": "Schemas for clinical trials, drug labels, adverse events, and regulatory submissions",
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": "pharma",
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": "procurement",
3
+ "displayName": "Procurement",
4
+ "category": "Procurement",
5
+ "schemas": [
6
+ {
7
+ "id": "procurement",
8
+ "name": "Procurement",
9
+ "description": "Schemas for purchase orders, vendor evaluations, contract terms, and spend analysis",
10
+ "file": "procurement.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/procurement/procurement.json",
4
+ "title": "Procurement",
5
+ "description": "Schemas for purchase orders, vendor evaluations, contract terms, and spend analysis",
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": "procurement",
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": "product_management",
3
+ "displayName": "Product Management",
4
+ "category": "Product Management",
5
+ "schemas": [
6
+ {
7
+ "id": "product_management",
8
+ "name": "Product Management",
9
+ "description": "Schemas for product requirements, roadmaps, feature specs, and user feedback",
10
+ "file": "product_management.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/product_management/product_management.json",
4
+ "title": "Product Management",
5
+ "description": "Schemas for product requirements, roadmaps, feature specs, and user feedback",
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": "product_management",
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": "real_estate",
3
+ "displayName": "Real Estate",
4
+ "category": "Real Estate",
5
+ "schemas": [
6
+ {
7
+ "id": "real_estate",
8
+ "name": "Real Estate",
9
+ "description": "Schemas for leases, property listings, inspections, and appraisals",
10
+ "file": "real_estate.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/real_estate/real_estate.json",
4
+ "title": "Real Estate",
5
+ "description": "Schemas for leases, property listings, inspections, and appraisals",
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": "real_estate",
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
+ }