├── .cache ├── init.flag ├── specs-generated.json ├── term-index.json ├── xtrefs-data.js └── xtrefs-data.json ├── .env.example ├── .github-backup └── workflows │ ├── menu.yml │ ├── render-specs.yml │ ├── revised-format.yml │ └── set-gh-pages.yml ├── .github └── workflows │ ├── menu.yml │ ├── render-specs.yml │ ├── revised-format.yml │ └── set-gh-pages.yml ├── .gitignore ├── .gitignore-backup ├── COPYRIGHT_POLICY.md ├── Contributing.md ├── EditingTheSpec.md ├── LICENSE ├── LICENSE.md ├── README.md ├── SOURCE_CODE.md ├── assets-backup ├── test.json └── test.text ├── assets ├── test.json └── test.text ├── docs ├── index.html └── versions │ ├── index.html │ └── v1 │ └── index.html ├── draft-ssmith-keri.md ├── images ├── AuthenticatableMessage.png ├── AutonomicIdentifierBindingTetrad.png ├── AutonomicIssuanceTetrad.png ├── ControllerAppAgentDirectExchange.png ├── ControllerAppAgentSplitFunctions.png ├── ControllerAppAgentWitnessWatcherIndirectExchange.png ├── ControllerApplicationFunctions.png ├── Ecosystem.png ├── End2EndNetwork.png ├── ExploitDead.png ├── ExploitLive.png ├── PrefixAddressMultisigDerivation.png ├── SelfCertIssuanceTriad.png └── SelfCertifyingIdentifierBindingTriad.png ├── package-backup.json ├── package-lock.json ├── package.json ├── spec ├── .!33004!.DS_Store ├── assets │ ├── AuthenticatableMessage.png │ ├── ExploitDead.png │ └── ExploitLive.png ├── spec-body.md ├── spec-head.md ├── termdefs-new.md ├── termdefs.md ├── terms-and-definitions-intro.md └── terms-definitions │ ├── KERIs-algorithm-for-witness-agreement.md │ ├── authentic-chained-data-container.md │ ├── autonomic-identifier.md │ ├── autonomic-identity-system.md │ ├── autonomic-namespace.md │ ├── backer.md │ ├── concise-binary-object-representation.md │ ├── configuration-traits.md │ ├── controller.md │ ├── cryptographic-primitive.md │ ├── cryptonym.md │ ├── current-threshold.md │ ├── dead-attack.md │ ├── decentralized-key-management-infrastructure.md │ ├── duplicity.md │ ├── end-verifiability.md │ ├── establishment-event.md │ ├── exchange-identifier.md │ ├── first-seen.md │ ├── inception-event.md │ ├── inception.md │ ├── indexed-signature.md │ ├── interaction-event.md │ ├── key-event-log.md │ ├── key-event-message.md │ ├── key-event-receipt-infrastructure.md │ ├── key-event-receipt-log.md │ ├── key-event-receipt.md │ ├── key-event.md │ ├── key-state.md │ ├── live-attack.md │ ├── message.md │ ├── messagepack.md │ ├── next-threshold.md │ ├── non-establishment-event.md │ ├── out-of-band-introduction.md │ ├── primitive.md │ ├── python-dict.md │ ├── receipt.md │ ├── receiver.md │ ├── rotation-event.md │ ├── rotation.md │ ├── routed-exchange-message.md │ ├── saidive.md │ ├── salt.md │ ├── seal.md │ ├── self-addressed-data.md │ ├── self-addressing-identifier.md │ ├── self-certifying-identifier.md │ ├── signature.md │ ├── validator.md │ ├── verifiable.md │ ├── verifier.md │ ├── version.md │ ├── watcher.md │ └── witness.md └── specs.json /.cache/init.flag: -------------------------------------------------------------------------------- 1 | Initialization completed. -------------------------------------------------------------------------------- /.cache/specs-generated.json: -------------------------------------------------------------------------------- 1 | { 2 | "specs": [ 3 | { 4 | "title": "KERI specification", 5 | "description": "Create technical specifications in markdown. Based on the original Spec-Up, extended with Terminology tooling", 6 | "author": "Trust over IP Foundation", 7 | "spec_directory": "./spec", 8 | "spec_terms_directory": "terms-definitions", 9 | "output_path": "./docs", 10 | "markdown_paths": [ 11 | "spec-head.md", 12 | "terms-and-definitions-intro.md", 13 | "terms-definitions/KERIs-algorithm-for-witness-agreement.md", 14 | "terms-definitions/authentic-chained-data-container.md", 15 | "terms-definitions/autonomic-identifier.md", 16 | "terms-definitions/autonomic-identity-system.md", 17 | "terms-definitions/autonomic-namespace.md", 18 | "terms-definitions/backer.md", 19 | "terms-definitions/concise-binary-object-representation.md", 20 | "terms-definitions/configuration-traits.md", 21 | "terms-definitions/controller.md", 22 | "terms-definitions/cryptographic-primitive.md", 23 | "terms-definitions/cryptonym.md", 24 | "terms-definitions/current-threshold.md", 25 | "terms-definitions/dead-attack.md", 26 | "terms-definitions/decentralized-key-management-infrastructure.md", 27 | "terms-definitions/duplicity.md", 28 | "terms-definitions/end-verifiability.md", 29 | "terms-definitions/establishment-event.md", 30 | "terms-definitions/exchange-identifier.md", 31 | "terms-definitions/first-seen.md", 32 | "terms-definitions/inception-event.md", 33 | "terms-definitions/inception.md", 34 | "terms-definitions/indexed-signature.md", 35 | "terms-definitions/interaction-event.md", 36 | "terms-definitions/key-event-log.md", 37 | "terms-definitions/key-event-message.md", 38 | "terms-definitions/key-event-receipt-infrastructure.md", 39 | "terms-definitions/key-event-receipt-log.md", 40 | "terms-definitions/key-event-receipt.md", 41 | "terms-definitions/key-event.md", 42 | "terms-definitions/key-state.md", 43 | "terms-definitions/live-attack.md", 44 | "terms-definitions/message.md", 45 | "terms-definitions/messagepack.md", 46 | "terms-definitions/next-threshold.md", 47 | "terms-definitions/non-establishment-event.md", 48 | "terms-definitions/out-of-band-introduction.md", 49 | "terms-definitions/primitive.md", 50 | "terms-definitions/python-dict.md", 51 | "terms-definitions/receipt.md", 52 | "terms-definitions/receiver.md", 53 | "terms-definitions/rotation-event.md", 54 | "terms-definitions/rotation.md", 55 | "terms-definitions/routed-exchange-message.md", 56 | "terms-definitions/saidive.md", 57 | "terms-definitions/salt.md", 58 | "terms-definitions/seal.md", 59 | "terms-definitions/self-addressed-data.md", 60 | "terms-definitions/self-addressing-identifier.md", 61 | "terms-definitions/self-certifying-identifier.md", 62 | "terms-definitions/signature.md", 63 | "terms-definitions/validator.md", 64 | "terms-definitions/verifiable.md", 65 | "terms-definitions/verifier.md", 66 | "terms-definitions/version.md", 67 | "terms-definitions/watcher.md", 68 | "terms-definitions/witness.md", 69 | "spec-body.md" 70 | ], 71 | "logo": "https://raw.githubusercontent.com/trustoverip/spec-up-t-starter-pack/main/spec-up-t-starterpack/static/logo.svg", 72 | "logo_link": "https://github.com/trustoverip/spec-up-t", 73 | "favicon": "https://raw.githubusercontent.com/trustoverip/spec-up-t-starter-pack/main/spec-up-t-starterpack/static/favicon.ico", 74 | "source": { 75 | "host": "github", 76 | "account": "trustoverip", 77 | "repo": "tswg-keri-specification", 78 | "branch": "main" 79 | }, 80 | "external_specs": [ 81 | { 82 | "external_spec": "keri1", 83 | "gh_page": "https://trustoverip.github.io/kerisuite-glossary/", 84 | "url": "https://github.com/trustoverip/kerisuite-glossary", 85 | "terms_dir": "spec/terms-definitions" 86 | }, 87 | { 88 | "external_spec": "toip1", 89 | "gh_page": "https://trustoverip.github.io/ctwg-main-glossary/", 90 | "url": "https://github.com/trustoverip/ctwg-main-glossary", 91 | "terms_dir": "spec/terms-definitions" 92 | }, 93 | { 94 | "external_spec": "toip2", 95 | "gh_page": "https://trustoverip.github.io/ctwg-general-glossary/", 96 | "url": "https://github.com/trustoverip/ctwg-general-glossary", 97 | "terms_dir": "spec/terms-definitions" 98 | } 99 | ], 100 | "katex": false 101 | } 102 | ] 103 | } 104 | -------------------------------------------------------------------------------- /.cache/term-index.json: -------------------------------------------------------------------------------- 1 | [ 2 | "terms-definitions/KERIs-algorithm-for-witness-agreement.md", 3 | "terms-definitions/authentic-chained-data-container.md", 4 | "terms-definitions/autonomic-identifier.md", 5 | "terms-definitions/autonomic-identity-system.md", 6 | "terms-definitions/autonomic-namespace.md", 7 | "terms-definitions/backer.md", 8 | "terms-definitions/concise-binary-object-representation.md", 9 | "terms-definitions/configuration-traits.md", 10 | "terms-definitions/controller.md", 11 | "terms-definitions/cryptographic-primitive.md", 12 | "terms-definitions/cryptonym.md", 13 | "terms-definitions/current-threshold.md", 14 | "terms-definitions/dead-attack.md", 15 | "terms-definitions/decentralized-key-management-infrastructure.md", 16 | "terms-definitions/duplicity.md", 17 | "terms-definitions/end-verifiability.md", 18 | "terms-definitions/establishment-event.md", 19 | "terms-definitions/exchange-identifier.md", 20 | "terms-definitions/first-seen.md", 21 | "terms-definitions/inception-event.md", 22 | "terms-definitions/inception.md", 23 | "terms-definitions/indexed-signature.md", 24 | "terms-definitions/interaction-event.md", 25 | "terms-definitions/key-event-log.md", 26 | "terms-definitions/key-event-message.md", 27 | "terms-definitions/key-event-receipt-infrastructure.md", 28 | "terms-definitions/key-event-receipt-log.md", 29 | "terms-definitions/key-event-receipt.md", 30 | "terms-definitions/key-event.md", 31 | "terms-definitions/key-state.md", 32 | "terms-definitions/live-attack.md", 33 | "terms-definitions/message.md", 34 | "terms-definitions/messagepack.md", 35 | "terms-definitions/next-threshold.md", 36 | "terms-definitions/non-establishment-event.md", 37 | "terms-definitions/out-of-band-introduction.md", 38 | "terms-definitions/primitive.md", 39 | "terms-definitions/python-dict.md", 40 | "terms-definitions/receipt.md", 41 | "terms-definitions/receiver.md", 42 | "terms-definitions/rotation-event.md", 43 | "terms-definitions/rotation.md", 44 | "terms-definitions/routed-exchange-message.md", 45 | "terms-definitions/saidive.md", 46 | "terms-definitions/salt.md", 47 | "terms-definitions/seal.md", 48 | "terms-definitions/self-addressed-data.md", 49 | "terms-definitions/self-addressing-identifier.md", 50 | "terms-definitions/self-certifying-identifier.md", 51 | "terms-definitions/signature.md", 52 | "terms-definitions/validator.md", 53 | "terms-definitions/verifiable.md", 54 | "terms-definitions/verifier.md", 55 | "terms-definitions/version.md", 56 | "terms-definitions/watcher.md", 57 | "terms-definitions/witness.md" 58 | ] 59 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | # Optional GitHub API token for increased rate limits 2 | GITHUB_API_TOKEN=YOUR_GITHUB_API_TOKEN -------------------------------------------------------------------------------- /.github-backup/workflows/menu.yml: -------------------------------------------------------------------------------- 1 | name: Run Menu 2 | 3 | on: 4 | workflow_dispatch: 5 | inputs: 6 | action_type: 7 | description: 'Action to perform' 8 | required: true 9 | default: 'render' 10 | type: choice 11 | options: 12 | - render 13 | - topdf 14 | - todocx 15 | - freeze 16 | - custom-update 17 | - collectExternalReferences 18 | repository: 19 | description: 'Repository' 20 | required: false 21 | branch: 22 | description: 'Branch' 23 | required: false 24 | triggered_by: 25 | description: 'Triggered by' 26 | required: false 27 | 28 | jobs: 29 | build-and-deploy-spec: 30 | runs-on: ubuntu-latest 31 | permissions: 32 | contents: write # Needed for pushing changes and deploying to Pages 33 | steps: 34 | - name: Checkout 🛎️ 35 | uses: actions/checkout@v4 36 | with: 37 | persist-credentials: true # We’ll use MY_PAT for push 38 | 39 | - name: Set up Node.js 40 | uses: actions/setup-node@v4 41 | with: 42 | node-version: '18' 43 | 44 | - name: Extract output_path from JSON 45 | id: extract-output 46 | run: | 47 | OUTPUT_PATH=$(jq -r '.specs[0].output_path // "default/output"' specs.json) 48 | if [ "$OUTPUT_PATH" = "null" ] || [ -z "$OUTPUT_PATH" ]; then 49 | echo "Error: Unable to extract output_path from specs.json" 50 | exit 1 51 | fi 52 | echo "OUTPUT_PATH=$OUTPUT_PATH" >> $GITHUB_ENV 53 | 54 | - name: Install dependencies 🔧 55 | run: | 56 | echo "Installing dependencies..." 57 | npm install 58 | echo "Spec-Up-T version:" 59 | npm list spec-up-t || echo "spec-up-t not found" 60 | 61 | - name: Run selected script 62 | env: 63 | MY_PAT: ${{ secrets.MY_PAT }} # Make the secret available as an env var 64 | run: | 65 | case "${{ github.event.inputs.action_type }}" in 66 | render) 67 | npm run render 68 | ;; 69 | topdf) 70 | npm run topdf 71 | ;; 72 | todocx) 73 | npm run todocx 74 | ;; 75 | freeze) 76 | npm run freeze 77 | ;; 78 | custom-update) 79 | npm run custom-update 80 | ;; 81 | collectExternalReferences) 82 | npm run collectExternalReferences 83 | ;; 84 | *) 85 | echo "Unknown action_type: ${{ github.event.inputs.action_type }}" 86 | exit 1 87 | ;; 88 | esac 89 | 90 | - name: Commit and push changes 91 | if: success() 92 | run: | 93 | git config --global user.email "actions@github.com" 94 | git config --global user.name "GitHub Actions" 95 | 96 | # Add all changes 97 | git add . 98 | 99 | # Commit with appropriate message 100 | case "${{ github.event.inputs.action_type }}" in 101 | render) 102 | git commit -m "Render specification: Update files" || echo "No changes to commit" 103 | ;; 104 | topdf) 105 | git commit -m "Export to PDF" || echo "No changes to commit" 106 | ;; 107 | todocx) 108 | git commit -m "Export to DOCX" || echo "No changes to commit" 109 | ;; 110 | collectExternalReferences) 111 | git commit -m "Collect external references" || echo "No changes to commit" 112 | ;; 113 | freeze) 114 | git commit -m "Freeze specification" || echo "No changes to commit" 115 | ;; 116 | custom-update) 117 | git commit -m "Custom update: Copy files from spec-up-t" || echo "No changes to commit" 118 | ;; 119 | *) 120 | git commit -m "Update files: ${{ github.event.inputs.action_type }}" || echo "No changes to commit" 121 | ;; 122 | esac 123 | 124 | # Push changes 125 | git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main 126 | 127 | - name: Commit output files 128 | if: success() 129 | run: | 130 | git config --global user.email "actions@github.com" 131 | git config --global user.name "GitHub Actions" 132 | git add "$OUTPUT_PATH" 133 | git commit -m "Update output files in $OUTPUT_PATH" || echo "No changes to commit in output directory" 134 | git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main 135 | 136 | - name: Clean up 137 | if: always() 138 | run: | 139 | echo "Cleaning up..." 140 | rm -rf node_modules 141 | -------------------------------------------------------------------------------- /.github-backup/workflows/render-specs.yml: -------------------------------------------------------------------------------- 1 | 2 | name: spec-up-t render 3 | 4 | on: 5 | # push: 6 | # branches: 7 | # - main 8 | workflow_dispatch: 9 | 10 | jobs: 11 | build-and-deploy-spec: 12 | runs-on: ubuntu-latest 13 | permissions: 14 | contents: write 15 | steps: 16 | - name: Checkout 🛎️ 17 | uses: actions/checkout@v2 18 | with: 19 | persist-credentials: false 20 | - name: Extract output_path from JSON 21 | # TODO: .specs[0] is a hack to get the first spec. This should be fixed. 22 | run: | 23 | OUTPUT_PATH=$(jq -r '.specs[0].output_path' specs.json) 24 | echo "OUTPUT_PATH=$OUTPUT_PATH" >> $GITHUB_ENV 25 | 26 | - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. 27 | run: | 28 | echo "start install" 29 | npm install 30 | echo "end install" 31 | echo "Spec-Up-T version:" 32 | npm list spec-up-t 33 | echo "start render" 34 | node -e "require('spec-up-t')({ nowatch: true })" 35 | echo "end render" 36 | rm -rf node_modules 37 | 38 | # This is a GitHub Action to deploy your static files to GitHub Pages 39 | - name: Deploy 40 | uses: peaceiris/actions-gh-pages@v3.7.3 41 | with: 42 | github_token: ${{ secrets.GITHUB_TOKEN }} 43 | publish_dir: ${{ env.OUTPUT_PATH }} # Use the OUTPUT_PATH environment variable 44 | allow_empty_commit: true 45 | force_orphan: true 46 | 47 | 48 | -------------------------------------------------------------------------------- /.github-backup/workflows/revised-format.yml: -------------------------------------------------------------------------------- 1 | name: revised-format 2 | on: 3 | push: 4 | branches: 5 | - revised-format 6 | workflow_dispatch: 7 | branches: 8 | - revised-format 9 | 10 | jobs: 11 | publish: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - name: Checkout 15 | uses: actions/checkout@v4 16 | with: 17 | ref: revised-format 18 | 19 | - name: Set up Python 3.10.4 20 | uses: actions/setup-python@v2 21 | with: 22 | python-version: 3.10.4 23 | 24 | - name: Install dependencies 25 | run: | 26 | pip install -r requirements.txt 27 | 28 | - name: Combine 29 | run: | 30 | rm -f docs/index.md 31 | touch docs/index.md; cat 0*.md > docs/index.md 32 | 33 | - name: Deploy 34 | run: | 35 | mkdocs gh-deploy 36 | 37 | - name: pandoc 38 | uses: MatthiasValvekens/pandoc-iso@master 39 | with: 40 | md-in: docs/index.md 41 | docx-out: docs/index.docx 42 | 43 | - name: Upload 44 | uses: actions/upload-artifact@v3 45 | with: 46 | name: ${{ github.event.repository.name }}-iso-draft 47 | path: docs/index.docx -------------------------------------------------------------------------------- /.github-backup/workflows/set-gh-pages.yml: -------------------------------------------------------------------------------- 1 | name: Set GitHub Pages and Homepage 2 | 3 | on: 4 | workflow_dispatch: 5 | 6 | jobs: 7 | configure-pages-and-homepage: 8 | runs-on: ubuntu-latest 9 | permissions: 10 | contents: read # To check branches 11 | pages: write # To configure Pages settings 12 | steps: 13 | - name: Check if gh-pages branch exists 14 | id: check-branch 15 | run: | 16 | RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" \ 17 | -H "Authorization: token ${{ secrets.MY_PAT }}" \ 18 | -H "Accept: application/vnd.github+json" \ 19 | https://api.github.com/repos/${{ github.repository }}/branches/gh-pages) 20 | if [ "$RESPONSE" -eq 200 ]; then 21 | echo "gh-pages branch exists" 22 | echo "BRANCH_EXISTS=true" >> $GITHUB_ENV 23 | elif [ "$RESPONSE" -eq 404 ]; then 24 | echo "Error: gh-pages branch does not exist in ${{ github.repository }}" 25 | exit 1 26 | else 27 | echo "Unexpected response code: $RESPONSE" 28 | exit 1 29 | fi 30 | 31 | - name: Set GitHub Pages to gh-pages 32 | if: env.BRANCH_EXISTS == 'true' 33 | env: 34 | PAT: ${{ secrets.MY_PAT }} 35 | run: | 36 | RESPONSE=$(curl -s -L \ 37 | -X POST \ 38 | -H "Authorization: token $PAT" \ 39 | -H "Accept: application/vnd.github+json" \ 40 | https://api.github.com/repos/${{ github.repository }}/pages \ 41 | -d '{"source":{"branch":"gh-pages","path":"/"}}' \ 42 | -w "%{http_code}" -o response.json) 43 | if [ "$RESPONSE" -eq 201 ] || [ "$RESPONSE" -eq 200 ]; then 44 | echo "GitHub Pages set to gh-pages branch for ${{ github.repository }}" 45 | else 46 | echo "Failed to set GitHub Pages: $RESPONSE" 47 | cat response.json 48 | exit 1 49 | fi 50 | 51 | - name: Set repository homepage to GitHub Pages URL 52 | if: env.BRANCH_EXISTS == 'true' 53 | env: 54 | PAT: ${{ secrets.MY_PAT }} 55 | run: | 56 | # Construct the expected GitHub Pages URL 57 | REPO_NAME=$(echo "${{ github.repository }}" | cut -d'/' -f2) 58 | OWNER=$(echo "${{ github.repository }}" | cut -d'/' -f1) 59 | PAGES_URL="https://${OWNER}.github.io/${REPO_NAME}" 60 | 61 | # Set the homepage via API 62 | RESPONSE=$(curl -s -L \ 63 | -X PATCH \ 64 | -H "Authorization: token $PAT" \ 65 | -H "Accept: application/vnd.github+json" \ 66 | https://api.github.com/repos/${{ github.repository }} \ 67 | -d "{\"homepage\":\"${PAGES_URL}\"}" \ 68 | -w "%{http_code}" -o response.json) 69 | 70 | if [ "$RESPONSE" -eq 200 ]; then 71 | echo "Repository homepage set to $PAGES_URL for ${{ github.repository }}" 72 | else 73 | echo "Failed to set homepage: $RESPONSE" 74 | cat response.json 75 | exit 1 76 | fi 77 | 78 | - name: Verify homepage matches GitHub Pages URL 79 | if: env.BRANCH_EXISTS == 'true' 80 | env: 81 | PAT: ${{ secrets.MY_PAT }} 82 | run: | 83 | # Construct the expected GitHub Pages URL 84 | REPO_NAME=$(echo "${{ github.repository }}" | cut -d'/' -f2) 85 | OWNER=$(echo "${{ github.repository }}" | cut -d'/' -f1) 86 | EXPECTED_URL="https://${OWNER}.github.io/${REPO_NAME}" 87 | 88 | # Fetch the current homepage from the repo 89 | CURRENT_HOMEPAGE=$(curl -s -L \ 90 | -H "Authorization: token $PAT" \ 91 | -H "Accept: application/vnd.github+json" \ 92 | https://api.github.com/repos/${{ github.repository }} | jq -r '.homepage') 93 | 94 | if [ "$CURRENT_HOMEPAGE" = "$EXPECTED_URL" ]; then 95 | echo "Verified: Homepage is set to GitHub Pages URL ($EXPECTED_URL)" 96 | else 97 | echo "Error: Homepage ($CURRENT_HOMEPAGE) does not match expected GitHub Pages URL ($EXPECTED_URL)" 98 | exit 1 99 | fi -------------------------------------------------------------------------------- /.github/workflows/menu.yml: -------------------------------------------------------------------------------- 1 | name: Run Menu 2 | 3 | on: 4 | workflow_dispatch: 5 | inputs: 6 | action_type: 7 | description: 'Action to perform' 8 | required: true 9 | default: 'render' 10 | type: choice 11 | options: 12 | - render 13 | - topdf 14 | - todocx 15 | - freeze 16 | - custom-update 17 | - collectExternalReferences 18 | repository: 19 | description: 'Repository' 20 | required: false 21 | branch: 22 | description: 'Branch' 23 | required: false 24 | triggered_by: 25 | description: 'Triggered by' 26 | required: false 27 | 28 | jobs: 29 | build-and-deploy-spec: 30 | runs-on: ubuntu-latest 31 | permissions: 32 | contents: write # Needed for pushing changes and deploying to Pages 33 | steps: 34 | - name: Checkout 🛎️ 35 | uses: actions/checkout@v4 36 | with: 37 | persist-credentials: true # We’ll use MY_PAT for push 38 | 39 | - name: Set up Node.js 40 | uses: actions/setup-node@v4 41 | with: 42 | node-version: '18' 43 | 44 | - name: Extract output_path from JSON 45 | id: extract-output 46 | run: | 47 | OUTPUT_PATH=$(jq -r '.specs[0].output_path // "default/output"' specs.json) 48 | if [ "$OUTPUT_PATH" = "null" ] || [ -z "$OUTPUT_PATH" ]; then 49 | echo "Error: Unable to extract output_path from specs.json" 50 | exit 1 51 | fi 52 | echo "OUTPUT_PATH=$OUTPUT_PATH" >> $GITHUB_ENV 53 | 54 | - name: Install dependencies 🔧 55 | run: | 56 | echo "Installing dependencies..." 57 | npm install 58 | echo "Spec-Up-T version:" 59 | npm list spec-up-t || echo "spec-up-t not found" 60 | 61 | - name: Run selected script 62 | env: 63 | MY_PAT: ${{ secrets.MY_PAT }} # Make the secret available as an env var 64 | run: | 65 | case "${{ github.event.inputs.action_type }}" in 66 | render) 67 | npm run render 68 | ;; 69 | topdf) 70 | npm run topdf 71 | ;; 72 | todocx) 73 | npm run todocx 74 | ;; 75 | freeze) 76 | npm run freeze 77 | ;; 78 | custom-update) 79 | npm run custom-update 80 | ;; 81 | collectExternalReferences) 82 | npm run collectExternalReferences 83 | ;; 84 | *) 85 | echo "Unknown action_type: ${{ github.event.inputs.action_type }}" 86 | exit 1 87 | ;; 88 | esac 89 | 90 | - name: Commit and push changes 91 | if: success() 92 | run: | 93 | git config --global user.email "actions@github.com" 94 | git config --global user.name "GitHub Actions" 95 | 96 | # Add all changes 97 | git add . 98 | 99 | # Commit with appropriate message 100 | case "${{ github.event.inputs.action_type }}" in 101 | render) 102 | git commit -m "Render specification: Update files" || echo "No changes to commit" 103 | ;; 104 | topdf) 105 | git commit -m "Export to PDF" || echo "No changes to commit" 106 | ;; 107 | todocx) 108 | git commit -m "Export to DOCX" || echo "No changes to commit" 109 | ;; 110 | collectExternalReferences) 111 | git commit -m "Collect external references" || echo "No changes to commit" 112 | ;; 113 | freeze) 114 | git commit -m "Freeze specification" || echo "No changes to commit" 115 | ;; 116 | custom-update) 117 | git commit -m "Custom update: Copy files from spec-up-t" || echo "No changes to commit" 118 | ;; 119 | *) 120 | git commit -m "Update files: ${{ github.event.inputs.action_type }}" || echo "No changes to commit" 121 | ;; 122 | esac 123 | 124 | # Push changes 125 | git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main 126 | 127 | - name: Commit output files 128 | if: success() 129 | run: | 130 | git config --global user.email "actions@github.com" 131 | git config --global user.name "GitHub Actions" 132 | git add "$OUTPUT_PATH" 133 | git commit -m "Update output files in $OUTPUT_PATH" || echo "No changes to commit in output directory" 134 | git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git HEAD:main 135 | 136 | - name: Clean up 137 | if: always() 138 | run: | 139 | echo "Cleaning up..." 140 | rm -rf node_modules 141 | -------------------------------------------------------------------------------- /.github/workflows/render-specs.yml: -------------------------------------------------------------------------------- 1 | 2 | name: spec-up-t render 3 | 4 | on: 5 | # push: 6 | # branches: 7 | # - main 8 | workflow_dispatch: 9 | 10 | jobs: 11 | build-and-deploy-spec: 12 | runs-on: ubuntu-latest 13 | permissions: 14 | contents: write 15 | steps: 16 | - name: Checkout 🛎️ 17 | uses: actions/checkout@v2 18 | with: 19 | persist-credentials: false 20 | - name: Extract output_path from JSON 21 | # TODO: .specs[0] is a hack to get the first spec. This should be fixed. 22 | run: | 23 | OUTPUT_PATH=$(jq -r '.specs[0].output_path' specs.json) 24 | echo "OUTPUT_PATH=$OUTPUT_PATH" >> $GITHUB_ENV 25 | 26 | - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. 27 | run: | 28 | echo "start install" 29 | npm install 30 | echo "end install" 31 | echo "Spec-Up-T version:" 32 | npm list spec-up-t 33 | echo "start render" 34 | node -e "require('spec-up-t')({ nowatch: true })" 35 | echo "end render" 36 | rm -rf node_modules 37 | 38 | # This is a GitHub Action to deploy your static files to GitHub Pages 39 | - name: Deploy 40 | uses: peaceiris/actions-gh-pages@v3.7.3 41 | with: 42 | github_token: ${{ secrets.GITHUB_TOKEN }} 43 | publish_dir: ${{ env.OUTPUT_PATH }} # Use the OUTPUT_PATH environment variable 44 | allow_empty_commit: true 45 | force_orphan: true 46 | 47 | 48 | -------------------------------------------------------------------------------- /.github/workflows/revised-format.yml: -------------------------------------------------------------------------------- 1 | name: revised-format 2 | on: 3 | push: 4 | branches: 5 | - revised-format 6 | workflow_dispatch: 7 | branches: 8 | - revised-format 9 | 10 | jobs: 11 | publish: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - name: Checkout 15 | uses: actions/checkout@v4 16 | with: 17 | ref: revised-format 18 | 19 | - name: Set up Python 3.10.4 20 | uses: actions/setup-python@v2 21 | with: 22 | python-version: 3.10.4 23 | 24 | - name: Install dependencies 25 | run: | 26 | pip install -r requirements.txt 27 | 28 | - name: Combine 29 | run: | 30 | rm -f docs/index.md 31 | touch docs/index.md; cat 0*.md > docs/index.md 32 | 33 | - name: Deploy 34 | run: | 35 | mkdocs gh-deploy 36 | 37 | - name: pandoc 38 | uses: MatthiasValvekens/pandoc-iso@master 39 | with: 40 | md-in: docs/index.md 41 | docx-out: docs/index.docx 42 | 43 | - name: Upload 44 | uses: actions/upload-artifact@v3 45 | with: 46 | name: ${{ github.event.repository.name }}-iso-draft 47 | path: docs/index.docx -------------------------------------------------------------------------------- /.github/workflows/set-gh-pages.yml: -------------------------------------------------------------------------------- 1 | name: Set GitHub Pages and Homepage 2 | 3 | on: 4 | workflow_dispatch: 5 | 6 | jobs: 7 | configure-pages-and-homepage: 8 | runs-on: ubuntu-latest 9 | permissions: 10 | contents: read # To check branches 11 | pages: write # To configure Pages settings 12 | steps: 13 | - name: Check if gh-pages branch exists 14 | id: check-branch 15 | run: | 16 | RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" \ 17 | -H "Authorization: token ${{ secrets.MY_PAT }}" \ 18 | -H "Accept: application/vnd.github+json" \ 19 | https://api.github.com/repos/${{ github.repository }}/branches/gh-pages) 20 | if [ "$RESPONSE" -eq 200 ]; then 21 | echo "gh-pages branch exists" 22 | echo "BRANCH_EXISTS=true" >> $GITHUB_ENV 23 | elif [ "$RESPONSE" -eq 404 ]; then 24 | echo "Error: gh-pages branch does not exist in ${{ github.repository }}" 25 | exit 1 26 | else 27 | echo "Unexpected response code: $RESPONSE" 28 | exit 1 29 | fi 30 | 31 | - name: Set GitHub Pages to gh-pages 32 | if: env.BRANCH_EXISTS == 'true' 33 | env: 34 | PAT: ${{ secrets.MY_PAT }} 35 | run: | 36 | RESPONSE=$(curl -s -L \ 37 | -X POST \ 38 | -H "Authorization: token $PAT" \ 39 | -H "Accept: application/vnd.github+json" \ 40 | https://api.github.com/repos/${{ github.repository }}/pages \ 41 | -d '{"source":{"branch":"gh-pages","path":"/"}}' \ 42 | -w "%{http_code}" -o response.json) 43 | if [ "$RESPONSE" -eq 201 ] || [ "$RESPONSE" -eq 200 ]; then 44 | echo "GitHub Pages set to gh-pages branch for ${{ github.repository }}" 45 | else 46 | echo "Failed to set GitHub Pages: $RESPONSE" 47 | cat response.json 48 | exit 1 49 | fi 50 | 51 | - name: Set repository homepage to GitHub Pages URL 52 | if: env.BRANCH_EXISTS == 'true' 53 | env: 54 | PAT: ${{ secrets.MY_PAT }} 55 | run: | 56 | # Construct the expected GitHub Pages URL 57 | REPO_NAME=$(echo "${{ github.repository }}" | cut -d'/' -f2) 58 | OWNER=$(echo "${{ github.repository }}" | cut -d'/' -f1) 59 | PAGES_URL="https://${OWNER}.github.io/${REPO_NAME}" 60 | 61 | # Set the homepage via API 62 | RESPONSE=$(curl -s -L \ 63 | -X PATCH \ 64 | -H "Authorization: token $PAT" \ 65 | -H "Accept: application/vnd.github+json" \ 66 | https://api.github.com/repos/${{ github.repository }} \ 67 | -d "{\"homepage\":\"${PAGES_URL}\"}" \ 68 | -w "%{http_code}" -o response.json) 69 | 70 | if [ "$RESPONSE" -eq 200 ]; then 71 | echo "Repository homepage set to $PAGES_URL for ${{ github.repository }}" 72 | else 73 | echo "Failed to set homepage: $RESPONSE" 74 | cat response.json 75 | exit 1 76 | fi 77 | 78 | - name: Verify homepage matches GitHub Pages URL 79 | if: env.BRANCH_EXISTS == 'true' 80 | env: 81 | PAT: ${{ secrets.MY_PAT }} 82 | run: | 83 | # Construct the expected GitHub Pages URL 84 | REPO_NAME=$(echo "${{ github.repository }}" | cut -d'/' -f2) 85 | OWNER=$(echo "${{ github.repository }}" | cut -d'/' -f1) 86 | EXPECTED_URL="https://${OWNER}.github.io/${REPO_NAME}" 87 | 88 | # Fetch the current homepage from the repo 89 | CURRENT_HOMEPAGE=$(curl -s -L \ 90 | -H "Authorization: token $PAT" \ 91 | -H "Accept: application/vnd.github+json" \ 92 | https://api.github.com/repos/${{ github.repository }} | jq -r '.homepage') 93 | 94 | if [ "$CURRENT_HOMEPAGE" = "$EXPECTED_URL" ]; then 95 | echo "Verified: Homepage is set to GitHub Pages URL ($EXPECTED_URL)" 96 | else 97 | echo "Error: Homepage ($CURRENT_HOMEPAGE) does not match expected GitHub Pages URL ($EXPECTED_URL)" 98 | exit 1 99 | fi -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | /*-[0-9][0-9].xml 3 | archive.json 4 | draft-ssmith-keri.xml 5 | Gemfile.lock 6 | /.gems/ 7 | /lib 8 | /node_modules/ 9 | *.pdf 10 | *.redxml 11 | /.refcache 12 | report.xml 13 | *.swp 14 | .tags 15 | /.targets.mk 16 | *.txt 17 | *.upload 18 | /.venv/ 19 | /versioned/ 20 | /.vscode/ 21 | !requirements.txt 22 | .DS_Store 23 | .idea 24 | venv/ 25 | /.vs 26 | node_modules 27 | *.log 28 | dist 29 | *.bak 30 | *.tmp 31 | .env 32 | coverage 33 | build 34 | .history 35 | /.cache/ 36 | -------------------------------------------------------------------------------- /.gitignore-backup: -------------------------------------------------------------------------------- 1 | *~ 2 | /*-[0-9][0-9].xml 3 | archive.json 4 | draft-ssmith-keri.xml 5 | Gemfile.lock 6 | /.gems/ 7 | /lib 8 | /node_modules/ 9 | *.pdf 10 | *.redxml 11 | /.refcache 12 | report.xml 13 | *.swp 14 | .tags 15 | /.targets.mk 16 | *.txt 17 | *.upload 18 | /.venv/ 19 | /versioned/ 20 | /.vscode/ 21 | !requirements.txt 22 | .DS_Store 23 | .idea 24 | venv/ 25 | /.vs 26 | node_modules 27 | *.log 28 | dist 29 | *.bak 30 | *.tmp 31 | .env 32 | coverage 33 | build 34 | .history 35 | /.cache/ 36 | -------------------------------------------------------------------------------- /COPYRIGHT_POLICY.md: -------------------------------------------------------------------------------- 1 | OWF Contributor License Agreement 1.0 - Copyright 2 | Open Web Foundation 3 | 4 | Contributor License Agreement (CLA 1.0) 5 | (Copyright Only) 6 | 7 | 8 | 1. The Purpose of this Contributor License Agreement. This CLA sets forth the terms under which I will participate in and contribute to the development of the Specification. Capitalized terms are defined in the CLA’s last section. 9 | 10 | 2. Copyrights. 11 | 12 | 2.1. Copyright Grant. I grant to you a perpetual (for the duration of the applicable copyright), worldwide, non-exclusive, no-charge, royalty-free, copyright license, without any obligation for accounting to me, to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, and implement any Contribution to the full extent of my copyright interest in the Contribution. 13 | 14 | 2.2. Attribution. As a condition of the copyright grant, you must include an attribution to the Specification in any derivative work you make based on the Specification. That attribution must include, at minimum, the Specification name and version number. 15 | 16 | 3. No Other Rights. Except as specifically set forth in this CLA, no other express or implied patent, trademark, copyright, or other property rights are granted under this CLA, including by implication, waiver, or estoppel. 17 | 18 | 4. Open Web Foundation Agreement ("OWFa") version 1.0 Execution. I acknowledge that the goal of this CLA is to develop a specification that will be subject to the OWFa version 1.0. While I have no legal obligation to execute the OWFa version 1.0 for any version of the specification being developed under this CLA, I agree that the selection and terms of the OWFa version 1.0 will not be subject to negotiation. 19 | 20 | 5. Antitrust Compliance. I acknowledge that I may compete with other participants, that I am under no obligation to implement the Specification, that each participant is free to develop competing technologies and standards, and that each party is free to license its patent rights to third parties, including for the purpose of enabling competing technologies and standards. 21 | 22 | 6. Non-Circumvention. I agree that I will not intentionally take or willfully assist any third party to take any action for the purpose of circumventing my obligations under this CLA. 23 | 24 | 7. Representations, Warranties and Disclaimers. I represent and warrant that 1) I am legally entitled to grant the rights and promises set forth in this CLA and 2) I will not intentionally include any third party materials in any Contribution unless those materials are available under terms that do not conflict with this CLA. IN ALL OTHER RESPECTS MY CONTRIBUTIONS ARE PROVIDED "AS IS." The entire risk as to implementing or otherwise using the Contribution or the Specification is assumed by the implementer and user. Except as stated herein, I expressly disclaim any warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to the Contribution or the Specification. IN NO EVENT WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO THIS CLA, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Nothing in this CLA requires me to undertake a patent search. 25 | 26 | 8. Definitions. 27 | 28 | 8.1. Bound Entities. “Bound Entities” means the entity listed below and any entities that the Bound Entity Controls. 29 | 30 | 8.2. CLA. “CLA” means this document, which sets forth the rights, grants, promises, limitations, conditions, obligations, and disclaimers made available for my Contributions to the particular Specification. 31 | 32 | 8.3. Contribution. “Contribution” means any original work of authorship, including any modifications or additions to an existing work, that I intentionally submit for inclusion in the Specification, which is included in the Specification. For the purposes of this definition, “submit” means any form of electronic, oral, or written communication for the purpose of discussing and improving the Specification, but excluding communication that I conspicuously designate in writing as not a contribution. 33 | 34 | 8.4. Control. “Control” means direct or indirect control of more than 50% of the voting power to elect directors of that corporation, or for any other entity, the power to direct management of such entity. 35 | 36 | 8.5. I, Me, or My. “I,” “me,” or “my” refers to the signatory below and its Bound Entities, if applicable. 37 | 38 | 8.6. Specification. “Specification” means the Specification identified below as of the date of my last Contribution. 39 | 40 | 8.7. You or Your. “You,” “you,” or “your” means any person or entity who exercises copyright rights granted under this CLA, and any person or entity you Control. 41 | 42 | Identify the Specification here: 43 | 44 | Your specification (All Versions) -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- 1 | OWF Contributor License Agreement 1.0 - Copyright and Patent 2 | Open Web Foundation 3 | 4 | Contributor License Agreement (CLA 1.0) 5 | (Patent and Copyright Grants) 6 | 7 | 8 | 1. The Purpose of this Contributor License Agreement. This CLA sets forth the terms under which I will participate in and contribute to the development of the Specification. Capitalized terms are defined in the CLA’s last section. 9 | 10 | 2. Copyrights. 11 | 12 | 2.1. Copyright Grant. I grant to you a perpetual (for the duration of the applicable copyright), worldwide, non-exclusive, no-charge, royalty-free, copyright license, without any obligation for accounting to me, to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, and implement any Contribution to the full extent of my copyright interest in the Contribution. 13 | 14 | 2.2. Attribution. As a condition of the copyright grant, you must include an attribution to the Specification in any derivative work you make based on the Specification. That attribution must include, at minimum, the Specification name and version number. 15 | 16 | 3. Patents. 17 | 18 | 3.1. Patent Non-Assert. 19 | 20 | 3.1.1. The Promise. I, on behalf of myself and my successors in interest and assigns, irrevocably promise not to assert my Granted Claims against you for your Permitted Uses, subject to the terms and conditions of Section 3.1. This is a personal promise directly from me to you, and you acknowledge as a condition of benefiting from it that no rights from me are received from suppliers, distributors, or otherwise in connection with this promise. This promise also applies to your Permitted Uses of any other specifications incorporating all required portions of the Specification. 21 | 22 | 3.1.2. Termination. 23 | 24 | 3.1.2.1. As a Result of Claims by You. All rights, grants, and promises made by me to you under this CLA are terminated if you file, maintain, or voluntarily participate in a lawsuit against me or any person or entity asserting that its Permitted Uses infringe any Granted Claims you would have had the right to enforce had you signed this CLA, unless that suit was in response to a corresponding suit first brought against you. 25 | 26 | 3.1.2.2. As a Result of Claims by a Related Entity of Mine. If a Related Entity of mine files, maintains, or voluntarily participates in a lawsuit asserting that a Permitted Use infringes any Granted Claims it would have had the right to enforce had it signed this CLA, then I relinquish any rights, grants, and promises I have received for the Specification from other signatories of this CLA, unless a) my promise to you was terminated pursuant to section 3.1.2.1, or b) that suit was in response to a corresponding suit first brought by you against the Related Entity. 27 | 28 | 3.1.3. Additional Conditions. This promise is not an assurance (i) that any of my copyrights or issued patent claims cover an implementation of the Specification or are enforceable or (ii) that an implementation of the Specification would not infringe intellectual property rights of any third party. Notwithstanding the personal nature of my promise, this promise is intended to be binding on any future owner, assignee or exclusive licensee who has been given the right to enforce any Granted Claims against third parties. 29 | 30 | 3.1.4. Bankruptcy. Solely for purposes of Section 365(n) of Title 11, United States Bankruptcy Code and any equivalent law in any foreign jurisdiction, this promise will be treated as if it were a license and you may elect to retain your rights under this promise if I (or any owner of any patents or patent applications referenced herein), as a debtor in possession, or a bankruptcy trustee, reject this non-assert. 31 | 32 | 3.2. Patent License Commitment. In addition to rights granted in 3.1, on behalf of me and my successors in interest and assigns, I agree to grant to you a no charge, royalty free license to my Granted Claims on reasonable and non-discriminatory terms, where such license applies only to those Granted Claims infringed by the implementation of my Contribution(s) alone or by combination of my Contribution(s) with the Specification, solely for your Permitted Uses. 33 | 34 | 4. No Other Rights. Except as specifically set forth in this CLA, no other express or implied patent, trademark, copyright, or other property rights are granted under this CLA, including by implication, waiver, or estoppel. 35 | 36 | 5. Limited Opt-Out. I may withdraw my Contribution by providing written notice of that withdrawal within 45 days of submitting that Contribution. Notice of a Contribution withdrawal must be made, at minimum, in writing using the same communication mechanisms that were used to submit the corresponding Contribution and must include the exact material being withdrawn. Upon providing such valid notice, any obligations I incurred under this CLA for that particular identified Contribution will be null and void. 37 | 38 | 6. Open Web Foundation Agreement ("OWFa") version 1.0 Execution. I acknowledge that the goal of this CLA is to develop a specification that will be subject to the OWFa version 1.0. While I have no legal obligation to execute the OWFa version 1.0 for any version of the specification being developed under this CLA, I agree that the selection and terms of the OWFa version 1.0 will not be subject to negotiation. 39 | 40 | 7. Antitrust Compliance. I acknowledge that I may compete with other participants, that I am under no obligation to implement the Specification, that each participant is free to develop competing technologies and standards, and that each party is free to license its patent rights to third parties, including for the purpose of enabling competing technologies and standards. 41 | 42 | 8. Non-Circumvention. I agree that I will not intentionally take or willfully assist any third party to take any action for the purpose of circumventing my obligations under this CLA. 43 | 44 | 9. Representations, Warranties and Disclaimers. I represent and warrant that 1) I am legally entitled to grant the rights and promises set forth in this CLA and 2) I will not intentionally include any third party materials in any Contribution unless those materials are available under terms that do not conflict with this CLA. IN ALL OTHER RESPECTS MY CONTRIBUTIONS ARE PROVIDED "AS IS." The entire risk as to implementing or otherwise using the Contribution or the Specification is assumed by the implementer and user. Except as stated herein, I expressly disclaim any warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to the Contribution or the Specification. IN NO EVENT WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO THIS CLA, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. All of my obligations under Section 3 regarding the transfer, successors in interest, or assignment of Granted Claims will be satisfied if I notify the transferee or assignee of any patent that I know contains Granted Claims of the obligations under Section 3. Nothing in this CLA requires me to undertake a patent search. 45 | 46 | 10. Definitions. 47 | 48 | 10.1. Bound Entities. “Bound Entities” means the entity listed below and any entities that the Bound Entity Controls. 49 | 50 | 10.2. CLA. “CLA” means this document, which sets forth the rights, grants, promises, limitations, conditions, obligations, and disclaimers made available for my Contributions to the particular Specification. 51 | 52 | 10.3. Contribution. “Contribution” means any original work of authorship, including any modifications or additions to an existing work, that I intentionally submit for inclusion in the Specification, which is included in the Specification. For the purposes of this definition, “submit” means any form of electronic, oral, or written communication for the purpose of discussing and improving the Specification, but excluding communication that I conspicuously designate in writing as not a contribution. 53 | 54 | 10.4. Control. “Control” means direct or indirect control of more than 50% of the voting power to elect directors of that corporation, or for any other entity, the power to direct management of such entity. 55 | 56 | 10.5. Granted Claims. "Granted Claims" are those patent claims that I own or control, including those patent claims I acquire or control after the Date below, that are infringed by Permitted Uses. Granted Claims include only those patent claims that are infringed by the implementation of any portions of the Specification where the Specification describes the functionality causing the infringement in detail and does not merely reference the functionality causing the infringement. Granted Claims under this CLA exclude those patent claims that would be infringed by an implementation of the Specification if my Contribution to that Specification were removed. 57 | 58 | 10.6. I, Me, or My. “I,” “me,” or “my” refers to the signatory below and its Bound Entities, if applicable. 59 | 60 | 10.7. Permitted Uses. “Permitted Uses” means making, using, selling, offering for sale, importing or distributing any implementation of the Specification 1) only to the extent it implements the Specification and 2) so long as all required portions of the Specification are implemented. Permitted Uses do not extend to any portion of an implementation that is not included in the Specification. 61 | 62 | 10.8. Related Entities. “Related Entities” means 1) any entity that Controls the Bound Entity (“Upstream Entity”), and 2) any other entity that is Controlled by an Upstream Entity that is not itself a Bound Entity. 63 | 64 | 10.9. Specification. “Specification” means the Specification identified below as of the date of my last Contribution. 65 | 66 | 10.10. You or Your. “You,” “you,” or “your” means any person or entity who exercises copyright or patent rights granted under this CLA, and any person or entity you Control. -------------------------------------------------------------------------------- /EditingTheSpec.md: -------------------------------------------------------------------------------- 1 | # Editing the Specification 2 | 3 | To contribute changes to the specification, please 4 | 5 | - Review the [Contributions policy](CONTRIBUTING.md) for this specification and ensure that you and your organization are willing to abide by the policy. 6 | - **Pull requests submitted to this repository imply acceptance of the [Contributions policy](CONTRIBUTING.md).** 7 | 8 | - Submit a pull request by: 9 | - forking this repo 10 | - editing the appropriate markdown files in the [`/spec`](/spec) folder 11 | 12 | The specification source consists of the markdown files listed in 13 | [specs.json](/specs.json) and found in the [`/spec`](/spec) folder and the [`/spec/terms-definitions`](/spec/terms-definitions) subfolder. The 14 | specification is automatically rendered (using 15 | [Spec-Up-T](https://github.com/trustoverip/spec-up-t)) to the `/docs` 16 | folder of the current branch of your choice of this repository. 17 | 18 | Currently the locally generated `index.html` has to be push to a branch and GitHub user account of your choice to then offer a PR to the `main` branch. The spec is published (using GitHub Pages) on the basis of `main` branch and the `index.html` in the `/docs` folder of this repository. 19 | 20 | ## Testing your Edits Locally 21 | 22 | Full guidance for using Spec-Up is in its 23 | [repository](https://github.com/trustoverip/spec-up-t)and in its [User Guide](https://trustoverip.github.io/spec-up-t-website/docs/getting-started/intro). 24 | 25 | The short version of the instructions to render this specification locally while you are 26 | editing is: 27 | 28 | - Install the prerequisites: `node` and `npm` 29 | - Run `npm install` from the root of the repository 30 | - Run `npm install spec-up-t` from the root of the repository 31 | 32 | - Run `npm run menu` from the root of the repository to perform various actions on the document with live updates to the `docs/index.html` as you edit the source files. 33 | 34 | - Open the rendered file in a browser and refresh to see your updates as you work. 35 | - When you are done, hit `Ctrl-c` to exit the live rendering. 36 | 37 | Please check your edits locally before you submit a pull request! The `docs/index.html` will be included in your pull request (currently NOT .gitignore'd). 38 | 39 | ### Beware: 40 | 41 | The user guide of Spec-Up-T is leading: [Local installation](https://trustoverip.github.io/spec-up-t-website/docs/getting-started/local-installation/installation) 42 | 43 | ### Soon to be implemented: 44 | 45 | On each pull request merge (using a GitHub Action), and then published (using GitHub Pages) in the `gh-pages` branch of this repository. 46 | 47 | #### Handling the Rendered Specification File 48 | 49 | Future working: When you create a pull request to update the specification, the `docs/index.html` will be 50 | .gitignore'd and **not** included in your pull request. A GitHub Action triggered on merging pull requests automagically renders the full 51 | specification (`docs/index.html`) to the `gh-pages` branch in the repository and the 52 | specification is published (via GitHub Pages) from there. 53 | 54 | ## Adding a New Source Markdown File 55 | 56 | If you add a source markdown file to the specification, you must also add a reference 57 | to it in the [specs.json](/specs.json) in the root of the repository. 58 | 59 | If you add a source markdown file to the `terms-definitions` folder, at generation time a the markdown file will be automatically included in the "Terms definitions" section of the specification. Use at least one of the dedicated tags `[[DEF]]` or `[[TREF]]` in each atomic Markdown file; i.e. one file per term definition. 60 | 61 | You must specify the configuration details in the [specs.json](/specs.json) in the root of the repository. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Open Web Foundation 2 | 3 | Final Specification Agreement (OWFa 1.0) 4 | 5 | (Patent and Copyright Grants) 6 | 7 | 1. The Purpose of this Agreement. This Agreement sets forth the terms under which I make certain copyright and patent rights available to you for your Permitted Uses of the Specification. Capitalized terms are defined in the Agreement’s last section. 8 | 9 | 2. Copyrights. 10 | 11 | 2.1. Copyright Grant. I grant to you a perpetual (for the duration of the applicable copyright), worldwide, non-exclusive, no-charge, royalty-free, copyright license, without any obligation for accounting to me, to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, distribute, and implement the Specification to the full extent of my copyright interest in the Specification. 12 | 13 | 2.2. Attribution. As a condition of the copyright grant, you must include an attribution to the Specification in any derivative work you make based on the Specification. That attribution must include, at minimum, the Specification name and version number. 14 | 15 | 3. Patents. 16 | 17 | 3.1. Patent Non-Assert. 18 | 19 | 3.1.1. The Promise. I, on behalf of myself and my successors in interest and assigns, irrevocably promise not to assert my Granted Claims against you for your Permitted Uses, subject to the terms and conditions of Section 3.1. This is a personal promise directly from me to you, and you acknowledge as a condition of benefiting from it that no rights from me are received from suppliers, distributors, or otherwise in connection with this promise. This promise also applies to your Permitted Uses of any other specifications incorporating all required portions of the Specification. 20 | 21 | 3.1.2. Termination. 22 | 23 | 3.1.2.1. As a Result of Claims by You. All rights, grants, and promises made by me to you under this Agreement are terminated if you file, maintain, or voluntarily participate in a lawsuit against me or any person or entity asserting that its Permitted Uses infringe any Granted Claims you would have had the right to enforce had you signed this Agreement, unless that suit was in response to a corresponding suit first brought against you. 24 | 25 | 3.1.2.2. As a Result of Claims by a Related Entity of Mine. If a Related Entity of mine files, maintains, or voluntarily participates in a lawsuit asserting that a Permitted Use infringes any Granted Claims it would have had the right to enforce had it signed this Agreement, then I relinquish any rights, grants, and promises I have received for the Specification from other signatories of this Agreement, unless a) my promise to you was terminated pursuant to section 3.1.2.1, or b) that suit was in response to a corresponding suit first brought by you against the Related Entity. 26 | 27 | 3.1.3. Additional Conditions. This promise is not an assurance (i) that any of my copyrights or issued patent claims cover an implementation of the Specification or are enforceable or (ii) that an implementation of the Specification would not infringe intellectual property rights of any third party. Notwithstanding the personal nature of my promise, this promise is intended to be binding on any future owner, assignee or exclusive licensee to whom has been given the right to enforce any Granted Claims against third parties. 28 | 29 | 3.1.4. Bankruptcy. Solely for purposes of Section 365(n) of Title 11, United States Bankruptcy Code and any equivalent law in any foreign jurisdiction, this promise will be treated as if it were a license and you may elect to retain your rights under this promise if I (or any owner of any patents or patent applications referenced herein), as a debtor in possession, or a bankruptcy trustee, reject this non-assert. 30 | 31 | 3.2. Patent License Commitment. In addition to rights granted in 3.1, on behalf of me and my successors in interest and assigns, I agree to grant to you a no charge, royalty free license to my Granted Claims on reasonable and non-discriminatory terms, where such license applies only to those Granted Claims infringed by the implementation of the Specification, solely for your Permitted Uses. 32 | 33 | 4. No Other Rights. Except as specifically set forth in this Agreement, no other express or implied patent, trademark, copyright, or other property rights are granted under this Agreement, including by implication, waiver, or estoppel. 34 | 35 | 5. Antitrust Compliance. I acknowledge that I may compete with other participants, that I am under no obligation to implement the Specification, that each participant is free to develop competing technologies and standards, and that each party is free to license its patent rights to third parties, including for the purpose of enabling competing technologies and standards. 36 | 37 | 6. Non-Circumvention. I agree that I will not intentionally take or willfully assist any third party to take any action for the purpose of circumventing my obligations under this Agreement. 38 | 39 | 7. Representations, Warranties and Disclaimers. I represent and warrant that I am legally entitled to grant the rights and promises set forth in this Agreement. IN ALL OTHER RESPECTS THE SPECIFICATION IS PROVIDED "AS IS." The entire risk as to implementing or otherwise using the Specification is assumed by the implementer and user. Except as stated herein, I expressly disclaim any warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to the Specification. IN NO EVENT WILL ANY PARTY BE LIABLE TO ANY OTHER PARTY FOR LOST PROFITS OR ANY FORM OF INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER FROM ANY CAUSES OF ACTION OF ANY KIND WITH RESPECT TO THIS AGREEMENT, WHETHER BASED ON BREACH OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, AND WHETHER OR NOT THE OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. All of my obligations under Section 3 regarding the transfer, successors in interest, or assignment of Granted Claims will be satisfied if I notify the transferee or assignee of any patent that I know contains Granted Claims of the obligations under Section 3. Nothing in this Agreement requires me to undertake a patent search. 40 | 41 | 8. Definitions. 42 | 43 | 8.1. Agreement. “Agreement” means this OWFa document, which sets forth the rights, grants, promises, limitations, conditions, obligations, and disclaimers made available for the particular Specification. 44 | 45 | 8.2. Bound Entities. “Bound Entities” means the entity listed below and any entities that the Bound Entity Controls. 46 | 47 | 8.3. Control. “Control” means direct or indirect control of more than 50% of the voting power to elect directors of that corporation, or for any other entity, the power to direct management of such entity. 48 | 49 | 8.4. Granted Claims. "Granted Claims" are those patent claims that I own or control, including those patent claims I acquire or control after the Date below, that are infringed by Permitted Uses. Granted Claims include only those patent claims that are infringed by the implementation of any portions of the Specification where the Specification describes the functionality causing the infringement in detail and does not merely reference the functionality causing the infringement. 50 | 51 | 8.5. I, Me, or My. “I,” “me,” or “my” refers to the signatory below and its Bound Entities, if applicable. 52 | 53 | 8.6. Permitted Uses. “Permitted Uses” means making, using, selling, offering for sale, importing or distributing any implementation of the Specification 1) only to the extent it implements the Specification and 2) so long as all required portions of the Specification are implemented. Permitted Uses do not extend to any portion of an implementation that is not included in the Specification. 54 | 55 | 8.7. Related Entities. “Related Entities” means 1) any entity that Controls the Bound Entity (“Upstream Entity”), and 2) any other entity that is Controlled by an Upstream Entity that is not itself a Bound Entity. 56 | 57 | 8.8. Specification. “Specification” means the Specification identified below 58 | 59 | 8.9. You or Your. “You,” “you,” or “your” means any person or entity who exercises copyright or patent rights granted under this Agreement, and any person or entity you Control. 60 | 61 | Identify the Specification and version number here: 62 | 63 | Key Event Receipt Infrastructure (KERI). All Versions. -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # Licensing 2 | 3 | All software and documentation in this repository are *Copyright 2023 KERI Contributors* and 4 | all contributions to this repository are *Licensed under the OWFa 1.0 (the "License")* [here](https://github.com/trustoverip/tswg-keri-specification/blob/main/LICENSE). 5 | 6 | As as defined in the License, contributions include but are not limited to patents, source code, specification text, 7 | documentation, comments and issues. You may not use the software or documentation in this repository except in compliance with the License. 8 | Unless required by applicable law or agreed to in writing, software distributed 9 | under the License is distributed on an "AS IS" BASIS. 10 | You may obtain a copy of the License at [OWFa 1.0](https://www.openwebfoundation.org/the-agreements/the-owf-1-0-agreements-granted-claims/owfa-1-0). 11 | 12 | To remove any doubt as the origin on any contributions, all contributers are also bound by the 13 | Developer Ceritificate of Origin v1.1 (DCO 1.1) which may be found [here](https://developercertificate.org) 14 | 15 | As a GitHub repository, all contributions to this repository are also bound by 16 | the GitHub *inbound=outbound* policy. This may be found under Section D.6 17 | [here](https://docs.github.com/en/github/site-policy/github-terms-of-service#6-contributions-under-repository-license) to the extent not superceeded by the ToIP CLA [link]. 18 | 19 | The legal structure of this repository with respect to the licensing of its 20 | associated contributions also follows GitHub's Open Source Guide reccomendations for 21 | open source standards and code. These may be found [here](https://opensource.guide/legal/) 22 | 23 | In addition to the copyright and licensing restrictions described above, all contributions to this repository may be contributions to a terminal standards body such as [IETF](https://www.ietf.org), [ISO](https://www.iso.org/home.html) or equivelant. 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Key Event Receipt Infrastructure (KERI) 2 | 3 | This is the working area for the individual Internet-Draft, "Key Event Receipt Infrastructure (KERI)". 4 | 5 | * [Editor's Copy](https://trustoverip.github.io/kswg-keri-specification/) 6 | 7 | #### Contributing 8 | 9 | All Trust Over IP Foundation Technical Stack Working Group contributions are done so under the following rules: 10 | 11 | * [Contributing](Contributing.md) 12 | 13 | #### Licensing 14 | 15 | All Trust Over IP Foundation Technical Stack Working Group deliverables are published under the following licenses: 16 | 17 | * [Patent and Copyright Grants](LICENSE.md) 18 | * [Source Code](SOURCE_CODE.md) 19 | 20 | #### Getting involved 21 | 22 | Join a community of individuals and organizations solving the toughest technical and human-centric problems in digital trust. https://trustoverip.org/get-involved/membership/ 23 | 24 | #### Note 25 | 26 | This work was migrated from https://github.com/WebOfTrust/ietf-keri. 27 | 28 | ## Command Line Usage 29 | 30 | Markdown text and HTML versions of the draft can be built using `Spec-Up-T`. 31 | 32 | Command line usage requires that you have the necessary software installed. See the instructions in the Spec-Up-T [User Guide](https://trustoverip.github.io/spec-up-t-website/docs/getting-started/intro). 33 | 34 | More info in [Editting the Spec](EditingTheSpec.md). -------------------------------------------------------------------------------- /SOURCE_CODE.md: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. -------------------------------------------------------------------------------- /assets-backup/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "test": "This is a test JSON file for content insertion" 3 | } -------------------------------------------------------------------------------- /assets-backup/test.text: -------------------------------------------------------------------------------- 1 | This is a test text file for content insertion examples. -------------------------------------------------------------------------------- /assets/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "test": "This is a test JSON file for content insertion" 3 | } -------------------------------------------------------------------------------- /assets/test.text: -------------------------------------------------------------------------------- 1 | This is a test text file for content insertion examples. -------------------------------------------------------------------------------- /docs/versions/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 |This page lists all available snapshots of this Spec-Up-T specification.
21 |