-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSXQ.json
53 lines (46 loc) · 1.71 KB
/
SXQ.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"title": "SXQ Company",
"type": "object",
"required":["regulationLaw","nameInArabic","nameInEnglish","governerateHQ","cityHQ","addressHQ",
"telephoneHQ","capitalCurrency","capital","investorName","investorSex","investorNationality",
"investorIdentificationType","investorIdentificationNumber", "investorBD","investorAddress",
"investorTelephone","investorFax","investorEmail"],
"properties": {
"regulationLaw": {"title":"Regulation Law","type": "string","enum": ["Law 159","Law 72"]},
"nameInArabic":{"title":"Name in Arabic","type": "string"},
"nameInEnglish":{"title":"Name in English","type":"string"},
"governerateHQ": { "title":"Governerate HQ", "type": "string" },
"cityHQ": {"title":"City HQ","type": "string" },
"addressHQ": {"title":"Address HQ","type": "string"},
"telephoneHQ": { "title":"Telephone HQ","type": "number"},"faxHQ": {"title":"Fax HQ","type": "number"},
"capitalCurrency": {"enum":["USD","EGP","EUR","GBP"],"type": "string" },
"capital": {"type": "number","minimum": 50000},
"investorName": {"type": "string"},"investorType": { "type": "string"},
"investorSex": {"type": "string","enum":["Male","Female"] },
"investorNationality": { "type": "string"},
"investorIdentificationType": {
"type": "string",
"enum":["Passport","National ID"]
},
"investorIdentificationNumber": {
"type": "string"
},
"investorBD": {
"type": "string",
"format":"date"
},
"investorAddress": {
"type": "string"
},
"investorTelephone": {
"type": "string"
},
"investorFax": {
"type": "string"
},
"investorEmail": {
"type": "string",
"format":"email"
}
}
}