본문으로 건너뛰기
AGIRight.org

문서 / 예시

정책 예시

복사해서 바로 쓸 수 있는 일곱 가지 기계 판독 가능 정책 예시 — 최소 AICR 선언부터 크롤링당 과금 방식의 HTTP 402 응답까지. 플레이그라운드에서 직접 생성해 보십시오.

v0.2MIT

01 · AICR

기본 AICR 정책

최소한의 권리 선언: 출처 표기를 조건으로 읽기와 요약은 개방하고, 그보다 깊은 모든 사용은 유보합니다.

/.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

기본 AICL 카탈로그

두 개의 라이선스 등급: 무료 공개 등급과 연락 기반 상업 등급.

/.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 응답

AI 크롤러가 라이선스 토큰 없이 라이선스 대상 콘텐츠를 요청할 때 서버가 반환할 수 있는 것 — 막다른 길 대신 기계가 실행 가능한 견적.

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

연구 전용 라이선스

보존 제한이 있는 연구 목적 이용은 무료이며, 모든 상업적 이용은 연락이 필요합니다. 학술 사이트와 데이터셋에 유용합니다.

/.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

학습 금지 콘텐츠 정책

얕은 수준 — 읽기, 요약, 인용, RAG — 에서는 최대한 개방하면서 모델 학습과 파인튜닝은 전면 유보합니다.

/.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 허용(AILP 프로필)

검색과 임베딩은 환영하지만 출처 표기를 요구하고 원문 그대로의 암기는 거부하는 학습 허가 프로필입니다.

/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

상업적 이용은 연락 필요

경로별 재정의: 블로그는 개방되어 있고, 프리미엄 연구 섹션은 읽기를 넘어서는 모든 사용에 라이선스가 필요합니다.

/.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
        }
      }
    }
  ]
}

자신만의 정책 파일을 생성하고 싶으신가요? 플레이그라운드 열기 →