Project

General

Profile

Download (1011 Bytes) Statistics
| Branch: | Tag: | Revision:

hydrilla-json-schemas / api_resource_description-1.0.1.schema.json @ 09634f34

1
{
2
    "$schema": "http://json-schema.org/draft-07/schema#",
3
    "$id": "https://hydrilla.koszko.org/schemas/api_resource_description-1.0.1.schema.json",
4
    "title": "Resource description",
5
    "description": "Definition of a Hydrilla resource, as served through HTTP API",
6
    "allOf": [{
7
	"$ref": "./common_definitions-1.0.1.schema.json#/definitions/resource_definition_base"
8
    }, {
9
	"$ref": "./common_definitions-1.0.1.schema.json#/definitions/item_definition"
10
    }, {
11
	"type": "object",
12
	"required": ["$schema"],
13
	"properties": {
14
	    "$schema": {
15
		"description": "Mark this instance as conforming to resource description schema 1.x",
16
		"type": "string",
17
		"pattern": "^https://hydrilla\\.koszko\\.org/schemas/api_resource_description-1\\.(([1-9][0-9]*|0)\\.)*schema\\.json$"
18
	    },
19
	    "scripts": {
20
		"description": "Which files are resource's scripts and need to be installed",
21
		"$ref": "./common_definitions-1.0.1.schema.json#/definitions/file_ref_list_sha256",
22
		"default": []
23
	    }
24
	}
25
    }]
26
}
(5-5/12)