1
0
mirror of https://github.com/Mojang/bedrock-protocol-docs.git synced 2025-11-07 02:25:10 +00:00
Files
bedrock-protocol-docs/json/OpenSignPacket.json

75 lines
2.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "4061523320",
"x-format-version": "MISSING VERSION",
"x-minecraft-version": "1.21.120",
"x-protocol-version": 859,
"definitions": {
"614405477": {
"title": "OpenSignPacketPayload",
"type": "object",
"properties": {
"Is Front Side": {
"type": "boolean",
"x-ordinal-index": 1
},
"Pos": {
"$ref": "#/definitions/269289973",
"x-ordinal-index": 0
}
},
"required": [
"Is Front Side",
"Pos"
]
},
"269289973": {
"title": "NetworkBlockPosition",
"type": "object",
"properties": {
"X": {
"type": "integer",
"x-underlying-type": "int32",
"x-serialization-options": [
"Compression"
],
"x-ordinal-index": 0
},
"Y": {
"type": "integer",
"x-underlying-type": "uint32",
"x-serialization-options": [
"Compression"
],
"x-ordinal-index": 1
},
"Z": {
"type": "integer",
"x-underlying-type": "int32",
"x-serialization-options": [
"Compression"
],
"x-ordinal-index": 2
}
},
"required": [
"X",
"Y",
"Z"
]
}
},
"title": "OpenSignPacket",
"description": "Sent from the server so that the client knows to open the sign screen.",
"type": "object",
"properties": {
"mPayload": {
"$ref": "#/definitions/614405477",
"x-ordinal-index": 0
}
},
"$metaProperties": {
"[cereal:packet]": 303,
"[cereal:packet_details]": ""
}
}