[quote=“ClockworkZombie, post:2, topic:5710”]There is no multitile building support via JSON at this time. Multitile buildings must be added to the source.[/quote]Not multitile buildings. Multitile tiles.
Those are achieved by basically adding a ‘“multitile” : true’ tag, and an array of subtiles. Here’s an example:
{
"rotates": false,
"multitile": true,
"additional_tiles": [
{
"id": "center",
"fg": 49
},
{
"id": "corner",
"fg": 50
},
{
"id": "edge",
"fg": 51
},
{
"id": "t_connection",
"fg": 52
},
{
"id": "end_piece",
"fg": 53
},
{
"id": "unconnected",
"fg": 48
}
],
"id": "t_pit_spiked",
"fg": 48
},
Here’s a nice visual aid to help you understand what the different additional tiles mean and how they must look like (i.e. what part of the whole they represent and what orientation they must be in)

I hope this helps. 