chore: track site sources + ignore local env/backups
This commit is contained in:
92
.astro/collections/glossaire.schema.json
Normal file
92
.astro/collections/glossaire.schema.json
Normal file
@@ -0,0 +1,92 @@
|
||||
{
|
||||
"$ref": "#/definitions/glossaire",
|
||||
"definitions": {
|
||||
"glossaire": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"term": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"aliases": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"default": []
|
||||
},
|
||||
"edition": {
|
||||
"type": "string",
|
||||
"const": "glossaire"
|
||||
},
|
||||
"status": {
|
||||
"type": "string",
|
||||
"const": "referentiel"
|
||||
},
|
||||
"version": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"definitionShort": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"concepts": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"default": []
|
||||
},
|
||||
"links": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"definition",
|
||||
"appui",
|
||||
"transposition"
|
||||
]
|
||||
},
|
||||
"target": {
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
},
|
||||
"note": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"target"
|
||||
],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"default": []
|
||||
},
|
||||
"$schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"title",
|
||||
"term",
|
||||
"edition",
|
||||
"status",
|
||||
"version",
|
||||
"definitionShort"
|
||||
],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"$schema": "http://json-schema.org/draft-07/schema#"
|
||||
}
|
||||
Reference in New Issue
Block a user