Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions latest/cutekit.manifest.component
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{
"$id": "https://schemas.cute.engineering/stable/cutekit.manifest.component.v1",
"$id": "https://schemas.cute.engineering/stable/cutekit.manifest.component",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A representation of a component manifest for CuteKit",
"type": "object",
"required": [
"id",
"type"
"type",
"$schema"
],
"additionalProperties": false,
"properties": {
"$schema": {
"description": "The schema that this manifest conforms to",
"type": "string"
"const": "https://schemas.cute.engineering/stable/cutekit.manifest.component"
},
"id": {
"description": "The unique identifier for this manifest",
Expand Down
7 changes: 5 additions & 2 deletions latest/cutekit.manifest.project
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"$id": "https://schemas.cute.engineering/stable/cutekit.manifest.project.v1",
"$id": "https://schemas.cute.engineering/stable/cutekit.manifest.project",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A representation of a component project for CuteKit",
"type": "object",
"required": [
"$schema"
],
"additionalProperties": false,
"properties": {
"$schema": {
"description": "The schema that this manifest conforms to",
"type": "string"
"const": "https://schemas.cute.engineering/stable/cutekit.manifest.project"
},
"id": {
"description": "The unique identifier for this manifest",
Expand Down
7 changes: 5 additions & 2 deletions latest/cutekit.manifest.target
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"$id": "https://schemas.cute.engineering/stable/cutekit.manifest.target.v1",
"$id": "https://schemas.cute.engineering/stable/cutekit.manifest.target",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A representation of a target manifest for CuteKit",
"type": "object",
"additionalProperties": false,
"required": [
"$schema"
],
"properties": {
"$schema": {
"description": "The schema that this manifest conforms to",
"type": "string"
"const": "https://schemas.cute.engineering/stable/cutekit.manifest.target"
},
"id": {
"description": "The unique identifier for this manifest",
Expand Down
5 changes: 3 additions & 2 deletions stable/cutekit.manifest.component.v1
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@
"type": "object",
"required": [
"id",
"type"
"type",
"$schema"
],
"additionalProperties": false,
"properties": {
"$schema": {
"description": "The schema that this manifest conforms to",
"type": "string"
"const": "https://schemas.cute.engineering/stable/cutekit.manifest.component.v1"
},
"id": {
"description": "The unique identifier for this manifest",
Expand Down
5 changes: 4 additions & 1 deletion stable/cutekit.manifest.project.v1
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "A representation of a component project for CuteKit",
"type": "object",
"required": [
"$schema"
],
"additionalProperties": false,
"properties": {
"$schema": {
"description": "The schema that this manifest conforms to",
"type": "string"
"const": "https://schemas.cute.engineering/stable/cutekit.manifest.project.v1"
},
"id": {
"description": "The unique identifier for this manifest",
Expand Down
5 changes: 4 additions & 1 deletion stable/cutekit.manifest.target.v1
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@
"description": "A representation of a target manifest for CuteKit",
"type": "object",
"additionalProperties": false,
"required": [
"$schema"
],
"properties": {
"$schema": {
"description": "The schema that this manifest conforms to",
"type": "string"
"const": "https://schemas.cute.engineering/stable/cutekit.manifest.target.v1"
},
"id": {
"description": "The unique identifier for this manifest",
Expand Down