Skip to content

Instantly share code, notes, and snippets.

@dnnsmnstrr
Last active October 18, 2025 09:10
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
{
"status": "Working at [3st](https://3st.de)",
"projects": [
"Got a Voron V0, now I'm tuning it and making modifications like lighting and air filtration",
"Organizing my workshop with [Gridfinity](https://gridfinity.xyz/) and [openGrid](https://www.opengrid.world/)"
],
"plans": [
"Visiting FormNext in November"
],
"location": "Mainz, Germany",
"playlist": {
"name": "Jellyfish",
"uri": "7LRqVBNnbOnUUU6a3Xfzat"
},
"updatedAt": "2025-06-22T22:03:15.000Z"
}
@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