Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

main.yml #87

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
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
Binary file added .github/.DS_Store
Binary file not shown.
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This is a basic workflow to help you get started with Actions

name: JSONSCheme

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: macos-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $jsonSChemeQ, so your job can access it
- uses: actions/checkout@v2

# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
12 changes: 12 additions & 0 deletions address
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{"description":"An Address following the convention of http://microformats.org/wiki/hcard",
"type":"object",
"properties":{
"post-office-box":{"type":"string","requires":"street-address"},
"extended-address":{"type":"string","requires":"street-address"},
"street-address":{"type":"string","requires":"region"},
"locality":{"type":"string","requires":"region", "required":true},
"region":{"type":"string","requires":"country-name", "required":true},
"postal-code":{"type":"string"},
"country-name":{"type":"string", "required":true}
}
}
12 changes: 12 additions & 0 deletions address-v2
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{"description":"An Address following the convention of http://microformats.org/wiki/hcard",
"type":"object",
"properties":{
"post-office-box":{"type":"string","specifity":5,"optional":true},
"extended-address":{"type":"string","specifity":5,"optional":true},
"street-address":{"type":"string","specifity":4,"optional":true},
"locality":{"type":"string","specifity":3},
"region":{"type":"string","specifity":2},
"postal-code":{"type":"string","optional":true},
"country-name":{"type":"string","specifity":1}
}
}
9 changes: 9 additions & 0 deletions address.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"post-office-box":{"type":"string","specifity":5,"optional":true},
"extended-address":{"type":"string","specifity":5,"optional":true},
"street-address":{"type":"string","specifity":4,"optional":true},
"locality":{"type":"string","specifity":3},
"region":{"type":"string","specifity":2},
"postal-code":{"type":"string","optional":true},
"country-name":{"type":"string","specifity":1}
}
20 changes: 20 additions & 0 deletions calendar
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{"description":"A representation of an event",
"type":"object",
"properties":{
"dtstart":{"format":"date-time","type":"string","description":"Event starting time","required":true},
"summary":{"type":"string","required":true},
"location":{"type":"string"},
"url":{"type":"string","format":"url"},
"dtend":{"format":"date-time","type":"string","description":"Event ending time"},
"duration":{"format":"date","type":"string","description":"Event duration"},
"rdate":{"format":"date-time","type":"string","description":"Recurrence date"},
"rrule":{"type":"string","description":"Recurrence rule"},
"category":{"type":"string"},
"description":{"type":"string"},
"geo":"http://json-schema.org/geo"
}
}




20 changes: 20 additions & 0 deletions calendar-v2
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{"description":"A representation of an event",
"type":"object",
"properties":{
"dtstart":{"format":"date-time","type":"string","description":"Event starting time"},
"summary":{"type":"string"},
"location":{"type":"string","optional":true},
"url":{"type":"string","format":"url","optional":true},
"dtend":{"format":"date-time","type":"string","description":"Event ending time","optional":true},
"duration":{"format":"date","type":"string","description":"Event duration","optional":true},
"rdate":{"format":"date-time","type":"string","description":"Recurrence date","optional":true},
"rrule":{"type":"string","description":"Recurrence rule","optional":true},
"category":{"type":"string","optional":true},
"description":{"type":"string","optional":true},
"geo":{"type":"object","properties":{"$ref":"http://json-schema.org/geo#properties"},"optional":true}
}
}




13 changes: 13 additions & 0 deletions calendar.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"dtstart":{"format":"date-time","type":"string","description":"Event starting time"},
"summary":{"type":"string"},
"location":{"type":"string","optional":true},
"url":{"type":"string","format":"url","optional":true},
"dtend":{"format":"date-time","type":"string","description":"Event ending time","optional":true},
"duration":{"format":"date","type":"string","description":"Event duration","optional":true},
"rdate":{"format":"date-time","type":"string","description":"Recurrence date","optional":true},
"rrule":{"type":"string","description":"Recurrence rule","optional":true},
"category":{"type":"string","optional":true},
"description":{"type":"string","optional":true},
"geo":{"type":"object","properties":{"$ref":"http://json-schema.org/geo.properties"},"optional":true}
}
43 changes: 43 additions & 0 deletions card
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{"description":"A representation of a person, company, organization, or place",
"type":"object",
"properties":{
"fn":{"description":"Formatted Name","type":"string"},
"familyName":{"type":"string", "required":true},
"givenName":{"type":"string", "required":true},
"additionalName":{"type":"array","items":{"type":"string"}},
"honorificPrefix":{"type":"array","items":{"type":"string"}},
"honorificSuffix":{"type":"array","items":{"type":"string"}},
"nickname":{"type":"string"},
"url":{"type":"string","format":"url"},
"email":{
"type":"object",
"properties":{
"type":{"type":"string"},
"value":{"type":"string","format":"email"}},
},
"tel":{
"type":"object",
"properties":{
"type":{"type":"string"},
"value":{"type":"string","format":"phone"}},
},
"adr":"http://json-schema.org/address",
"geo":"http://json-schema.org/geo",
"tz":{"type":"string"},
"photo":{"format":"image","type":"string"},
"logo":{"format":"image","type":"string"},
"sound":{"format":"attachment","type":"string"},
"bday":{"type":"string","format":"date"},
"title":{"type":"string"},
"role":{"type":"string"},
"org":{"type":"object",
"properties":{
"organizationName":{"type":"string"},
"organizationUnit":{"type":"string"}},
}
}
}




47 changes: 47 additions & 0 deletions card-v2
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{"description":"A representation of a person, company, organization, or place",
"type":"object",
"properties":{
"fn":{"description":"Formatted Name","type":"string","optional":true},
"familyName":{"type":"string"},
"givenName":{"type":"string"},
"additionalName":{"type":"array","items":{"type":"string"},"optional":true},
"honorificPrefix":{"type":"array","items":{"type":"string"},"optional":true},
"honorificSuffix":{"type":"array","items":{"type":"string"},"optional":true},
"nickname":{"type":"string","optional":true},
"url":{"type":"string","format":"url","optional":true},
"email":{
"type":"object",
"properties":{
"type":{"type":"string"},
"value":{"type":"string","format":"email"}},
"optional":true},
"tel":{
"type":"object",
"properties":{
"type":{"type":"string"},
"value":{"type":"string","format":"phone"}},
"optional":true},
"adr":{ "type":"object",
"properties":{"$ref":"http://json-schema.org/address#properties"},
"optional":true},
"geo":{ "type":"object",
"properties":{"$ref":"http://json-schema.org/geo#properties"},
"optional":true},
"tz":{"type":"string","optional":true},
"photo":{"format":"image","type":"string","optional":true},
"logo":{"format":"image","type":"string","optional":true},
"sound":{"format":"attachment","type":"string","optional":true},
"bday":{"type":"string","format":"date","optional":true},
"title":{"type":"string","optional":true},
"role":{"type":"string","optional":true},
"org":{"type":"object",
"properties":{
"organizationName":{"type":"string"},
"organizationUnit":{"type":"string"}},
"optional":true}
}
}




40 changes: 40 additions & 0 deletions card.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"fn":{"description":"Formatted Name","type":"string","optional":true},
"familyName":{"type":"string"},
"givenName":{"type":"string"},
"additionalName":{"type":"array","items":{"type":"string"},"optional":true},
"honorificPrefix":{"type":"array","items":{"type":"string"},"optional":true},
"honorificSuffix":{"type":"array","items":{"type":"string"},"optional":true},
"nickname":{"type":"string","optional":true},
"url":{"type":"string","format":"url","optional":true},
"email":{
"type":"object",
"properties":{
"type":{"type":"string"},
"value":{"type":"string","format":"email"}},
"optional":true},
"tel":{
"type":"object",
"properties":{
"type":{"type":"string"},
"value":{"type":"string","format":"phone"}},
"optional":true},
"adr":{ "type":"object",
"properties":{"$ref":"http://json-schema.org/address.properties"},
"optional":true},
"geo":{ "type":"object",
"properties":{"$ref":"http://json-schema.org/geo.properties"},
"optional":true},
"tz":{"type":"string","optional":true},
"photo":{"format":"image","type":"string","optional":true},
"logo":{"format":"image","type":"string","optional":true},
"sound":{"format":"attachment","type":"string","optional":true},
"bday":{"type":"string","format":"date","optional":true},
"title":{"type":"string","optional":true},
"role":{"type":"string","optional":true},
"org":{"type":"object",
"properties":{
"organizationName":{"type":"string"},
"organizationUnit":{"type":"string"}},
"optional":true}
}
Loading