Aptos · Schema

RSA_JWK

Move type `0x1::jwks::RSA_JWK` in rust. See its doc in Move for more details.

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
kid string
kty string
alg string
e string
n string
View JSON Schema on GitHub

JSON Schema

RSA_JWK.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/RSA_JWK.json",
  "title": "RSA_JWK",
  "type": "object",
  "description": "Move type `0x1::jwks::RSA_JWK` in rust.\nSee its doc in Move for more details.",
  "required": [
    "kid",
    "kty",
    "alg",
    "e",
    "n"
  ],
  "properties": {
    "kid": {
      "type": "string"
    },
    "kty": {
      "type": "string"
    },
    "alg": {
      "type": "string"
    },
    "e": {
      "type": "string"
    },
    "n": {
      "type": "string"
    }
  }
}