Hi, thanks for your response.
Here is my photo custom type and country custom type
{
"Main": {
"uid": {
"type": "UID",
"fieldset": "Unique Identifier",
"config": {
"placeholder": "UID"
}
},
"date": {
"type": "Date",
"fieldset": "Date Added"
},
"title": {
"type": "StructuredText",
"fieldset": "Photo Title",
"config": {
"single": "heading1",
"placeholder": "Title..."
}
},
"categories": {
"type": "Group",
"fieldset": "Categories",
"config": {
"fields": {
"link": {
"type": "Link",
"config": {
"select": "document",
"customtypes": [
"category"
],
"placeholder": "Link to a category"
}
}
}
}
},
"country": {
"type": "Link",
"config": {
"select": "document",
"customtypes": [
"country"
],
"label": "Country"
}
}
},
"Photo Info": {
"image": {
"type": "Image",
"fieldset": "Photo"
},
"price": {
"type": "Number",
"fieldset": "Price",
"config": {
"label": "USD",
"min": 1,
"placeholder": "Insert Price..."
}
},
"description": {
"type": "StructuredText",
"config": {
"multi": "paragraph,preformatted,heading1,heading2,heading3,heading4,heading5,heading6,strong,em,hyperlink,image,embed,list-item,o-list-item,rtl",
"label": "Photo Description",
"placeholder": "Description..."
}
}
}
}
{
"Main" : {
"uid" : {
"type" : "UID",
"config" : {
"label" : "ID",
"placeholder" : "Enter an SEO friendly unique ID"
}
},
"name" : {
"type" : "StructuredText",
"config" : {
"single" : "heading1,heading2,heading3,heading4,heading5,heading6",
"label" : "name",
"placeholder" : "Country name"
}
},
"description" : {
"type" : "StructuredText",
"config" : {
"multi" : "paragraph,preformatted,heading1,heading2,heading3,heading4,heading5,heading6,strong,em,hyperlink,image,embed,list-item,o-list-item,rtl",
"label" : "Description",
"placeholder" : "Enter a country description"
}
}
}
}