pub.chive.governance.getEditorStatus

chive.pub

Documentation

Get the trusted editor status and reputation metrics for a user

main query

Get the trusted editor status and reputation metrics for a user

Parameters

did string did Optional

User DID (defaults to authenticated user)

Output

Encodingapplication/json

Errors

AuthenticationRequired
NotFound
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
User DID (defaults to authenticated user)
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "AuthenticationRequired"
    },
    {
      "name": "NotFound"
    }
  ],
  "output": {
    "schema": {
      "ref": "#editorStatus",
      "type": "ref"
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "User DID (defaults to authenticated user)"
      }
    }
  },
  "description": "Get the trusted editor status and reputation metrics for a user"
}
editorStatus object

Editor status and metrics

Properties

dailyRateLimit integer Optional

Daily rate limit for delegation

minimum: 0
delegationCollections array of string Optional

Collections the delegation covers

delegationExpiresAt integer Optional

Delegation expiration timestamp

did string did Required

User DID

displayName string Optional

User display name

hasDelegation boolean Required

Whether user has an active PDS delegation

recordsCreatedToday integer Optional

Records created today under delegation

minimum: 0
role string Required

Current governance role

Known values: community-member, trusted-editor, graph-editor, domain-expert, administrator
roleGrantedAt integer Optional

Timestamp when role was granted

roleGrantedBy string did Optional

DID of admin who granted the role

View raw schema
{
  "type": "object",
  "required": [
    "did",
    "role",
    "hasDelegation",
    "metrics"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did",
      "description": "User DID"
    },
    "role": {
      "type": "string",
      "description": "Current governance role",
      "knownValues": [
        "community-member",
        "trusted-editor",
        "graph-editor",
        "domain-expert",
        "administrator"
      ]
    },
    "metrics": {
      "ref": "#reputationMetrics",
      "type": "ref"
    },
    "displayName": {
      "type": "string",
      "description": "User display name"
    },
    "hasDelegation": {
      "type": "boolean",
      "description": "Whether user has an active PDS delegation"
    },
    "roleGrantedAt": {
      "type": "integer",
      "description": "Timestamp when role was granted"
    },
    "roleGrantedBy": {
      "type": "string",
      "format": "did",
      "description": "DID of admin who granted the role"
    },
    "dailyRateLimit": {
      "type": "integer",
      "minimum": 0,
      "description": "Daily rate limit for delegation"
    },
    "delegationExpiresAt": {
      "type": "integer",
      "description": "Delegation expiration timestamp"
    },
    "recordsCreatedToday": {
      "type": "integer",
      "minimum": 0,
      "description": "Records created today under delegation"
    },
    "delegationCollections": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Collections the delegation covers"
    }
  },
  "description": "Editor status and metrics"
}
reputationMetrics object

User reputation metrics for governance

Properties

accountAgeDays integer Required

Account age in days

minimum: 0
accountCreatedAt integer Required

Account creation timestamp

did string did Required

User DID

eligibleForTrustedEditor boolean Required

Whether user meets trusted editor criteria

eprintCount integer Required

Total eprints authored

minimum: 0
missingCriteria array of string Required

List of missing eligibility criteria

proposalCount integer Required

Governance proposals submitted

minimum: 0
reputationScore integer Required

Computed reputation score

minimum: 0
role string Required

Current governance role

Known values: community-member, trusted-editor, graph-editor, domain-expert, administrator
successfulProposals integer Required

Proposals that were approved

minimum: 0
totalEndorsements integer Required

Total endorsements received

minimum: 0
violationCount integer Required

Policy violations recorded

minimum: 0
voteCount integer Required

Votes cast

minimum: 0
warningCount integer Required

Moderation warnings received

minimum: 0
wellEndorsedEprintCount integer Required

Eprints with substantial endorsements

minimum: 0
View raw schema
{
  "type": "object",
  "required": [
    "did",
    "accountCreatedAt",
    "accountAgeDays",
    "eprintCount",
    "wellEndorsedEprintCount",
    "totalEndorsements",
    "proposalCount",
    "voteCount",
    "successfulProposals",
    "warningCount",
    "violationCount",
    "reputationScore",
    "role",
    "eligibleForTrustedEditor",
    "missingCriteria"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did",
      "description": "User DID"
    },
    "role": {
      "type": "string",
      "description": "Current governance role",
      "knownValues": [
        "community-member",
        "trusted-editor",
        "graph-editor",
        "domain-expert",
        "administrator"
      ]
    },
    "voteCount": {
      "type": "integer",
      "minimum": 0,
      "description": "Votes cast"
    },
    "eprintCount": {
      "type": "integer",
      "minimum": 0,
      "description": "Total eprints authored"
    },
    "warningCount": {
      "type": "integer",
      "minimum": 0,
      "description": "Moderation warnings received"
    },
    "proposalCount": {
      "type": "integer",
      "minimum": 0,
      "description": "Governance proposals submitted"
    },
    "accountAgeDays": {
      "type": "integer",
      "minimum": 0,
      "description": "Account age in days"
    },
    "violationCount": {
      "type": "integer",
      "minimum": 0,
      "description": "Policy violations recorded"
    },
    "missingCriteria": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of missing eligibility criteria"
    },
    "reputationScore": {
      "type": "integer",
      "minimum": 0,
      "description": "Computed reputation score"
    },
    "accountCreatedAt": {
      "type": "integer",
      "description": "Account creation timestamp"
    },
    "totalEndorsements": {
      "type": "integer",
      "minimum": 0,
      "description": "Total endorsements received"
    },
    "successfulProposals": {
      "type": "integer",
      "minimum": 0,
      "description": "Proposals that were approved"
    },
    "wellEndorsedEprintCount": {
      "type": "integer",
      "minimum": 0,
      "description": "Eprints with substantial endorsements"
    },
    "eligibleForTrustedEditor": {
      "type": "boolean",
      "description": "Whether user meets trusted editor criteria"
    }
  },
  "description": "User reputation metrics for governance"
}

Lexicon Garden

@