cutekit/schemas/osdk.manifest.project.v1.json
Nicolas Van Bossuyt dc08039305 Added json schemas
2023-02-20 12:05:55 +01:00

39 lines
1.3 KiB
JSON

{
"$id": "https://schema.cute.engineering/osdk.manifest.project.v1.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A representation of a component project for OSDK",
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for this manifest",
"type": "string"
},
"type": {
"description": "The type of this manifest",
"type": "string"
},
"description": {
"description": "A description of this manifest",
"type": "string"
},
"extern": {
"description": "A list of external dependencies",
"type": "object",
"patternProperties": {
".*": {
"type": "object",
"properties": {
"git": {
"description": "The git repository to clone",
"type": "string"
},
"tag": {
"description": "The tag to checkout",
"type": "string"
}
}
}
}
}
}
}