{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "議員活動アーカイブ スキーマ",
  "description": "地方議員の議会活動（質問・質疑・政策提案）を構造化するためのJSONスキーマ。三神たかし（さいたま市議会議員）が実証・公開。他の議員・研究者による活用を歓迎します。",
  "version": "1.0.0",
  "author": "三神たかし（さいたま市議会議員 見沼区選出）",
  "license": "CC BY 4.0",
  "license_url": "https://creativecommons.org/licenses/by/4.0/deed.ja",
  "repository": "https://github.com/mikami-takashi/gikai-archive（公開予定）",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "date",
      "question_topic",
      "result_level",
      "source_type"
    ],
    "properties": {
      "date": {
        "type": "string",
        "format": "date",
        "description": "質問・提案を行った日付（YYYY-MM-DD形式・西暦）"
      },
      "meeting_type": {
        "type": "string",
        "enum": [
          "本会議",
          "委員会",
          "予算委員会",
          "決算委員会"
        ],
        "description": "議会の種別"
      },
      "committee": {
        "type": [
          "string",
          "null"
        ],
        "description": "委員会名（委員会の場合）"
      },
      "session_name": {
        "type": "string",
        "description": "会議名・会期名"
      },
      "question_topic": {
        "type": "string",
        "description": "質問・提案のテーマ（簡潔なタイトル）"
      },
      "issue": {
        "type": "string",
        "description": "取り上げた課題・問題意識"
      },
      "proposal": {
        "type": "string",
        "description": "具体的な提案・要求内容"
      },
      "summary": {
        "type": "string",
        "description": "質疑・答弁を含む全体の概要"
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "行政運営",
            "市民生活",
            "市民活動",
            "スポーツ",
            "文化芸術",
            "保健衛生・医療",
            "社会福祉",
            "子ども・子育て",
            "環境",
            "経済・雇用",
            "まちづくり",
            "防災・消防",
            "議会改革",
            "DX",
            "人権・多様性"
          ]
        },
        "description": "分野タグ（複数可）。16分類から選択"
      },
      "answer_summary": {
        "type": "string",
        "description": "行政側の答弁要旨"
      },
      "result_level": {
        "type": "string",
        "enum": [
          "実施済",
          "改善・対応予定",
          "検討を引き出した",
          "研究段階",
          "提案のみ",
          "適正確認"
        ],
        "description": "提案後の対応状況。判定は議員本人が行う（自己申告）。詳細はpolicy.htmlを参照"
      },
      "source_type": {
        "type": "string",
        "enum": [
          "議事録",
          "予算提案"
        ],
        "description": "データソースの種別"
      },
      "source_url": {
        "type": "string",
        "description": "さいたま市議会会議録検索システムへのURL（順次整備中）"
      },
      "follow_up": {
        "type": "string",
        "description": "その後の成果・実現状況（根拠となる出典を含む）"
      }
    }
  },
  "notes": {
    "encoding": "UTF-8",
    "total_records": 666,
    "date_range": "2007年〜現在",
    "coverage": "本会議一般質問・常任委員会・予算委員会・決算委員会・会派予算提案。討論・請願は対象外",
    "update_frequency": "定例会（年4回）終了後に随時追加",
    "self_assessment": "result_levelの判定は議員本人が行っており、第三者による独立した検証はありません",
    "ai_usage": "Claude（Anthropic）によるJSON構造化・ChatGPT（OpenAI）による議事録抽出処理を活用"
  }
}