File size: 1,166 Bytes
9057dc1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://mesh.hypercortex.ai/schemas/container-v1.2.json",
  "title": "HMP Container v1.2",
  "description": "Canonical schema anchor for HMP container format v1.2. The authoritative definition is provided by the HMP v5.0 specification.",
  "type": "object",
  "required": ["hmp_container"],
  "properties": {
    "hmp_container": {
      "type": "object",
      "required": ["head", "payload"],
      "properties": {
        "head": {
          "type": "object",
          "required": ["version", "class", "timestamp", "container_did", "sig_algo", "signature"],
          "additionalProperties": true
        },
        "meta": {
          "type": "object",
          "additionalProperties": true
        },
        "payload": {},
        "related": {
          "type": "object",
          "additionalProperties": true
        }
      },
      "additionalProperties": true
    },
    "referenced-by": {
      "type": "object",
      "additionalProperties": true
    },
    "evaluations": {
      "type": "object",
      "additionalProperties": true
    }
  },
  "additionalProperties": true
}