{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://colloq.dev/spec/colloq-node-v0.schema.json",
  "title": "Colloq Local Node Identity v0",
  "description": "Local-only Iroh secret key material. This file must never be sent to a peer or committed.",
  "type": "object",
  "additionalProperties": false,
  "required": ["colloq_node", "endpoint_identity", "secret_key"],
  "properties": {
    "colloq_node": {
      "const": "0.1.0"
    },
    "endpoint_identity": {
      "$ref": "#/$defs/endpoint_id"
    },
    "secret_key": {
      "type": "string",
      "pattern": "^[0-9a-f]{64}$",
      "writeOnly": true
    }
  },
  "$defs": {
    "endpoint_id": {
      "type": "string",
      "pattern": "^[0-9a-f]{64}$"
    }
  }
}
