TOIP Trust Registry Protocol

Added on Feb. 18, 2026Managed by lisa+toip

Authorization Request

{
  "$id": "trqp-authorization-request",
  "title": "AuthorizationRequest",
  "type": "object",
  "required": [
    "entity_id",
    "action",
    "resource",
    "authority_id"
  ],
  "properties": {
    "entity_id": {
      "type": "string",
      "description": "The identifier for the entity that is being tested for authorization."
    },
    "authority_id": {
      "type": "string",
      "description": "The identifier for the authority (e.g. ecosystem governning authority) that is being queried."
    },
    "action": {
      "type": "string",
      "description": "The action that the query is checking Authorization for."
    },
    "resource": {
      "type": "string",
      "description": "The resource that the query is is checking Authorization for."
    },
    "context": {
      "type": "object",
      "properties": {
        "time": {
          "type": "string",
          "format": "date-time",
          "description": "Time for query to use. If blank, uses current server time. RFC3339 required, using only Z (+00:00) offset."
        },
        "locator": {
            "type": "string",
            "description": "Provided for systems that require additional information to locate the records in question."
        }
      },
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}

View source