leodido / go-urn

Parser for uniform resource names as seen on RFC 8141, RFC 2141, and RFC 7643
MIT License
87 stars 11 forks source link

scim (rfc 7643) specific struct #32

Closed t2y closed 5 months ago

t2y commented 12 months ago

I'm considering to parse scim urn by go-urn. It's helpful to get an attribute from scim specific struct. Is this within the scope of go-urn?

leodido commented 11 months ago

Hello @t2y, do you mean a sub-parser for the SCIM sub URN namespace?

Meaning, parsing this urn:ietf:params:scim:{type}:{name}{:other} ?

That could definitely be part of this library, yes. Feel free to send PR if you feel so :)

t2y commented 11 months ago

@leodido Thanks. Yes. A URN struct might store type, name, and others from SCIM-specific information. Do you think implementing the sub-parser is a good idea? I'll try!