Hash Network Documentation
Website
  • About Hash Network
    • What is Provenance
    • Why Provenance Matters?
    • Why Hash Network Exists?
    • How Hash Network Solves These Problems?
  • Hash Netwok Provenance
    • Use Cases
      • Provenance For AI Agent Actions
      • Provenance In Camera
      • Provenance In Editing Tools
      • AI Generated Content
      • Other Use Cases
    • Provenance SDK
    • Provenance Contract
    • Provenance Schema
    • JSON Example
    • Verify SDK
    • Verify API
    • Architecture Overview
    • Supported Media Formats
    • Reputation System
    • Hash Verify - Chrome Extension
  • C2PA Standard
    • Overview
    • Manifest
    • Assertion
    • Action
    • Ingredient
    • Compatibility with Hash Network
  • Hash Network Playground
    • Provenance for AI generated Content
    • Register Content's Provenance Onchain
    • Verify provenance of content
  • Using Hash Network Chain
    • Network Information
    • Adding Network To Metamask
    • Contracts
    • Bridges
    • Block Explorer
    • Faucet
Powered by GitBook
On this page
  1. C2PA Standard

Action

An action records a specific operation performed on the content, such as its creation, modification, or distribution. Actions include metadata about the tools or software agents responsible for the operation, as well as contextual details such as timestamps and parameters.

Example Action:

  "actions": [
    {
      "action": "c2pa.created",
      "timestamp": "2024-12-28T10:00:00Z",
      "softwareAgent": {
        "name": "AI_Generator_v2",
        "version": "3.1.0"
      },
      "parameters": {
        "prompt": "Generate an image of a dog",
        "num_steps": 50,
        "model": "StableDiffusion_v4"
      }
    }
  ]
}

Actions provide traceability for every operation affecting the content, ensuring that its lifecycle is fully transparent. Hash Network leverages this principle to ensure that all actions related to content stored on its platform are cryptographically verifiable and securely recorded.

PreviousAssertionNextIngredient

Last updated 4 months ago