test stuff

This commit is contained in:
Moon Man 2024-09-04 02:09:59 +00:00
parent 347083cc5a
commit 17c1bc0e4f
12 changed files with 133 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{
"@id": "https://banana.example.net/users/one",
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"vonbraun": "https://shit.nexus/ns/fedi/vonbraun/"
}
],
"type": "Person",
"name": "Mr. One",
"preferredUsername": "one",
"summary": "Example one.",
"inbox": "https://banana.example.net/users/one/inbox",
"outbox": "https://banana.example.net/users/one/outbox",
"followers": "https://banana.example.net/users/one/followers",
"following": "https://banana.example.net/users/one/following"
}

View File

@ -0,0 +1,8 @@
{
"@context": "https://www.w3.org/ns/activitystreams",
"@id": "https://banana.example.net/users/one/followers",
"type": "OrderedCollection",
"orderedItems": [
"https://banana.example.net/users/two"
]
}

View File

@ -0,0 +1,8 @@
{
"@context": "https://www.w3.org/ns/activitystreams",
"@id": "https://banana.example.net/users/one/following",
"type": "OrderedCollection",
"orderedItems": [
"https://banana.example.net/users/two"
]
}

View File

@ -0,0 +1,17 @@
{
"@id": "https://banana.example.net/users/two",
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"vonbraun": "https://shit.nexus/ns/fedi/vonbraun/"
}
],
"type": "Person",
"name": "Mrs. Two",
"preferredUsername": "two",
"summary": "Example two.",
"inbox": "https://banana.example.net/users/two/inbox",
"outbox": "https://banana.example.net/users/two/outbox",
"followers": "https://banana.example.net/users/two/followers",
"following": "https://banana.example.net/users/two/following"
}

View File

@ -0,0 +1,8 @@
{
"@context": "https://www.w3.org/ns/activitystreams",
"@id": "https://banana.example.net/users/two/followers",
"type": "OrderedCollection",
"orderedItems": [
"https://banana.example.net/users/one"
]
}

View File

@ -0,0 +1,8 @@
{
"@context": "https://www.w3.org/ns/activitystreams",
"@id": "https://banana.example.net/users/two/following",
"type": "OrderedCollection",
"orderedItems": [
"https://banana.example.net/users/one"
]
}

17
test/scratch/me.json Normal file
View File

@ -0,0 +1,17 @@
{
"@id": "https://vonbraun.example.net/users/moonman",
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"vonbraun": "https://shit.nexus/ns/fedi/vonbraun/"
}
],
"type": "Person",
"name": "Moon Man",
"preferredUsername": "moonman",
"summary": "I am the Moon.",
"inbox": "https://vonbraun.example.net/users/moonman/inbox",
"outbox": "https://vonbraun.example.net/users/moonman/outbox",
"followers": "https://vonbraun.example.net/users/moonman/followers",
"following": "https://vonbraun.example.net/users/moonman/following"
}

View File

@ -0,0 +1,9 @@
{
"@context": "https://www.w3.org/ns/activitystreams",
"@id": "https://vonbraun.example.net/users/moonman/followers",
"type": "OrderedCollection",
"orderedItems": [
"https://banana.example.net/users/one",
"https://banana.example.net/users/two"
]
}

View File

@ -0,0 +1,9 @@
{
"@context": "https://www.w3.org/ns/activitystreams",
"@id": "https://vonbraun.example.net/users/moonman/following",
"type": "OrderedCollection",
"orderedItems": [
"https://orange.example.net/users/smith",
"https://banana.example.net/users/two"
]
}

View File

@ -0,0 +1,17 @@
{
"@id": "https://orange.example.net/users/smith",
"@context": [
"https://www.w3.org/ns/activitystreams",
{
"vonbraun": "https://shit.nexus/ns/fedi/vonbraun/"
}
],
"type": "Person",
"name": "Mr. Smith",
"preferredUsername": "smith",
"summary": "A guy named Smith",
"inbox": "https://orange.example.net/users/smith/inbox",
"outbox": "https://orange.example.net/users/smith/outbox",
"followers": "https://orange.example.net/users/smith/followers",
"following": "https://orange.example.net/users/smith/following"
}

View File

@ -0,0 +1,9 @@
{
"@context": "https://www.w3.org/ns/activitystreams",
"@id": "https://orange.example.net/users/smith/followers",
"type": "OrderedCollection",
"orderedItems": [
"https://banana.example.net/users/one",
"https://vonbraun.example.net/users/moonman"
]
}

View File

@ -0,0 +1,6 @@
{
"@context": "https://www.w3.org/ns/activitystreams",
"@id": "https://orange.example.net/users/smith/following",
"type": "OrderedCollection",
"orderedItems": []
}