1{
2 "title": "Email signature generator actor input schema",
3 "description": "Enter your details for the Apify email signature. Only enter the values that you want to have in your signature.",
4 "type": "object",
5 "schemaVersion": 1,
6 "properties": {
7 "fullName": {
8 "title": "Full Name",
9 "type": "string",
10 "description": "The full name displayed in the signature.",
11 "editor": "textfield"
12 },
13 "position": {
14 "title": "Position",
15 "type": "string",
16 "description": "Your position in Apify.",
17 "editor": "textfield"
18 },
19 "phoneNumber": {
20 "title": "Phone Number",
21 "type": "string",
22 "description": "Your phone number.",
23 "editor": "textfield"
24 },
25 "twitterUrl": {
26 "title": "Twitter URL",
27 "type": "string",
28 "description": "The URL of your Twitter.",
29 "editor": "textfield"
30 },
31 "linkedInUrl": {
32 "title": "LinkedIn URL",
33 "type": "string",
34 "description": "The URL of your LinkedIn.",
35 "editor": "textfield"
36 },
37 "githubUrl": {
38 "title": "GitHub URL",
39 "type": "string",
40 "description": "The URL of your GitHub.",
41 "editor": "textfield"
42 },
43 "hubspotUrl": {
44 "title": "Hubspot URL",
45 "type": "string",
46 "description": "The URL for Hubspot meetings.",
47 "editor": "textfield"
48 },
49 "otherUrls": {
50 "title": "Other URLs",
51 "type": "array",
52 "description": "Other URLs. The first value is the label (e.g. \"Facebook\"), the second one is the URL (e.g. \"https://facebook.com\")",
53 "editor": "keyValue",
54 "uniqueItems": false,
55 "placeholderKey": "Displayed label (e.g. \"Facebook\")",
56 "placeholderValue": "URL (e.g. \"https://facebook.com\")"
57 },
58 "apifyUrl": {
59 "title": "Apify Profile URL",
60 "type": "string",
61 "description": "The URL of your Apify profile.",
62 "editor": "textfield"
63 },
64 "apifyUrlLabel": {
65 "title": "Apify Profile URL Label",
66 "type": "string",
67 "description": "Optional label for your Apify profile URL. The default is \"Apify Profile\"",
68 "editor": "textfield"
69 },
70 "shouldDisplayHiring": {
71 "title": "Should Display Hiring Information",
72 "type": "boolean",
73 "description": "Determines whether the hiring link gets displayed.",
74 "editor": "checkbox"
75 },
76 "shouldDisplayG2": {
77 "title": "Should Display G2 banner",
78 "type": "boolean",
79 "description": "Determines whether the G2 banner gets displayed.",
80 "editor": "checkbox"
81 },
82 "type": {
83 "title": "Signature type",
84 "type": "string",
85 "description": "The signature type.",
86 "default": "Gmail",
87 "editor": "select",
88 "enum": ["Gmail", "Outlook"]
89 }
90 },
91 "required": ["fullName", "position", "shouldDisplayHiring", "type"]
92}