Forgejo · Schema

QuotaUsedArtifact

QuotaUsedArtifact represents an artifact counting towards a user's quota

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
html_url string HTML URL to the action run containing the artifact
name string Name of the artifact
size integer Size of the artifact (compressed)
View JSON Schema on GitHub

JSON Schema

quotausedartifact.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "QuotaUsedArtifact",
  "description": "QuotaUsedArtifact represents an artifact counting towards a user's quota",
  "type": "object",
  "properties": {
    "html_url": {
      "description": "HTML URL to the action run containing the artifact",
      "type": "string",
      "x-go-name": "HTMLURL"
    },
    "name": {
      "description": "Name of the artifact",
      "type": "string",
      "x-go-name": "Name"
    },
    "size": {
      "description": "Size of the artifact (compressed)",
      "type": "integer",
      "format": "int64",
      "x-go-name": "Size"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}