{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://girisimkalkinma.org/downloads/etki-gostergesi.schema.json",
  "title": "Etki göstergesi",
  "description": "Bir göstergenin kanıt seviyesiyle birlikte tanımı. Başlangıç değeri olmayan göstergede değişim iddiası kurulamaz. Bu şema bir çalışma taslağıdır. Gerçek kişisel veya hassas veri işlenecekse hukuk onayı, veri sorumlusu ataması ve saklama-silme politikası olmadan kullanılamaz.",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "gosterge_kodu",
    "ad",
    "tur",
    "tanim",
    "olcum_yontemi",
    "baslangic",
    "kanit_seviyesi",
    "son_kontrol"
  ],
  "properties": {
    "gosterge_kodu": {
      "type": "string",
      "minLength": 1
    },
    "ad": {
      "type": "string",
      "minLength": 1
    },
    "tur": {
      "enum": [
        "faaliyet",
        "cikti",
        "sonuc",
        "etki"
      ],
      "description": "Faaliyet ve çıktı göstergeleri sonuç yerine kullanılamaz"
    },
    "tanim": {
      "type": "string",
      "minLength": 1
    },
    "birim": {
      "type": [
        "string",
        "null"
      ]
    },
    "olcum_yontemi": {
      "type": "string",
      "minLength": 1
    },
    "olcum_sikligi": {
      "type": [
        "string",
        "null"
      ]
    },
    "baslangic": {
      "type": "object",
      "additionalProperties": false,
      "required": [
        "deger",
        "tarih"
      ],
      "properties": {
        "deger": {
          "type": [
            "number",
            "null"
          ],
          "description": "null ise 'ölçülmedi' demektir; değişim iddiası kurulamaz"
        },
        "tarih": {
          "type": "string",
          "format": "date"
        },
        "kaynak": {
          "type": [
            "string",
            "null"
          ]
        }
      }
    },
    "hedef": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": false,
      "properties": {
        "deger": {
          "type": "number"
        },
        "tarih": {
          "type": "string",
          "format": "date"
        }
      }
    },
    "kanit_seviyesi": {
      "enum": [
        "gozlem",
        "oncesi_sonrasi",
        "karsilastirmali"
      ],
      "description": "Nedensellik iddiası yalnız karşılaştırmalı tasarımda kurulabilir"
    },
    "alternatif_aciklamalar": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Nedensellik iddiası varsa zorunlu"
    },
    "dezavantajli_grup_ayristirmasi": {
      "type": [
        "boolean",
        "null"
      ]
    },
    "son_kontrol": {
      "type": "string",
      "format": "date"
    },
    "sonraki_kontrol": {
      "type": [
        "string",
        "null"
      ],
      "format": "date"
    }
  }
}
