식빵 레시피 1건
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"ingredients"
],
"properties": {
"name": {
"type": "string"
},
"variant": {
"type": "string"
},
"ingredients": {
"type": "array",
"items": {
"type": "object",
"required": [
"item",
"amount",
"unit"
],
"properties": {
"item": {
"type": "string"
},
"unit": {
"type": "string"
},
"amount": {
"type": "integer"
}
}
}
}
}
},
"description": "식빵 레시피 1건"
}