Naar de inhoud
AGIRight.org

Docs / Voorbeelden

Beleidsvoorbeelden

Zeven kant-en-klare machineleesbare beleidsvoorbeelden om te kopiëren en plakken — van een minimale AICR-verklaring tot een HTTP 402-respons in pay-per-crawl-stijl. Gebruik de playground om uw eigen voorbeelden te genereren.

v0.2MIT

01 · AICR

Eenvoudig AICR-beleid

Een minimale rechtenverklaring: open voor lezen en samenvatten met naamsvermelding, al het overige voorbehouden.

/.well-known/aicr.json
{
  "version": "0.1",
  "protocol": "AICR",
  "publisher": "example.org",
  "default_policy": {
    "read_access": { "allowed": true },
    "summarization": {
      "allowed": true,
      "attribution_required": true
    },
    "training": { "allowed": false },
    "commercial_use": { "allowed": false },
    "redistribution": { "allowed": false }
  }
}

02 · AICL

Eenvoudige AICL-catalogus

Twee licentieniveaus: een gratis publiek niveau en een contactgebaseerd commercieel niveau.

/.well-known/aicl.json
{
  "version": "0.1",
  "protocol": "AICL",
  "publisher": "example.org",
  "licenses": [
    {
      "id": "public_read",
      "rights": ["read", "summarize"],
      "price": { "amount": "0", "currency": "USD" },
      "conditions": ["attribution_required"]
    },
    {
      "id": "commercial",
      "rights": ["training", "commercial_use"],
      "requires_contact": true,
      "contact": "licensing@example.org"
    }
  ]
}

03 · AICL

HTTP 402-respons in pay-per-crawl-stijl

Wat een server kan teruggeven wanneer een AI-crawler gelicentieerde content opvraagt zonder licentietoken — een machinaal verwerkbare offerte in plaats van een doodlopend pad.

HTTP/1.1 402 Payment Required
{
  "error": "license_required",
  "message": "This resource requires a license for AI use.",
  "aicl": "https://example.org/.well-known/aicl.json",
  "applicable_licenses": [
    {
      "id": "metered_rag",
      "rights": ["rag"],
      "price": {
        "amount": "0.002",
        "currency": "USD",
        "unit": "per_request"
      }
    }
  ],
  "quote_endpoint": "https://example.org/api/aicl/quote",
  "contact": "licensing@example.org"
}

04 · AICL

Licentie uitsluitend voor onderzoek

Gratis voor onderzoeksgebruik met bewaarlimieten; elk commercieel gebruik vereist contact. Nuttig voor academische sites en datasets.

/.well-known/aicl.json
{
  "version": "0.1",
  "protocol": "AICL",
  "publisher": "research-lab.example",
  "licenses": [
    {
      "id": "academic_research",
      "rights": ["read", "summarize", "rag", "transform"],
      "price": { "amount": "0", "currency": "USD" },
      "conditions": [
        "attribution_required",
        "research_use_only",
        "retention_days_90",
        "no_commercial_use"
      ]
    },
    {
      "id": "commercial",
      "rights": ["training", "commercial_use"],
      "requires_contact": true,
      "contact": "data-office@research-lab.example"
    }
  ]
}

05 · AICR

Contentbeleid zonder trainingsgebruik

Maximaal open op ondiepe niveaus — lezen, samenvatten, citeren, RAG — terwijl modeltraining en fine-tuning categorisch worden voorbehouden.

/.well-known/aicr.json
{
  "version": "0.1",
  "protocol": "AICR",
  "publisher": "creator.example",
  "default_policy": {
    "read_access": { "allowed": true },
    "summarization": {
      "allowed": true,
      "attribution_required": true
    },
    "quotation": {
      "allowed": true,
      "max_excerpt_words": 150,
      "attribution_required": true
    },
    "rag_use": {
      "allowed": true,
      "attribution_required": true
    },
    "training": { "allowed": false },
    "commercial_use": {
      "allowed": false,
      "license_required": true,
      "permission_contact": "hello@creator.example"
    }
  }
}

06 · AILP

RAG toegestaan met naamsvermelding (AILP-profiel)

Een leertoestemmingsprofiel dat retrieval en embedding verwelkomt, maar naamsvermelding vereist en woordelijke memorisatie uitsluit.

/ai/rights-spectrum.json
{
  "version": "0.1",
  "protocol": "AILP",
  "publisher": "blog.example",
  "default": {
    "access": "allowed",
    "indexing": "allowed",
    "inference_input": "allowed",
    "embedding": "allowed",
    "training": "license_required",
    "fine_tuning": "license_required",
    "distillation": "denied",
    "verbatim_memory": "denied",
    "attribution": "required",
    "compensation": "contact"
  },
  "contact": "author@blog.example"
}

07 · AICR

Commercieel gebruik vereist contact

Padspecifieke overschrijvingen: de blog is open, de premium onderzoekssectie vereist een licentie voor alles behalve lezen.

/.well-known/aicr.json
{
  "version": "0.1",
  "protocol": "AICR",
  "publisher": "publisher.example",
  "default_policy": {
    "read_access": { "allowed": true },
    "summarization": {
      "allowed": true,
      "attribution_required": true
    },
    "training": {
      "allowed": false,
      "license_required": true,
      "permission_contact": "sales@publisher.example"
    }
  },
  "resource_overrides": [
    {
      "path": "/premium/*",
      "policy": {
        "summarization": { "allowed": false },
        "rag_use": {
          "allowed": false,
          "license_required": true
        }
      }
    }
  ]
}

Wilt u uw eigen beleidsbestand genereren? Open de playground →