From a6ba61a2bff6d9ac34e2ecbd158bca97610c753c Mon Sep 17 00:00:00 2001 From: Colin McLeod Date: Sat, 18 Jul 2015 14:46:22 -0700 Subject: [PATCH] Change loadout schema slightly --- app/schemas/ship-loadout/1.json | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/app/schemas/ship-loadout/1.json b/app/schemas/ship-loadout/1.json index c5dd2a00..47011ffb 100644 --- a/app/schemas/ship-loadout/1.json +++ b/app/schemas/ship-loadout/1.json @@ -24,8 +24,9 @@ "description": "3rd Party references and/or links to this build/loadout", "type": "array", "items": { - "type": "object", - "required": ["name","url"], + "type": "object", + "required": ["name","url"], + "additionalProperties": true, "properties": { "name": { "description": "The name of the 3rd party, .e.g 'Coriolis.io' or 'E:D Shipyard'", @@ -34,13 +35,6 @@ "url": { "description": "The link/url to the 3rd party referencing this build/loadout", "type": "string" - }, - "shipId": { - "type": "string" - }, - "code": { - "description": "The serialized code or string for the build/loadout", - "type": "string" } } }