mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 02:08:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"id" : "id.json",
|
||||
"title": "Definitions: id key",
|
||||
"description": "Schemas in #/definitions used to detect valid id (string of format uri or array containing 1 item of string, format uri).",
|
||||
"definitions":
|
||||
{
|
||||
"stringUri" :
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "string",
|
||||
"format": "uri"
|
||||
},
|
||||
|
||||
"arraySingleStringUri":
|
||||
{
|
||||
"oneOf":
|
||||
[
|
||||
{ "$ref": "#/definitions/stringUri" },
|
||||
{ "type": "array",
|
||||
"minItems": 1,
|
||||
"maxItems": 1,
|
||||
"items": { "$ref": "#/definitions/stringUri" }
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
"idValueFound":
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||
"type": "object",
|
||||
"required": [ "id" ],
|
||||
"properties": {
|
||||
"id" : { "$ref": "#/definitions/arraySingleStringUri" }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue