Hexadecimal strings
- Explore
- View source
- Playground
Loading ....
- YAML
- JSON
ethdebug/format/data/hex
$schema: "https://json-schema.org/draft/2020-12/schema"
$id: "schema:ethdebug/format/data/hex"
title: ethdebug/format/data/hex
description: |
A `0x`-prefixed hexadecimal string. This value **must** contain at least one
hexadecimal character (`0x` by itself is not allowed).
type: string
pattern: "^0x[0-9a-fA-F]{1,}$"
examples:
- "0x0000"
- "0x1"
ethdebug/format/data/hex
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:ethdebug/format/data/hex",
"title": "ethdebug/format/data/hex",
"description": "A `0x`-prefixed hexadecimal string. This value **must** contain at least one\nhexadecimal character (`0x` by itself is not allowed).\n",
"type": "string",
"pattern": "^0x[0-9a-fA-F]{1,}$",
"examples": [
"0x0000",
"0x1"
]
}
Loading...