@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/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
+ }