35 lines
876 B
JSON
35 lines
876 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "/schema/contact",
|
|
"title": "Contact information ",
|
|
"description": "A form submission data",
|
|
"type": "object",
|
|
"properties": {
|
|
"contactid": {
|
|
"title":"A unique string fromalias_fromuuid_toalias_touuid_timestamp",
|
|
"type":"string",
|
|
"default":"createcontactid",
|
|
"formclass":"hidden"
|
|
},
|
|
"name":{
|
|
"title":"Name",
|
|
"description":"",
|
|
"type":"string",
|
|
"formclass":"input",
|
|
"placeholder":"Votre nom"
|
|
},
|
|
"mailm":{
|
|
"title":"Email",
|
|
"description":"",
|
|
"type":"string",
|
|
"formclass":"input",
|
|
"placeholder":"Votre nom"
|
|
},
|
|
"mobile":{
|
|
"title":"",
|
|
"description":"",
|
|
"type":"string",
|
|
"formclass":"input"
|
|
}
|
|
}
|
|
} |