{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://directdemocracy.vote/json-schema/2/participation.schema.json",
  "title": "registration",
  "description": "participation of a polling station in a referendum",
  "type": "object",
  "required": [
    "schema",
    "key",
    "signature",
    "published",
    "appKey",
    "appSignature",
    "referendum",
    "area"
  ],
  "properties": {
    "schema": {
      "const": "https://directdemocracy.vote/json-schema/2/participation.schema.json"
    },
    "key": {
      "description": "public key of the polling station",
      "type": "string",
      "maxLength": 512
    },
    "signature": {
      "description": "signature of the polling station",
      "type": "string",
      "maxLength": 512
    },
    "published": {
      "description": "current date (seconds since 1970-01-01 00:00:00)",
      "type": "integer",
      "minimum": 0,
      "maximum": 999999999999
    },
    "appKey": {
      "description": "public key of the app",
      "type": "string",
      "maxLength": 512
    },
    "appSignature": {
      "description": "signature of the signature by the app",
      "type": "string",
      "maxLength": 512
    },
    "referendum": {
      "description": "signature of the referendum proposal",
      "type": "string",
      "maxLength": 512
    },
    "area": {
      "description": "local area from which the vote is coming",
      "type": "integer",
      "minimum": 1
    }
  },
  "additionalProperties": false
}
