From 651096304288da9a5dd7b6329413f89d783cf069 Mon Sep 17 00:00:00 2001 From: Toure Dunnon Date: Fri, 16 Oct 2020 10:28:12 -0400 Subject: [PATCH] rebase to fix merge conflict. Signed-off-by: Toure Dunnon --- schema/json/schema.json | 77 +++++++++++++++++------------------------ 1 file changed, 32 insertions(+), 45 deletions(-) diff --git a/schema/json/schema.json b/schema/json/schema.json index 0db076d67e10..be4cb2e5fff3 100644 --- a/schema/json/schema.json +++ b/schema/json/schema.json @@ -40,9 +40,6 @@ "architecture": { "type": "string" }, - "author": { - "type": "string" - }, "authors": { "type": "null" }, @@ -53,55 +50,45 @@ "type": "integer" }, "files": { - "anyOf": [ - { - "type": "null" - }, - { - "items": { - "anyOf": [ - { + "items": { + "anyOf": [ + { + "type": "string" + }, + { + "properties": { + "checksum": { "type": "string" }, - { - "properties": { - "checksum": { - "type": "string" - }, - "ownerGid": { - "type": "string" - }, - "ownerUid": { - "type": "string" - }, - "path": { - "type": "string" - }, - "permissions": { - "type": "string" - } - }, - "required": [ - "checksum", - "ownerGid", - "ownerUid", - "path", - "permissions" - ], - "type": "object" + "ownerGid": { + "type": "string" + }, + "ownerUid": { + "type": "string" + }, + "path": { + "type": "string" + }, + "permissions": { + "type": "string" } - ] - }, - "type": "array" - } - ] + }, + "required": [ + "checksum", + "ownerGid", + "ownerUid", + "path", + "permissions" + ], + "type": "object" + } + ] + }, + "type": "array" }, "gitCommitOfApkPort": { "type": "string" }, - "homepage": { - "type": "string" - }, "installedSize": { "type": "integer" },