Last active
June 24, 2018 15:20
-
-
Save ppwfx/9fada64fb0e0afa9a618cc30d3d92a3e to your computer and use it in GitHub Desktop.
abc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
@prefix owl: <http://www.w3.org/2002/07/owl#> . | |
@prefix skos: <http://www.w3.org/2004/02/skos/core#> . | |
@prefix dcam: <http://purl.org/dc/dcam/> . | |
@prefix dcterms: <http://purl.org/dc/terms/> . | |
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
dcterms:Agent a rdfs:Class ; | |
rdfs:comment "A resource that acts or has the power to act."@en ; | |
rdfs:isDefinedBy <http://purl.org/dc/terms/> ; | |
rdfs:label "Agent"@en . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": [ | |
"https://www.w3.org/ns/activitystreams", | |
"https://w3id.org/security/v1" | |
], | |
"id": "https://mastodon.social/users/kiriska", | |
"type": "Person", | |
"following": "https://mastodon.social/users/kiriska/following", | |
"followers": "https://mastodon.social/users/kiriska/followers", | |
"inbox": "https://mastodon.social/users/kiriska/inbox", | |
"outbox": "https://mastodon.social/users/kiriska/outbox", | |
"featured": "https://mastodon.social/users/kiriska/collections/featured", | |
"preferredUsername": "kiriska", | |
"name": "Kiri", | |
"summary": "<p>Artist, writer, blogger. Eldritch beast. Brush pen enthusiast. Perpetual motion machine.</p><p>[email protected]<br /><a href=\"http://kiriska.com\" rel=\"nofollow noopener\" target=\"_blank\"><span class=\"invisible\">http://</span><span class=\"\">kiriska.com</span><span class=\"invisible\"></span></a></p>", | |
"url": "https://mastodon.social/@kiriska", | |
"manuallyApprovesFollowers": false, | |
"publicKey": { | |
"id": "https://mastodon.social/users/kiriska#main-key", | |
"owner": "https://mastodon.social/users/kiriska", | |
"publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvixa54TagspZBS4NmXa0\n7rowo9Sc41g2NL9wGKz8zcQOGM/ZgX7ob3lLTxkCD8eiA4GyoZRLNwcIqYKxjqhu\nrQUbulb7uO4SHw3k40gZghbWXq5nX66rpCzJQwKBN96ooPppdq7zCfGgA6egZqqs\n93mAO806SK1Tez+5gyJ28l7WVmOFxZ1k4Bcd8wm7Y8dByd6Yv2EPWtA2DurI974x\nyoXIB077kaGtsYOjiG0O8Q9D+0fgTKlFYH9lhksXftmJzwUkERluTniicxjPX/1m\nolQFj4eXg5DFzT3fuPpyGtPm1zOryPWZ6LhBOMpCmL2KNZcxz14JYL7C1feedXUJ\npwIDAQAB\n-----END PUBLIC KEY-----\n" | |
}, | |
"tag": [], | |
"attachment": [ | |
{ | |
"type": "PropertyValue", | |
"name": "Tips:", | |
"value": "<a href=\"http://ko-fi.com/kiriska\" rel=\"me nofollow noopener\" target=\"_blank\"><span class=\"invisible\">http://</span><span class=\"\">ko-fi.com/kiriska</span><span class=\"invisible\"></span></a>" | |
} | |
], | |
"endpoints": { | |
"sharedInbox": "https://mastodon.social/inbox" | |
}, | |
"icon": { | |
"type": "Image", | |
"mediaType": "image/jpeg", | |
"url": "https://files.mastodon.social/accounts/avatars/000/014/402/original/fbd942a3111c253d.jpg" | |
}, | |
"image": { | |
"type": "Image", | |
"mediaType": "image/jpeg", | |
"url": "https://files.mastodon.social/accounts/headers/000/014/402/original/31c305f052363eaf.jpg" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"@context": "https://www.w3.org/ns/activitystreams", | |
"type": "Person", | |
"id": "https://social.example/alyssa/", | |
"name": "Alyssa P. Hacker", | |
"preferredUsername": "alyssa", | |
"summary": "Lisp enthusiast hailing from MIT", | |
"inbox": "https://social.example/alyssa/inbox/", | |
"outbox": "https://social.example/alyssa/outbox/", | |
"followers": "https://social.example/alyssa/followers/", | |
"following": "https://social.example/alyssa/following/", | |
"liked": "https://social.example/alyssa/liked/"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment