-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
53 changed files
with
2,316 additions
and
11,513 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
56 changes: 56 additions & 0 deletions
56
src/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2019-09/applicator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2019-09/schema", | ||
"$id": "https://json-schema.org/draft/2019-09/meta/applicator", | ||
"$vocabulary": { | ||
"https://json-schema.org/draft/2019-09/vocab/applicator": true | ||
}, | ||
"$recursiveAnchor": true, | ||
|
||
"title": "Applicator vocabulary meta-schema", | ||
"type": ["object", "boolean"], | ||
"properties": { | ||
"additionalItems": { "$recursiveRef": "#" }, | ||
"unevaluatedItems": { "$recursiveRef": "#" }, | ||
"items": { | ||
"anyOf": [ | ||
{ "$recursiveRef": "#" }, | ||
{ "$ref": "#/$defs/schemaArray" } | ||
] | ||
}, | ||
"contains": { "$recursiveRef": "#" }, | ||
"additionalProperties": { "$recursiveRef": "#" }, | ||
"unevaluatedProperties": { "$recursiveRef": "#" }, | ||
"properties": { | ||
"type": "object", | ||
"additionalProperties": { "$recursiveRef": "#" }, | ||
"default": {} | ||
}, | ||
"patternProperties": { | ||
"type": "object", | ||
"additionalProperties": { "$recursiveRef": "#" }, | ||
"propertyNames": { "format": "regex" }, | ||
"default": {} | ||
}, | ||
"dependentSchemas": { | ||
"type": "object", | ||
"additionalProperties": { | ||
"$recursiveRef": "#" | ||
} | ||
}, | ||
"propertyNames": { "$recursiveRef": "#" }, | ||
"if": { "$recursiveRef": "#" }, | ||
"then": { "$recursiveRef": "#" }, | ||
"else": { "$recursiveRef": "#" }, | ||
"allOf": { "$ref": "#/$defs/schemaArray" }, | ||
"anyOf": { "$ref": "#/$defs/schemaArray" }, | ||
"oneOf": { "$ref": "#/$defs/schemaArray" }, | ||
"not": { "$recursiveRef": "#" } | ||
}, | ||
"$defs": { | ||
"schemaArray": { | ||
"type": "array", | ||
"minItems": 1, | ||
"items": { "$recursiveRef": "#" } | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
src/poetry/core/_vendor/jsonschema/schemas/vocabularies/draft2019-09/content
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2019-09/schema", | ||
"$id": "https://json-schema.org/draft/2019-09/meta/content", | ||
"$vocabulary": { | ||
"https://json-schema.org/draft/2019-09/vocab/content": true | ||
}, | ||
"$recursiveAnchor": true, | ||
|
||
"title": "Content vocabulary meta-schema", | ||
|
||
"type": ["object", "boolean"], | ||
"properties": { | ||
"contentMediaType": { "type": "string" }, | ||
"contentEncoding": { "type": "string" }, | ||
"contentSchema": { "$recursiveRef": "#" } | ||
} | ||
} |
Oops, something went wrong.