forked from ckan/ckanext-scheming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
camel_photos.json
139 lines (138 loc) · 3.38 KB
/
camel_photos.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"scheming_version": 1,
"dataset_type": "camel-photos",
"about_url": "http://example.com/the-camel-photos-schema",
"dataset_fields": [
{
"field_name": "title",
"label": "Title",
"preset": "title",
"form_placeholder": "eg. Larry, Peter, Susan"
},
{
"field_name": "name",
"label": "URL",
"preset": "dataset_slug",
"form_placeholder": "eg. camel-no-5"
},
{
"field_name": "humps",
"label": "Humps",
"validators": "ignore_missing int_validator",
"form_placeholder": "eg. 2"
},
{
"field_name": "category",
"label": "Category",
"help_text": "Make and model",
"help_inline": true,
"preset": "select",
"choices": [
{
"value": "bactrian",
"label": "Bactrian Camel"
},
{
"value": "hybrid",
"label": "Hybrid Camel"
},
{
"value": "f2hybrid",
"label": "F2 Hybrid Camel"
},
{
"value": "snowwhite",
"label": "Snow-white Dromedary"
},
{
"value": "black",
"label": "Black Camel"
}
]
},
{
"field_name": "personality",
"label": "Personality",
"preset": "multiple_checkbox",
"choices": [
{
"value": "friendly",
"label": "Often friendly"
},
{
"value": "jealous",
"label": "Jealous of others"
},
{
"value": "spits",
"label": "Tends to spit"
}
]
},
{
"field_name": "photographer",
"label": "Photographer",
"help_text": "This field will be collapsed with the related email field if hide_field and display_email_name_field are set accordingly.",
"help_inline": true,
"form_placeholder": "Joe Bloggs",
"display_property": "dc:creator",
"hide_field": "true"
},
{
"field_name": "photographer_email",
"label": "Photographer Email",
"form_placeholder": "[email protected]",
"display_property": "dc:creator",
"display_snippet": "email.html",
"display_email_name_field": "photographer"
},
{
"field_name": "a_relevant_date",
"label": "A relevant date",
"preset": "date"
},
{
"field_name": "a_relevant_datetime",
"label": "A relevant date",
"label_time": "A relevant time",
"preset": "datetime"
},
{
"field_name": "other",
"label": {"en": "Other information"},
"help_text": "The help text goes here",
"output_validators": "ignore_missing"
}
],
"resource_fields": [
{
"field_name": "url",
"label": "Photo",
"preset": "resource_url_upload",
"form_placeholder": "http://example.com/my-camel-photo.jpg",
"upload_label": "Photo"
},
{
"field_name": "camels_in_photo",
"label": "Camels in Photo",
"validators": "ignore_missing int_validator",
"form_placeholder": "eg. 2"
},
{
"field_name": "others_in_photo",
"label": "Other Thing in Photo",
"output_validators": "ignore_missing"
},
{
"field_name": "date",
"label": "Date",
"preset": "date"
},
{
"field_name": "datetime",
"label": "Date Taken",
"label_time": "Time Taken",
"preset": "datetime"
}
]
}