{ "$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" } } } } } } }