Skip to content

Instantly share code, notes, and snippets.

@dnnsmnstrr
Last active June 26, 2025 21:39
Show Gist options
  • Save dnnsmnstrr/f18bfa6e4f02dc480426d05cf7adff79 to your computer and use it in GitHub Desktop.
Save dnnsmnstrr/f18bfa6e4f02dc480426d05cf7adff79 to your computer and use it in GitHub Desktop.
Now
{
"status": "Working at [3st](https://3st.de)",
"projects": [
"Continually updating my [website](https://muensterer.tech) with new slashpages",
"Made a page for a segment of my favorite podcast, Fest & Flauschig. It is called [Die Großen 5](https://die-grossen-5.netlify.app/)",
"While playing piano, I got frustrated by the Ultimate Guitar Tabs app, so I built my own chords app with Expo and React Native. I'm now on the third revision, back to using React Native after an attempt with SwiftUI."
],
"activities ": [
"Saw the RTO and Jan Böhmermann in Cologne"
],
"plans": [
"Running the “Mainzer Firmenlauf” in September"
],
"location": "Mainz, Germany",
"playlist": {
"name": "Summer nights",
"uri": "7kT7V7djIYgu67CGf1vQ7P"
},
"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