@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.
- package/README.md +173 -0
- package/accounting/accounting.json +58 -0
- package/accounting/index.json +13 -0
- package/agriculture/agriculture.json +58 -0
- package/agriculture/index.json +13 -0
- package/architecture/architecture.json +58 -0
- package/architecture/index.json +13 -0
- package/banking/banking.json +58 -0
- package/banking/index.json +13 -0
- package/construction/construction.json +58 -0
- package/construction/index.json +13 -0
- package/consulting/consulting.json +58 -0
- package/consulting/index.json +13 -0
- package/customer_success/customer_success.json +58 -0
- package/customer_success/index.json +13 -0
- package/cybersecurity/cybersecurity.json +58 -0
- package/cybersecurity/index.json +13 -0
- package/data_analytics/data_analytics.json +58 -0
- package/data_analytics/index.json +13 -0
- package/defense/defense.json +58 -0
- package/defense/index.json +13 -0
- package/education/education.json +58 -0
- package/education/index.json +13 -0
- package/energy/energy.json +58 -0
- package/energy/index.json +13 -0
- package/engineering/engineering.json +58 -0
- package/engineering/index.json +13 -0
- package/environmental/environmental.json +58 -0
- package/environmental/index.json +13 -0
- package/facilities/facilities.json +58 -0
- package/facilities/index.json +13 -0
- package/finance/finance.json +58 -0
- package/finance/index.json +13 -0
- package/food_safety/food_safety.json +58 -0
- package/food_safety/index.json +13 -0
- package/github/github.json +58 -0
- package/github/index.json +13 -0
- package/government/government.json +58 -0
- package/government/index.json +13 -0
- package/healthcare/healthcare.json +58 -0
- package/healthcare/index.json +13 -0
- package/hospitality/hospitality.json +58 -0
- package/hospitality/index.json +13 -0
- package/hr/hr.json +58 -0
- package/hr/index.json +13 -0
- package/index.json +287 -0
- package/insurance/index.json +13 -0
- package/insurance/insurance.json +58 -0
- package/it_devops/index.json +13 -0
- package/it_devops/it_devops.json +58 -0
- package/knowledge_management/index.json +13 -0
- package/knowledge_management/knowledge_management.json +58 -0
- package/legal/index.json +13 -0
- package/legal/legal.json +58 -0
- package/logistics/index.json +13 -0
- package/logistics/logistics.json +58 -0
- package/manufacturing/index.json +13 -0
- package/manufacturing/manufacturing.json +58 -0
- package/media/index.json +13 -0
- package/media/media.json +58 -0
- package/nonprofit/index.json +13 -0
- package/nonprofit/nonprofit.json +58 -0
- package/operations/index.json +13 -0
- package/operations/operations.json +58 -0
- package/package.json +110 -0
- package/pharma/index.json +13 -0
- package/pharma/pharma.json +58 -0
- package/procurement/index.json +13 -0
- package/procurement/procurement.json +58 -0
- package/product_management/index.json +13 -0
- package/product_management/product_management.json +58 -0
- package/real_estate/index.json +13 -0
- package/real_estate/real_estate.json +58 -0
- package/research/index.json +13 -0
- package/research/research.json +58 -0
- package/retail/index.json +13 -0
- package/retail/retail.json +58 -0
- package/sales_marketing/index.json +13 -0
- package/sales_marketing/sales_marketing.json +58 -0
- package/telecom/index.json +13 -0
- package/telecom/telecom.json +58 -0
- package/training/index.json +13 -0
- 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/food_safety/food_safety.json",
|
|
4
|
+
"title": "Food Safety",
|
|
5
|
+
"description": "Schemas for HACCP plans, inspection records, recall notices, and traceability 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": "food_safety",
|
|
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": "food_safety",
|
|
3
|
+
"displayName": "Food Safety",
|
|
4
|
+
"category": "Food & Safety",
|
|
5
|
+
"schemas": [
|
|
6
|
+
{
|
|
7
|
+
"id": "food_safety",
|
|
8
|
+
"name": "Food Safety",
|
|
9
|
+
"description": "Schemas for HACCP plans, inspection records, recall notices, and traceability logs",
|
|
10
|
+
"file": "food_safety.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/github/github.json",
|
|
4
|
+
"title": "GitHub / Software Dev",
|
|
5
|
+
"description": "Schemas for GitHub pull requests, issues, code reviews, ADRs, and CODEOWNERS",
|
|
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": "github",
|
|
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": "github",
|
|
3
|
+
"displayName": "GitHub",
|
|
4
|
+
"category": "Software Development",
|
|
5
|
+
"schemas": [
|
|
6
|
+
{
|
|
7
|
+
"id": "github",
|
|
8
|
+
"name": "GitHub / Software Dev",
|
|
9
|
+
"description": "Schemas for GitHub pull requests, issues, code reviews, ADRs, and CODEOWNERS",
|
|
10
|
+
"file": "github.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/government/government.json",
|
|
4
|
+
"title": "Government",
|
|
5
|
+
"description": "Schemas for regulations, grants, RFPs, and compliance 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": "government",
|
|
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": "government",
|
|
3
|
+
"displayName": "Government",
|
|
4
|
+
"category": "Government & Public Sector",
|
|
5
|
+
"schemas": [
|
|
6
|
+
{
|
|
7
|
+
"id": "government",
|
|
8
|
+
"name": "Government",
|
|
9
|
+
"description": "Schemas for regulations, grants, RFPs, and compliance records",
|
|
10
|
+
"file": "government.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/healthcare/healthcare.json",
|
|
4
|
+
"title": "Healthcare",
|
|
5
|
+
"description": "Schemas for clinical notes, lab results, prescriptions, and care plans",
|
|
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": "healthcare",
|
|
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": "healthcare",
|
|
3
|
+
"displayName": "Healthcare",
|
|
4
|
+
"category": "Healthcare & Life Sciences",
|
|
5
|
+
"schemas": [
|
|
6
|
+
{
|
|
7
|
+
"id": "healthcare",
|
|
8
|
+
"name": "Healthcare",
|
|
9
|
+
"description": "Schemas for clinical notes, lab results, prescriptions, and care plans",
|
|
10
|
+
"file": "healthcare.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/hospitality/hospitality.json",
|
|
4
|
+
"title": "Hospitality",
|
|
5
|
+
"description": "Schemas for reservations, guest feedback, property inspections, and event bookings",
|
|
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": "hospitality",
|
|
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": "hospitality",
|
|
3
|
+
"displayName": "Hospitality",
|
|
4
|
+
"category": "Hospitality",
|
|
5
|
+
"schemas": [
|
|
6
|
+
{
|
|
7
|
+
"id": "hospitality",
|
|
8
|
+
"name": "Hospitality",
|
|
9
|
+
"description": "Schemas for reservations, guest feedback, property inspections, and event bookings",
|
|
10
|
+
"file": "hospitality.json"
|
|
11
|
+
}
|
|
12
|
+
]
|
|
13
|
+
}
|
package/hr/hr.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://uplo.ai/schemas/hr/hr.json",
|
|
4
|
+
"title": "HR",
|
|
5
|
+
"description": "Schemas for job descriptions, reviews, compensation, and benefits",
|
|
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": "hr",
|
|
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/hr/index.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pack": "hr",
|
|
3
|
+
"displayName": "Human Resources",
|
|
4
|
+
"category": "Human Resources",
|
|
5
|
+
"schemas": [
|
|
6
|
+
{
|
|
7
|
+
"id": "hr",
|
|
8
|
+
"name": "HR",
|
|
9
|
+
"description": "Schemas for job descriptions, reviews, compensation, and benefits",
|
|
10
|
+
"file": "hr.json"
|
|
11
|
+
}
|
|
12
|
+
]
|
|
13
|
+
}
|