addedInput schema / properties / announcement / properties
Added value: +{
+ "embargo": {
+ "maxLength": 30,
+ "type": "string"
+ },
+ "topic": {
+ "maxLength": 300,
+ "minLength": 5,
+ "type": "string"
+ },
+ "type": {
+ "enum": [
+ "funding",
+ "product-launch",
+ "milestone",
+ "report",
+ "executive-hire",
+ "partnership",
+ "other"
+ ],
+ "type": "string"
+ }
+}
addedInput schema / properties / announcement / required
Added value: +[
+ "topic",
+ "type"
+]
addedInput schema / properties / budget
Added value: +{
+ "minimum": 0,
+ "type": "number"
+}
removedInput schema / properties / campaignObjectives
Removed value: -{
- "type": "array"
-}
addedInput schema / properties / company / properties
Added value: +{
+ "name": {
+ "maxLength": 200,
+ "minLength": 2,
+ "type": "string"
+ },
+ "sector": {
+ "maxLength": 100,
+ "minLength": 2,
+ "type": "string"
+ }
+}
addedInput schema / properties / company / required
Added value: +[
+ "name",
+ "sector"
+]
removedInput schema / properties / geographies
Removed value: -{
- "type": "array"
-}
removedInput schema / properties / influencerCategories
Removed value: -{
- "type": "array"
-}
removedInput schema / properties / spokespeople
Removed value: -{
- "type": "array"
-}
addedInput schema / properties / targetAudience
Added value: +{
+ "maxLength": 200,
+ "minLength": 5,
+ "type": "string"
+}
addedInput schema / properties / targetMedia
Added value: +{
+ "items": {
+ "enum": [
+ "tech-press",
+ "financial-press",
+ "industry-press",
+ "generalist",
+ "podcasts",
+ "influencers-linkedin",
+ "influencers-instagram"
+ ],
+ "type": "string"
+ },
+ "minItems": 1,
+ "type": "array"
+}
removedInput schema / properties / targetMediaTypes
Removed value: -{
- "type": "array"
-}
addedInput schema / required
Added value: +[
+ "company",
+ "announcement",
+ "targetAudience",
+ "targetMedia"
+]