Skip to content

Instantly share code, notes, and snippets.

@dnnsmnstrr
Last active March 10, 2026 00:18
Show Gist options
  • Select an option

  • Save dnnsmnstrr/f18bfa6e4f02dc480426d05cf7adff79 to your computer and use it in GitHub Desktop.

Select an option

Save dnnsmnstrr/f18bfa6e4f02dc480426d05cf7adff79 to your computer and use it in GitHub Desktop.
Now
{
"$schema": "https://gist.github.com/dnnsmnstrr/f18bfa6e4f02dc480426d05cf7adff79/raw/041b6ddcc27c08d54c02032ed9c9e752a94598f0/schema.json",
"status": "Finally received my Stellen Davinci Toolkit after almost 3(!) years of waiting! Working on integrating it into my workshop.",
"projects": [
"Organizing my workshop with [Gridfinity](https://gridfinity.xyz/) and [openGrid](https://www.opengrid.world/)",
"Got a Voron V0, now I'm tuning it and making modifications like lighting and air filtration"
],
"plans": [
"Build my [SOLDR](https://www.soldr.pro/) kit, once it arrives",
"Traveling to Canada again this year"
],
"location": "Mainz, Germany",
"playlist": {
"name": "Hold On",
"uri": "",
"url": "https://music.apple.com/de/playlist/hold-on/pl.u-JPAZZlNsEpl11o"
},
"updatedAt": "2026-03-09T20:47:13.000Z",
"activities": []
}
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "Now Schema",
"properties": {
"$schema": {
"type": "string",
"description": "link to the version of the schema that can validate the now schema",
"format": "uri"
},
"status": {
"type": "string"
},
"projects": {
"type": "array",
"items": {
"type": "string"
}
},
"activities": {
"type": "array",
"items": {
"type": "string"
}
},
"plans": {
"type": "array",
"items": {
"type": "string"
}
},
"location": {
"type": "string"
},
"playlist": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"uri": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
}
},
"required": ["name"]
},
"updatedAt": {
"type": "string",
"format": "date-time"
}
},
"required": ["status", "projects", "activities", "plans", "location", "playlist", "updatedAt"]
}
@dnnsmnstrr
Copy link
Author

@dnnsmnstrr
Copy link
Author

dnnsmnstrr commented Jun 26, 2025

JSON Schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "projects": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "activities": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "plans": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "location": {
      "type": "string"
    },
    "playlist": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "uri": {
          "type": "string"
        }
      },
      "required": ["name", "uri"]
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": ["status", "projects", "activities", "plans", "location", "playlist", "updatedAt"]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment