{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "urn:ln-church:schema:scheduled_http_get_batch.v1:1.0.0:registration",
  "title": "scheduled_http_get_batch.v1 multipart metadata part",
  "description": "Exact five-field JSON object carried in the metadata part. It does not describe or replace the two-part multipart transport envelope.",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "registration_intent_id",
    "task_type",
    "task_definition_version",
    "scheduled_at",
    "plan_id"
  ],
  "properties": {
    "registration_intent_id": {
      "type": "string",
      "format": "uuid",
      "pattern": "^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}$"
    },
    "task_type": {
      "const": "scheduled_http_get_batch.v1"
    },
    "task_definition_version": {
      "const": "1.0.0"
    },
    "scheduled_at": {
      "type": "string",
      "format": "date-time",
      "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:00Z$"
    },
    "plan_id": {
      "enum": ["C50", "C500", "C5000"]
    }
  }
}
