From f22e0321eccbe4a5dac007648c98f75db9d4016d Mon Sep 17 00:00:00 2001 From: Deborah Servili Date: Thu, 5 Dec 2019 10:30:58 +0100 Subject: [PATCH] jq --- schema_clusters.json | 169 ------------------------------------------- 1 file changed, 169 deletions(-) diff --git a/schema_clusters.json b/schema_clusters.json index 7ce7d7d..e69de29 100644 --- a/schema_clusters.json +++ b/schema_clusters.json @@ -1,169 +0,0 @@ -{ - "$schema": "http://json-schema.org/schema#", - "title": "Validator for misp-galaxies - Clusters", - "id": "https://www.github.com/MISP/misp-galaxies/schema_clusters.json", - "type": "object", - "additionalProperties": false, - "properties": { - "description": { - "type": "string" - }, - "type": { - "type": "string" - }, - "version": { - "type": "integer" - }, - "name": { - "type": "string" - }, - "uuid": { - "type": "string" - }, - "source": { - "type": "string" - }, - "category": { - "type": "string" - }, - "values": { - "type": "array", - "uniqueItems": true, - "items": { - "type": "object", - "additionalProperties": false, - "properties": { - "description": { - "type": "string" - }, - "value": { - "type": "string" - }, - "uuid": { - "type": "string" - }, - "related": { - "type": "array", - "additionalProperties": false, - "items": { - "type": "object" - }, - "properties": { - "dest-uuid": { - "type": "string" - }, - "type": { - "type": "string" - }, - "tags": { - "type": "array", - "uniqueItems": true, - "items": { - "type": "string" - } - } - } - }, - "meta": { - "type": "object", - "additionalProperties": true, - "properties": { - "type": { - "type": "array", - "uniqueItems": true, - "items": { - "type": "string" - } - }, - "complexity": { - "type": "string" - }, - "effectiveness": { - "type": "string" - }, - "country": { - "type": "string" - }, - "possible_issues": { - "type": "string" - }, - "colour": { - "type": "string" - }, - "motive": { - "type": "string" - }, - "impact": { - "type": "string" - }, - "refs": { - "type": "array", - "uniqueItems": true, - "items": { - "type": "string" - } - }, - "synonyms": { - "type": "array", - "uniqueItems": true, - "items": { - "type": "string" - } - }, - "status": { - "type": "string" - }, - "date": { - "type": "string" - }, - "encryption": { - "type": "string" - }, - "extensions": { - "type": "array", - "uniqueItems": true, - "items": { - "type": "string" - } - }, - "ransomnotes": { - "type": "array", - "uniqueItems": true, - "items": { - "type": "string" - } - }, - "official-refs": { - "type": "array", - "uniqueItems": true, - "items": { - "type": "string" - } - } - } - }, - "required": [ - "value" - ] - } - }, - "authors": { - "type": "array", - "uniqueItems": true, - "items": { - "type": "string" - } - } - }, - "required": [ - "description", - "type", - "version", - "name", - "uuid", - "values", - "authors", - "source", - "category" - ] -}